Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.03 KB

cancel-terminal-checkout-response.md

File metadata and controls

42 lines (34 loc) · 1.03 KB

Cancel Terminal Checkout Response

Structure

CancelTerminalCheckoutResponse

Fields

Name Type Tags Description
errors Error[] | undefined Optional Information about errors encountered during the request.
checkout TerminalCheckout | undefined Optional Represents a checkout processed by the Square Terminal.

Example (as JSON)

{
  "checkout": {
    "amount_money": {
      "amount": 123,
      "currency": "USD"
    },
    "app_id": "APP_ID",
    "cancel_reason": "SELLER_CANCELED",
    "created_at": "2020-03-16T15:31:19.934Z",
    "deadline_duration": "PT10M",
    "device_options": {
      "device_id": "dbb5d83a-7838-11ea-bc55-0242ac130003",
      "skip_receipt_screen": true,
      "tip_settings": {
        "allow_tipping": true
      }
    },
    "id": "S1yDlPQx7slqO",
    "reference_id": "id36815",
    "status": "CANCELED",
    "updated_at": "2020-03-16T15:31:45.787Z"
  }
}