CollectionItem

@Serializable
data class CollectionItem(val name: String? = null, val maxTiers: Int? = null, val tiers: List<CollectionTier>? = null)

Information about a collection.

Constructors

Link copied to clipboard
constructor(name: String? = null, maxTiers: Int? = null, tiers: List<CollectionTier>? = null)

Properties

Link copied to clipboard
val maxTiers: Int? = null

Max amount of tiers in the collection.

Link copied to clipboard
val name: String? = null

Name of the collection.

Link copied to clipboard
val tiers: List<CollectionTier>? = null

List of tiers information.