LabelList

data class LabelList(val items: List<Label>, val paging: Paging?) : ApiListResponse<Label>

Represents the LabelList model of the Clash of Clans API.

Constructors

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

Properties

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

A list of Label objects representing the labels in the list.

Link copied to clipboard
open override val paging: Paging?

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