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
CreateChatThreadResultstructure.Declaration
Swift
public init( chatThread: ChatThreadProperties? = nil, invalidParticipants: [ChatError]? = nil )Parameters
threadChat thread.
errorsErrors encountered during the creation of the chat thread.
View on GitHub
CreateChatThreadResult Structure Reference