AddChatParticipantsResult
public struct AddChatParticipantsResult : Codable
Result of the add chat participants operation.
-
The participants that failed to be added to the chat thread.
Declaration
Swift
public let invalidParticipants: [ChatError]?
-
Initialize a
AddChatParticipantsResultstructure.Declaration
Swift
public init( invalidParticipants: [ChatError]? = nil )Parameters
invalidParticipantsThe participants that failed to be added to the chat thread.
-
Initialize a
AddChatParticipantsResultstructure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws -
Encode a
AddChatParticipantsResultstructureDeclaration
Swift
public func encode(to encoder: Encoder) throws
View on GitHub
AddChatParticipantsResult Structure Reference