ClanList

data class ClanList(val items: List<Clan>, val paging: Paging?) : ApiListResponse<Clan>

Represents the ClanList model of the Clash of Clans API.

Constructors

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

Properties

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

A list of Clan objects representing the clans in the list.

Link copied to clipboard
open override val paging: Paging?

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