All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.bselzer.gw2.v2.model.guild.treasury.TreasuryUpgrade.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.guild.treasury

import com.bselzer.gw2.v2.model.guild.upgrade.GuildUpgradeId
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class TreasuryUpgrade(
    /**
     * The id of the upgrade.
     * @see the wiki
     */
    @SerialName("upgrade_id")
    val upgradeId: GuildUpgradeId = GuildUpgradeId(),

    /**
     * The number of the item required.
     */
    @SerialName("count")
    val count: Int = 0,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy