TmdbMultiPageResult

@Serializable
data class TmdbMultiPageResult(val page: Int, val results: List<TmdbSearchableListItem> = emptyList(), val totalResults: Int, val totalPages: Int) : TmdbPageResult<TmdbSearchableListItem>

Constructors

Link copied to clipboard
constructor(page: Int, results: List<TmdbSearchableListItem> = emptyList(), totalResults: Int, totalPages: Int)

Properties

Link copied to clipboard
@SerialName(value = "page")
open override val page: Int
Link copied to clipboard
@SerialName(value = "results")
open override val results: List<TmdbSearchableListItem>
Link copied to clipboard
@SerialName(value = "total_pages")
open override val totalPages: Int
Link copied to clipboard
@SerialName(value = "total_results")
open override val totalResults: Int