SearchPagination

@Serializable
data class SearchPagination(val page: Int? = null, val limit: Int? = null, val total: Int? = null, val totalPages: Int? = null, val nextCursor: String? = null)

Pagination metadata for search results.

Constructors

Link copied to clipboard
constructor(page: Int? = null, limit: Int? = null, total: Int? = null, totalPages: Int? = null, nextCursor: String? = null)

Properties

Link copied to clipboard
@SerialName(value = "limit")
val limit: Int?
Link copied to clipboard
@SerialName(value = "next_cursor")
val nextCursor: String?
Link copied to clipboard
@SerialName(value = "page")
val page: Int?
Link copied to clipboard
@SerialName(value = "total")
val total: Int?
Link copied to clipboard
@SerialName(value = "total_pages")
val totalPages: Int?