UniqueGiftModel

@Serializable
data class UniqueGiftModel(val name: String, val sticker: Sticker, val rarityPerMille: Int, val rarity: Rarity? = null)

Constructors

Link copied to clipboard
constructor(name: String, sticker: Sticker, rarityPerMille: Int, rarity: Rarity? = null)

Properties

Link copied to clipboard
@SerialName(value = "name")
val name: String
Link copied to clipboard
@SerialName(value = "rarity")
val rarity: Rarity? = null
Link copied to clipboard
@SerialName(value = "rarity_per_mille")
val rarityPerMille: Int
Link copied to clipboard
@SerialName(value = "sticker")
val sticker: Sticker