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
ChatParticipantsCollectionstructure.Declaration
Swift
public init( value: [ChatParticipant], nextLink: String? = nil )Parameters
valueChat participants.
nextLinkIf there are more chat participants that can be retrieved, the next link will be populated.
-
Initialize a
ChatParticipantsCollectionstructure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws -
Encode a
ChatParticipantsCollectionstructureDeclaration
Swift
public func encode(to encoder: Encoder) throws
View on GitHub
ChatParticipantsCollection Structure Reference