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

commonMain.com.bselzer.gw2.v2.model.item.detail.GizmoDetails.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.item.detail

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

@Serializable
data class GizmoDetails(
    @SerialName("type")
    val type: GizmoDetailType = GizmoDetailType(),

    /**
     * The id of the guild upgrade.
     * @see the wiki
     */
    @SerialName("guild_upgrade_id")
    val guildUpgradeId: GuildUpgradeId = GuildUpgradeId(),

    // TODO what is this id for
    @SerialName("vendor_ids")
    val vendorIds: List = emptyList()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy