MessageList

@Serializable
data class MessageList(val count: Int, val limit: Int? = null, val nextPageToken: String? = null, val messages: List<Message>)

Paginated list of messages.

Constructors

Link copied to clipboard
constructor(count: Int, limit: Int? = null, nextPageToken: String? = null, messages: List<Message>)

Properties

Link copied to clipboard
val count: Int
Link copied to clipboard
val limit: Int?
Link copied to clipboard
Link copied to clipboard
@SerialName(value = "next_page_token")
val nextPageToken: String?