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
AddChatParticipantsResult
structure.Declaration
Swift
public init( invalidParticipants: [ChatError]? = nil )
Parameters
invalidParticipants
The participants that failed to be added to the chat thread.
-
Initialize a
AddChatParticipantsResult
structure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws
-
Encode a
AddChatParticipantsResult
structureDeclaration
Swift
public func encode(to encoder: Encoder) throws