InteractionSummary¶
-
class
oci.operator_access_control.models.InteractionSummary(**kwargs)¶ Bases:
objectSummary of access request customer and operator conversation.
Methods
__init__(**kwargs)Initializes a new InteractionSummary object with values from keyword arguments. Attributes
idGets the id of this InteractionSummary. messageGets the message of this InteractionSummary. time_of_conversationGets the time_of_conversation of this InteractionSummary. user_idGets the user_id of this InteractionSummary. user_nameGets the user_name of this InteractionSummary. user_typeGets the user_type of this InteractionSummary. -
__init__(**kwargs)¶ Initializes a new InteractionSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - id (str) – The value to assign to the id property of this InteractionSummary.
- user_id (str) – The value to assign to the user_id property of this InteractionSummary.
- user_name (str) – The value to assign to the user_name property of this InteractionSummary.
- message (str) – The value to assign to the message property of this InteractionSummary.
- user_type (str) – The value to assign to the user_type property of this InteractionSummary.
- time_of_conversation (datetime) – The value to assign to the time_of_conversation property of this InteractionSummary.
-
id¶ Gets the id of this InteractionSummary. The uniqueId of the message.
Returns: The id of this InteractionSummary. Return type: str
-
message¶ Gets the message of this InteractionSummary. contains the information exchanged between operator and customer.
Returns: The message of this InteractionSummary. Return type: str
-
time_of_conversation¶ Gets the time_of_conversation of this InteractionSummary. Time when the conversation happened in `RFC 3339`__timestamp format. Example: ‘2020-05-22T21:10:29.600Z’
Returns: The time_of_conversation of this InteractionSummary. Return type: datetime
-
user_id¶ Gets the user_id of this InteractionSummary. customer or operator id who is part of this conversation.
Returns: The user_id of this InteractionSummary. Return type: str
-
user_name¶ Gets the user_name of this InteractionSummary. customer or operator Name who is part of this conversation.
Returns: The user_name of this InteractionSummary. Return type: str
-
user_type¶ Gets the user_type of this InteractionSummary. Whether the userConversation is an operator or customer.
Returns: The user_type of this InteractionSummary. Return type: str
-