ConversationInfo
public class ConversationInfo
Information about a conversation
-
Life cycle state of the conversation.
See moreDeclaration
Swift
public enum EConversationState : String
-
The ID of the conversation.
Declaration
Swift
public let id: String
-
The caller’s type of participation in the conversation
Declaration
Swift
public let myParticipantType: ConversationParticipant.EConversationParticipationType
-
The name of the current recipient of the conversation.
Declaration
Swift
public let recipient: ConversationRecipientInfo
-
Conversation state.
Declaration
Swift
public let state: EConversationState
-
Conversation creation UTC timestamp in milliseconds.
Declaration
Swift
public let creationTimestamp: Double
-
Notification count of this conversation.
Declaration
Swift
public let notificationCount: Int
-
Topic of the conversation; null if no topic is set.
Declaration
Swift
public let topic: String
-
Visitor Data
Declaration
Swift
public let visitorData: String?
-
List of participants
Declaration
Swift
public let otherParticipants: [ConversationParticipant]
-
Declaration
Swift
public init(_ id: String,_ state: EConversationState,_ recipient: ConversationRecipientInfo, _ creationTimestamp: Double, _ notificationCount: Int, _ topic: String, _ visitorData: String?, _ otherParticipants: [ConversationParticipant],_ myParticipantType: ConversationParticipant.EConversationParticipationType)