Properties
| Name | Type | Description |
|---|---|---|
| country | string | The country to allow transactions in (e.g. NL, DE). |
| expiry_time | string | Expiry time of this rule. |
| id | integer | The id of the card country permission entry. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CardCountryPermission",
"title": "CardCountryPermission",
"type": "object",
"properties": {
"country": {
"type": "string",
"description": "The country to allow transactions in (e.g. NL, DE).",
"readOnly": false,
"writeOnly": false
},
"expiry_time": {
"type": "string",
"description": "Expiry time of this rule.",
"readOnly": false,
"writeOnly": true
},
"id": {
"type": "integer",
"description": "The id of the card country permission entry.",
"readOnly": true,
"writeOnly": false
}
}
}