DocumentCurrencyListItemDto

data class DocumentCurrencyListItemDto(val name: String, val code: String, val 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

Link copied to clipboard
constructor(name: String, code: String, symbol: String)

Properties

Link copied to clipboard
@SerializedName(value = "code")
val code: String
Link copied to clipboard
@SerializedName(value = "name")
val name: String
Link copied to clipboard
@SerializedName(value = "symbol")
val symbol: String