ChatParticipantsCollection
public struct ChatParticipantsCollection : Codable
Collection of participants belong to a particular thread.
-
Chat participants.
Declaration
Swift
public let value: [ChatParticipant]
-
If there are more chat participants that can be retrieved, the next link will be populated.
Declaration
Swift
public let nextLink: String?
-
Initialize a
ChatParticipantsCollection
structure.Declaration
Swift
public init( value: [ChatParticipant], nextLink: String? = nil )
Parameters
value
Chat participants.
nextLink
If there are more chat participants that can be retrieved, the next link will be populated.
-
Initialize a
ChatParticipantsCollection
structure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws
-
Encode a
ChatParticipantsCollection
structureDeclaration
Swift
public func encode(to encoder: Encoder) throws