ListEntryList

@Serializable
data class ListEntryList(val count: Int, val limit: Int? = null, val nextPageToken: String? = null, val entries: List<ListEntry>)

Paginated list of list entries.

Constructors

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

Properties

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