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

commonMain.com.bselzer.gw2.v2.model.commerce.price.Price.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gw2.v2.model.commerce.price

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
data class Price(
    /**
     * The highest buy order or the lowest sell offer in copper coins.
     */
    @SerialName("unit_price")
    val unitPrice: Int = 0,

    /**
     * The number of items being bought or sold.
     */
    @SerialName("quantity")
    val count: Int = 0
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy