FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
doc
/
models
Edit File: get-terminal-action-response.md
# Get Terminal Action Response ## Structure `GetTerminalActionResponse` ## Fields | Name | Type | Tags | Description | Getter | Setter | | --- | --- | --- | --- | --- | --- | | `errors` | [`?(Error[])`](../../doc/models/error.md) | Optional | Information on errors encountered during the request. | getErrors(): ?array | setErrors(?array errors): void | | `action` | [`?TerminalAction`](../../doc/models/terminal-action.md) | Optional | Represents an action processed by the Square Terminal. | getAction(): ?TerminalAction | setAction(?TerminalAction action): void | ## Example (as JSON) ```json { "action": { "app_id": "APP_ID", "created_at": "2021-07-28T23:22:07.476Z", "deadline_duration": "PT5M", "device_id": "DEVICE_ID", "id": "termapia:jveJIAkkAjILHkdCE", "location_id": "LOCATION_ID", "save_card_options": { "customer_id": "CUSTOMER_ID", "reference_id": "user-id-1" }, "status": "IN_PROGRESS", "type": "SAVE_CARD", "updated_at": "2021-07-28T23:22:08.301Z", "cancel_reason": "TIMED_OUT" }, "errors": [ { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" }, { "category": "MERCHANT_SUBSCRIPTION_ERROR", "code": "MAP_KEY_LENGTH_TOO_LONG", "detail": "detail6", "field": "field4" } ] } ```
Save
Back