Flipdish · JSON Structure

Stores Processing Fee Config Structure

Processing fee config

Type: object Properties: 4
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

ProcessingFeeConfig is a JSON Structure definition published by Flipdish, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

StoreId PaymentAccountType PercentFee FixedFee

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/stores-processing-fee-config-structure.json",
  "name": "ProcessingFeeConfig",
  "description": "Processing fee config",
  "type": "object",
  "properties": {
    "StoreId": {
      "description": "Store Id",
      "type": "int32",
      "example": 500123
    },
    "PaymentAccountType": {
      "description": "Payment account type",
      "enum": [
        "Card",
        "Cash",
        "Ideal",
        "Bancontact",
        "Giropay",
        "Eps",
        "Emv",
        "PayPal",
        "PayGreen",
        "GoogleWalletToken"
      ],
      "type": "string",
      "example": "Card"
    },
    "PercentFee": {
      "description": "Percent fee to customer, including VAT",
      "type": "double",
      "example": 12.5
    },
    "FixedFee": {
      "description": "Fixed fee to customer, including VAT",
      "type": "double",
      "example": 12.5
    }
  }
}