Show / Hide Table of Contents

Class InteractionSummary

Summary of access request customer and operator conversation.

Inheritance
object
InteractionSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OperatoraccesscontrolService.Models
Assembly: OCI.DotNetSDK.Operatoraccesscontrol.dll
Syntax
public class InteractionSummary

Properties

Id

Declaration
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The uniqueId of the message.

Message

Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type Description
string

contains the information exchanged between operator and customer.

TimeOfConversation

Declaration
[JsonProperty(PropertyName = "timeOfConversation")]
public DateTime? TimeOfConversation { get; set; }
Property Value
Type Description
DateTime?

Time when the conversation happened in RFC 3339timestamp format. Example: '2020-05-22T21:10:29.600Z'

UserId

Declaration
[JsonProperty(PropertyName = "userId")]
public string UserId { get; set; }
Property Value
Type Description
string

customer or operator id who is part of this conversation.

UserName

Declaration
[JsonProperty(PropertyName = "userName")]
public string UserName { get; set; }
Property Value
Type Description
string

customer or operator Name who is part of this conversation.

UserType

Declaration
[JsonProperty(PropertyName = "userType")]
public string UserType { get; set; }
Property Value
Type Description
string

Whether the userConversation is an operator or customer.

In this article
Back to top