Properties
| Name | Type | Description |
|---|---|---|
| currency | string | The currency code. |
| name | string | The currency name. |
| country | string | The country code associated with the currency. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TransferwiseCurrencyListing",
"title": "TransferwiseCurrencyListing",
"type": "object",
"properties": {
"currency": {
"type": "string",
"description": "The currency code.",
"readOnly": true,
"writeOnly": false
},
"name": {
"type": "string",
"description": "The currency name.",
"readOnly": true,
"writeOnly": false
},
"country": {
"type": "string",
"description": "The country code associated with the currency.",
"readOnly": true,
"writeOnly": false
}
}
}