ChatParticipantsCollection

public struct ChatParticipantsCollection : Codable

Collection of participants belong to a particular thread.

Properties

  • 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?

Initializers

  • 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.

Codable

  • Initialize a ChatParticipantsCollection structure from decoder

    Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Encode a ChatParticipantsCollection structure

    Declaration

    Swift

    public func encode(to encoder: Encoder) throws