commonMain.com.bselzer.gw2.v2.model.character.wvw.CharacterWvwAbility.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.character.wvw
import com.bselzer.gw2.v2.model.wvw.ability.WvwAbilityId
import com.bselzer.gw2.v2.model.wvw.rank.WvwLevel
import com.bselzer.ktx.value.identifier.Identifiable
import kotlinx.serialization.Serializable
@Serializable
data class CharacterWvwAbility(
/**
* The id of the ability.
* @see the wiki
*/
override val id: WvwAbilityId = WvwAbilityId(),
/**
* The rank of the ability.
*/
val rank: WvwLevel = WvwLevel()
) : Identifiable