Flipdish · Schema

RestaurantVoucherPayGreenConfiguration

RestaurantVoucherPayGreenConfiguration.

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Name string Name.
PayGreenId string PayGreenId.
PayGreenConfigurationId integer PayGreenConfigurationId.
AssignedStores array AssignedStores.
View JSON Schema on GitHub

JSON Schema

marketing-restaurant-voucher-pay-green-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/marketing-restaurant-voucher-pay-green-configuration-schema.json",
  "title": "RestaurantVoucherPayGreenConfiguration",
  "description": "RestaurantVoucherPayGreenConfiguration.",
  "type": "object",
  "properties": {
    "Name": {
      "description": "Name.",
      "type": "string",
      "example": "Example Name"
    },
    "PayGreenId": {
      "description": "PayGreenId.",
      "type": "string",
      "example": "500123"
    },
    "PayGreenConfigurationId": {
      "format": "int32",
      "description": "PayGreenConfigurationId.",
      "type": "integer",
      "example": 500123
    },
    "AssignedStores": {
      "description": "AssignedStores.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RestaurantVoucherAssignedStore"
      },
      "example": []
    }
  }
}