Properties
| Name | Type | Description |
|---|---|---|
| authenticationMethod | string | Allowed authentication methods: Magswipe, Manual Entry. |
| enablePayAtTable | boolean | Enable Pay at table. |
| paymentInstrument | string | Sets the allowed payment instrument for Pay at table transactions. Can be: **cash** or **card**. If not set, the terminal presents both options. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PayAtTable",
"title": "PayAtTable",
"properties": {
"authenticationMethod": {
"description": "Allowed authentication methods: Magswipe, Manual Entry.",
"enum": [
"MAGSWIPE",
"MKE"
],
"type": "string"
},
"enablePayAtTable": {
"description": "Enable Pay at table.",
"type": "boolean"
},
"paymentInstrument": {
"description": "Sets the allowed payment instrument for Pay at table transactions. Can be: **cash** or **card**. If not set, the terminal presents both options.",
"enum": [
"Cash",
"Card"
],
"type": "string"
}
},
"type": "object"
}