MuseumItemInfo

@Serializable
data class MuseumItemInfo(val timeDonated: Long? = null, val featuredSlot: String? = null, val borrowing: Boolean? = null, val itemData: MuseumItemData? = null)

Information about a specific donatable item

Constructors

Link copied to clipboard
constructor(timeDonated: Long? = null, featuredSlot: String? = null, borrowing: Boolean? = null, itemData: MuseumItemData? = null)

Properties

Link copied to clipboard
val borrowing: Boolean? = null

Whether the item is donated to museum, but not currently in museum.

Link copied to clipboard
@SerialName(value = "featured_slot")
val featuredSlot: String? = null

Slot id of where the item is being featured.

Link copied to clipboard
@SerialName(value = "items")
val itemData: MuseumItemData? = null

Item data for the donated item.

Link copied to clipboard
@SerialName(value = "donated_time")
val timeDonated: Long? = null

The timestamp the item was donated to museum.