payload.response.common.Order.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.common
import enums.IdOrder
import enums.OrderType
import enums.Platform
import enums.Region
import java.util.*
data class Order private constructor(
val creation_date: Date,
val id: IdOrder,
val last_update: Date,
val order_type: OrderType,
val platform: Platform,
val platinum: Int,
val quantity: Int,
val region: Region,
val visible: Boolean,
val mod_rank: Int? = null, //missing if not a mod
val item: Any? = null, //missing if specified in request
val user: User? = null, //missing if specified in request
val closed_date: String? = null //missing if not closed
) {
data class ItemId(val value: String)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy