BigCommerce · Schema

MetaRefund

Describes refund failures, success and totals.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
failure integer
success integer
total integer
View JSON Schema on GitHub

JSON Schema

bigcommerce-metarefund-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetaRefund",
  "title": "MetaRefund",
  "type": "object",
  "properties": {
    "failure": {
      "type": "integer"
    },
    "success": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    }
  },
  "description": "Describes refund failures, success and totals.",
  "x-internal": false,
  "x-examples": {
    "example-1": {
      "failure": 0,
      "success": 0,
      "total": 0
    }
  }
}