Package-level declarations

Types

Link copied to clipboard
data class Location(val localizedName: String, val id: Int, val name: String, val isCountry: Boolean, val countryCode: String)

Represents the Location model of the Clash of Clans API. The Location data class stores information about a location.

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

Represents the LocationList model of the Clash of Clans API.