VTEX · Schema

BillingInfoResponse

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
receivableAmount number
money number
cheque number
creditCard number
webComment string
carrierComment string
billingConfirmDate string
created string
View JSON Schema on GitHub

JSON Schema

vtex-billinginforesponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillingInfoResponse",
  "title": "BillingInfoResponse",
  "type": "object",
  "properties": {
    "receivableAmount": {
      "type": "number"
    },
    "money": {
      "type": "number"
    },
    "cheque": {
      "type": "number"
    },
    "creditCard": {
      "type": "number"
    },
    "webComment": {
      "type": "string"
    },
    "carrierComment": {
      "type": "string"
    },
    "billingConfirmDate": {
      "type": "string",
      "format": "date-time"
    },
    "created": {
      "type": "string",
      "format": "date-time"
    }
  }
}