TrinketDetails

@Serializable
data class TrinketDetails(val type: String, val infusionSlots: List<InfusionSlot> = listOf(), val attributeAdjustment: Double, val infixUpgrade: InfixUpgrade? = null, val suffixItemId: Int? = null, val secondarySuffixItemId: String, val statChoices: List<Int> = listOf()) : ItemDetails

Data model for trinket details

Constructors

Link copied to clipboard
constructor(type: String, infusionSlots: List<InfusionSlot> = listOf(), attributeAdjustment: Double, infixUpgrade: InfixUpgrade? = null, suffixItemId: Int? = null, secondarySuffixItemId: String, statChoices: List<Int> = listOf())

Properties

Link copied to clipboard
@SerialName(value = "attribute_adjustment")
val attributeAdjustment: Double
Link copied to clipboard
@SerialName(value = "infix_upgrade")
val infixUpgrade: InfixUpgrade? = null
Link copied to clipboard
@SerialName(value = "infusion_slots")
val infusionSlots: List<InfusionSlot>
Link copied to clipboard
@SerialName(value = "secondary_suffix_item_id")
val secondarySuffixItemId: String
Link copied to clipboard
@SerialName(value = "stat_choices")
val statChoices: List<Int>
Link copied to clipboard
@SerialName(value = "suffix_item_id")
val suffixItemId: Int? = null
Link copied to clipboard