Package-level declarations

Types

Link copied to clipboard
data class ClanBuilderBaseRanking(val clanPoints: Int, val clanBuilderBasePoints: Int)

Represents the ClanBuilderBaseRanking model of the Clash of Clans API. The ClanBuilderBaseRanking data class stores information about a single clan's builder base ranking.

Link copied to clipboard

Represents the ClanBuilderBaseRankingList model of the Clash of Clans API.

Link copied to clipboard
data class ClanCapitalRanking(val clanPoints: Int, val clanBuilderBasePoints: Int)

Represents the ClanCapitalRanking model of the Clash of Clans API. The ClanCapitalRanking data class stores information about a single clan capital's ranking.

Link copied to clipboard

Represents the ClanCapitalRankingList model of the Clash of Clans API.

Link copied to clipboard
data class ClanRanking(val clanLevel: Int, val clanPoints: Int, val location: Location, val members: Int, val tag: String, val name: String, val rank: Int, val previousRank: Int)

Represents the ClanRanking model of the Clash of Clans API. The ClanRanking data class stores information about a single clan's ranking.

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

Represents the ClanRankingList model of the Clash of Clans API.