Toast · Schema

DeliveryPaymentOptions

Information about the forms of payment that the restaurant will accept for delivery orders.

Food ServicePoint of SaleRestaurantsHospitality

Properties

Name Type Description
cash boolean Indicates whether the restaurant accepts cash payment for delivery orders that are placed online.
ccSameDay boolean Indicates whether the restaurant accepts online credit card payment for delivery orders that are delivered on the same day.
ccFuture boolean Indicates whether the restaurant accepts online credit card payment for delivery orders that are to be delivered on a day after the guest places the order.
View JSON Schema on GitHub

JSON Schema

restaurants-delivery-payment-options-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/toast/refs/heads/main/json-schema/restaurants-delivery-payment-options-schema.json",
  "title": "DeliveryPaymentOptions",
  "description": "Information about the forms of payment that the restaurant will\naccept for delivery orders.\n",
  "type": "object",
  "properties": {
    "cash": {
      "type": "boolean",
      "description": "Indicates whether the restaurant accepts cash payment for\ndelivery orders that are placed online.\n"
    },
    "ccSameDay": {
      "type": "boolean",
      "description": "Indicates whether the restaurant accepts online credit card\npayment for delivery orders that are delivered on the same\nday.\n"
    },
    "ccFuture": {
      "type": "boolean",
      "description": "Indicates whether the restaurant accepts online credit card\npayment for delivery orders that are to be delivered on a day\nafter the guest places the order.\n"
    }
  }
}