payload.response.Bids.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.IdAuction
import enums.IdBid
import payload.response.common.User
import java.util.*
data class Bids private constructor(val bids: List) {
data class Bid private constructor(
val value: Int,
val created: Date,
val updated: Date,
val auction: IdAuction,
val user: User,
val id: IdBid
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy