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

commonMain.com.bselzer.gw2.v2.model.character.pvp.CharacterPvpEquipment.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.character.pvp

import com.bselzer.gw2.v2.model.item.ItemId
import com.bselzer.gw2.v2.model.pvp.amulet.PvpAmuletId
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class CharacterPvpEquipment(
    /**
     * The id of the PvP amulet.
     * @see the wiki
     */
    @SerialName("amulet")
    val amuletId: PvpAmuletId = PvpAmuletId(),

    /**
     * The id of the PvP rune.
     * @see the wiki
     */
    @SerialName("rune")
    val runeId: ItemId = ItemId(),

    /**
     * The ids of the PvP sigils. An id is null if it is not selected.
     *
     * Order: primary weapon sigil 1, secondary weapon sigil 1, primary weapon sigil 2, secondary weapon sigil 2
     * @see the wiki
     */
    @SerialName("sigils")
    val sigilIds: List = emptyList()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy