Properties
| Name | Type | Description |
|---|---|---|
| operation | string | Defines how the condition must be evaluated. |
| value | array | List of processing types. Possible values: **atmWithdraw**, **balanceInquiry**, **ecommerce**, **moto**, **pos**, **recurring**, **token**. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProcessingTypesRestriction",
"title": "ProcessingTypesRestriction",
"properties": {
"operation": {
"description": "Defines how the condition must be evaluated.",
"type": "string"
},
"value": {
"description": "List of processing types.\n\nPossible values: **atmWithdraw**, **balanceInquiry**, **ecommerce**, **moto**, **pos**, **recurring**, **token**.\n\n",
"items": {
"enum": [
"atmWithdraw",
"balanceInquiry",
"ecommerce",
"moto",
"pos",
"recurring",
"token",
"unknown"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"operation"
],
"type": "object"
}