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

commonMain.com.bselzer.gw2.v2.model.mount.skin.MountDyeSlot.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.mount.skin

import com.bselzer.gw2.v2.model.color.DyeColorId
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class MountDyeSlot(
    /**
     * The id of the dye color.
     * @see the wiki
     */
    @SerialName("color_id")
    val colorId: DyeColorId = DyeColorId(),

    /**
     * The type of material.
     */
    @SerialName("material")
    val material: String = ""
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy