Properties
| Name | Type | Description |
|---|---|---|
| operation | string | Defines how the condition must be evaluated. |
| value | boolean | Checks the currency of the payment against the currency of the payment instrument. Possible values: - **true**: The currency of the payment is different from the currency of the payment instrument. - |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DifferentCurrenciesRestriction",
"title": "DifferentCurrenciesRestriction",
"properties": {
"operation": {
"description": "Defines how the condition must be evaluated.",
"type": "string"
},
"value": {
"description": "Checks the currency of the payment against the currency of the payment instrument.\n\nPossible values:\n\n- **true**: The currency of the payment is different from the currency of the payment instrument.\n\n- **false**: The currencies are the same.\n\n",
"type": "boolean"
}
},
"required": [
"operation"
],
"type": "object"
}