ClanRankingList

data class ClanRankingList(val items: List<ClanRanking>, val paging: Paging?) : ApiListResponse<ClanRanking>

Represents the ClanRankingList model of the Clash of Clans API.

Constructors

Link copied to clipboard
constructor(items: List<ClanRanking>, paging: Paging?)

Properties

Link copied to clipboard
open override val items: List<ClanRanking>

A list of ClanRanking objects representing the clan rankings in the list.

Link copied to clipboard
open override val paging: Paging?

The pagination information for navigating through the list (optional).