commonMain.com.bselzer.gw2.v2.model.template.equipment.EquipmentTemplatePvp.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of v2-model Show documentation
Show all versions of v2-model Show documentation
Guild Wars 2 API models for v2-client.
The newest version!
package com.bselzer.gw2.v2.model.template.equipment
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
// TODO replace with PvpEquipment in character?
@Serializable
data class EquipmentTemplatePvp(
/**
* 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()
)