payload.response.UserStatistics.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.OrderType
import enums.Platform
import enums.Region
import java.util.*
data class UserStatistics private constructor(val closed_orders: List) {
data class ClosedOrder private constructor(
val item: Map,
val closed_date: Date,
val region: Region,
val order_type: OrderType,
val platinum: Int,
val id: Int,
val quantity: Int,
val mod_rank: Int?,
val platform: Platform
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy