commonMain.com.bselzer.gw2.v2.model.skill.fact.SkillAttributeAdjustFact.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of v2-model-jvm Show documentation
Show all versions of v2-model-jvm Show documentation
Guild Wars 2 API models for v2-client.
package com.bselzer.gw2.v2.model.skill.fact
import com.bselzer.gw2.v2.model.enumeration.wrapper.AttributeName
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
@SerialName("AttributeAdjust")
data class SkillAttributeAdjustFact(
/**
* The amount the [target] attribute is adjusted by for a level 80 character.
*/
@SerialName("value")
val value: Int = 0,
/**
* The name of the attribute to adjust.
*/
@SerialName("target")
val target: AttributeName = AttributeName()
) : SkillFact()