Multi

@Serializable
data class Multi<T : MarketBoard>(val itemIds: List<Int>? = null, val items: Map<Int, T>? = null, val worldId: Short? = null, val dcName: String? = null, val regionName: String? = null, val unresolvedItems: List<Int>? = null, val worldName: String? = null)

Constructors

Link copied to clipboard
constructor(itemIds: List<Int>? = null, items: Map<Int, T>? = null, worldId: Short? = null, dcName: String? = null, regionName: String? = null, unresolvedItems: List<Int>? = null, worldName: String? = null)

Properties

Link copied to clipboard
val dcName: String? = null

The name of the DC requested, if applicable

Link copied to clipboard
@SerialName(value = "itemIDs")
val itemIds: List<Int>? = null

The item IDs that were requested

Link copied to clipboard
val items: Map<Int, T>? = null

The item data that was requested, keyed on the item ID

Link copied to clipboard
val regionName: String? = null

The name of the region requested, if applicable

Link copied to clipboard
val unresolvedItems: List<Int>? = null

A list of IDs that could not be resolved to any item data

Link copied to clipboard
@SerialName(value = "worldID")
val worldId: Short? = null

The ID of the world requested, if applicable

Link copied to clipboard
val worldName: String? = null

The name of the world requested, if applicable