ChatMessageReadReceiptsCollection
public struct ChatMessageReadReceiptsCollection : Codable
A paged collection of chat message read receipts.
-
Collection of chat message read receipts.
Declaration
Swift
public let value: [ChatMessageReadReceipt]
-
If there are more chat message read receipts that can be retrieved, the next link will be populated.
Declaration
Swift
public let nextLink: String?
-
Initialize a
ChatMessageReadReceiptsCollection
structure.Declaration
Swift
public init( value: [ChatMessageReadReceipt], nextLink: String? = nil )
Parameters
value
Collection of chat message read receipts.
nextLink
If there are more chat message read receipts that can be retrieved, the next link will be populated.
-
Initialize a
ChatMessageReadReceiptsCollection
structure from decoderDeclaration
Swift
public init(from decoder: Decoder) throws
-
Encode a
ChatMessageReadReceiptsCollection
structureDeclaration
Swift
public func encode(to encoder: Encoder) throws