CurrencyAmount

@Serializable
data class CurrencyAmount(val value: Int = 0, val decimalPlaces: Int = 0, val currency: String = "")

Constructors

Link copied to clipboard
constructor(value: Int = 0, decimalPlaces: Int = 0, currency: String = "")

Properties

Link copied to clipboard
Link copied to clipboard
@SerialName(value = "decimal_places")
val decimalPlaces: Int
Link copied to clipboard
val value: Int