ClanMemberList

data class ClanMemberList(val items: List<ClanMember>, val paging: Paging?) : ApiListResponse<ClanMember>

Represents the ClanMemberList model of the Clash of Clans API.

Constructors

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

Properties

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

A list of ClanMember objects representing the clan members in the list.

Link copied to clipboard
open override val paging: Paging?

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