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

commonMain.com.bselzer.gw2.v2.model.character.skill.CharacterSkills.kt Maven / Gradle / Ivy

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

import com.bselzer.gw2.v2.model.legend.LegendId
import com.bselzer.gw2.v2.model.skill.SkillId
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class CharacterSkills(
    /**
     * The id of the heal skill.
     * @see the wiki
     */
    @SerialName("heal")
    val healId: SkillId = SkillId(),

    /**
     * The ids of the utility skills.
     * @see the wiki
     */
    @SerialName("utilities")
    val utilityIds: List = emptyList(),

    /**
     * The id of the elite skill.
     * @see the wiki
     */
    @SerialName("elite")
    val eliteId: SkillId = SkillId(),

    /**
     * The ids of the legends for Revenants.
     *
     * An id will be null if there is no selection.
     *
     * @see the wiki
     */
    @SerialName("legends")
    val legendIds: List = emptyList()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy