DocumentCurrencyListItemDto

data class DocumentCurrencyListItemDto(name: String, code: String, symbol: String)

Parameters

name

The name of the currency in English, or translated if a non-English locale was provided used to handle the request

code

The internationally recognized three-letter code for the currency.

symbol

The internationally recognized symbol representing the currency.

Constructors

DocumentCurrencyListItemDto
Link copied to clipboard
fun DocumentCurrencyListItemDto(name: String, code: String, symbol: String)
The name of the currency in English, or translated if a non-English locale was provided used to handle the request

Properties

code
Link copied to clipboard
@SerializedName(value = code)
val code: String
The internationally recognized three-letter code for the currency.
name
Link copied to clipboard
@SerializedName(value = name)
val name: String
The name of the currency in English, or translated if a non-English locale was provided used to handle the request
symbol
Link copied to clipboard
@SerializedName(value = symbol)
val symbol: String
The internationally recognized symbol representing the currency.