Package-level declarations

Types

Link copied to clipboard
data class ClanWarLeagueClan(val tag: String, val clanLevel: Int, val name: String, val members: List<ClanWarLeagueClanMember>, val badgeUrls: Badge)

Represents the ClanWarLeagueClan model of the Clash of Clans API. The ClanWarLeagueClan data class stores information about a clan participating in the clan war league group.

Link copied to clipboard
data class ClanWarLeagueClanMember(val tag: String, val townHallLevel: Int, val name: String)

Represents the ClanWarLeagueClanMember model of the Clash of Clans API. The ClanWarLeagueClanMember data class stores information about a clan member participating in the clan war league group.

Link copied to clipboard
data class ClanWarLeagueGroup(val tag: String, val state: ClanWarLeagueGroupState, val season: String, val clans: List<ClanWarLeagueClan>, val rounds: List<ClanWarLeagueRound>)

Represents the ClanWarLeagueGroup model of the Clash of Clans API.

Link copied to clipboard

Represents the state of a clan war league group in the Clash of Clans API.

Link copied to clipboard
data class ClanWarLeagueRound(val warTags: List<String>)

Represents the ClanWarLeagueRound model of the Clash of Clans API. The ClanWarLeagueRound data class stores information about a round in the clan war league group.