CreateChatThreadRequest
public struct CreateChatThreadRequest : Codable
Request payload for creating a chat thread.
-
The thread topic.
Declaration
Swift
public let topic: String -
Participants to be added to the thread.
Declaration
Swift
public let participants: [ChatParticipant]?
-
Initialize a
CreateChatThreadRequeststructure.Declaration
Swift
public init( topic: String, participants: [ChatParticipant]? = nil )Parameters
topicThe thread topic.
participantsParticipants to be added to the chat thread.
View on GitHub
CreateChatThreadRequest Structure Reference