Properties
| Name | Type | Description |
|---|---|---|
| contactlessCurrency | string | The default currency for contactless payments on the payment terminal, as the three-letter [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code. |
| hideMinorUnitsInCurrencies | array | Hides the minor units for the listed [ISO currency codes](https://en.wikipedia.org/wiki/ISO_4217). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Payment",
"title": "Payment",
"properties": {
"contactlessCurrency": {
"description": "The default currency for contactless payments on the payment terminal, as the three-letter [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code.",
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"hideMinorUnitsInCurrencies": {
"description": "Hides the minor units for the listed [ISO currency codes](https://en.wikipedia.org/wiki/ISO_4217).",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}