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

commonMain.com.bselzer.gw2.v2.model.itemstat.ItemAttribute.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.itemstat

import com.bselzer.gw2.v2.model.enumeration.wrapper.AttributeName
import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class ItemAttribute(
    @SerialName("attribute")
    val name: AttributeName = AttributeName(),

    @SerialName("multiplier")
    val multiplier: Double = 0.0,

    @SerialName("value")
    val value: Int = 0
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy