CreateChatThreadResult
public struct CreateChatThreadResult : Codable
Result of the create thread operation.
-
Chat thread.
Declaration
Swift
public let chatThread: ChatThreadProperties?
-
Errors encountered during the creation of the chat thread.
Declaration
Swift
public let invalidParticipants: [ChatError]?
-
Initialize a
CreateChatThreadResult
structure.Declaration
Swift
public init( chatThread: ChatThreadProperties? = nil, invalidParticipants: [ChatError]? = nil )
Parameters
thread
Chat thread.
errors
Errors encountered during the creation of the chat thread.