payload.response.Ducats.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WarframeMarKT Show documentation
Show all versions of WarframeMarKT Show documentation
Kotlin wrapper for api.warframe.market
package payload.response
import enums.IdDucats
import java.util.*
data class Ducats private constructor(
val previous_hour: List,
val previous_day: List
) {
data class Entry private constructor(
val datetime: Date,
val position_change_month: Int,
val position_change_week: Int,
val position_change_day: Int,
val plat_worth: Float,
val volume: Int,
val ducats_per_platinum: Float,
val ducats_per_platinum_wa: Float,
val ducats: Int,
val item: String,//IdItem? ItemUrlName?
val median: Float,
val wa_price: Float,
val id: IdDucats
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy