Show / Hide Table of Contents

Class ServiceProviderInteractionSummary

Summary of customer and operator conversation.

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

Properties

Message

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

The information exchanged between the customer and the operator.

MessageIdentifier

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

The unique identifier of the message within the scope of the associated access request.

Timestamp

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

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

UserId

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

ID of the customer or operator who is part of this conversation. For operator, this field is null.

UserName

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

Name of the customer or operator who is part of this conversation. For operator, the name is "Operator".

UserType

Declaration
[JsonProperty(PropertyName = "userType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ServiceProviderInteractionSummary.UserTypeEnum? UserType { get; set; }
Property Value
Type Description
ServiceProviderInteractionSummary.UserTypeEnum?

Indicates whether the user is a customer or an operator.

In this article
Back to top