GemstoneRequirement

@Serializable
data class GemstoneRequirement(val type: String? = null, val dataKey: String? = null, val value: String? = null, val operator: String? = null)

Information about requirements to unlock a gemstone slot

Constructors

Link copied to clipboard
constructor(type: String? = null, dataKey: String? = null, value: String? = null, operator: String? = null)

Properties

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

TODO

Link copied to clipboard
val operator: String? = null

TODO

Link copied to clipboard
val type: String? = null

Type of requirement (always ITEM_DATA)

Link copied to clipboard
val value: String? = null

TODO