commonMain.com.bselzer.gw2.v2.model.enumeration.SkinFlag.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of v2-model-enumeration Show documentation
Show all versions of v2-model-enumeration Show documentation
Enumerations for Guild Wars 2 API models.
package com.bselzer.gw2.v2.model.enumeration
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable
@Serializable
enum class SkinFlag {
/**
* Displayable in the account wardrobe.
*/
@SerialName("ShowInWardrobe")
SHOW_IN_WARDROBE,
/**
* A transmutation charge is not required to apply the skin.
*/
@SerialName("NoCost")
NO_COST,
/**
* The skin is hidden until it is unlocked.
*/
@SerialName("HideIfLocked")
HIDE_IF_LOCKED,
/**
* The skin overrides rarity when it is applied.
*/
@SerialName("OverrideRarity")
OVERRIDE_RARITY
}