SDKCurrency
data class SDKCurrency(val numericCode: String, val alphabeticCode: String, val symbol: String, val exponent: SDKCurrency.SDKExponent = SDKExponent.TWO)
Information about currency
Parameters
numericCode
ISO 4217 numerical code (Eg. '032')
alphabeticCode
ISO 4217 alphabetical code (Eg. 'ARS')
symbol
Currency symbol (Eg. "$", "€", etc)
exponent
Currency exponent (Eg. Two = 12.50, Zero = 12). By default the exponent is Two
Constructors
Link copied to clipboard
constructor(numericCode: String, alphabeticCode: String, symbol: String, exponent: SDKCurrency.SDKExponent = SDKExponent.TWO)