Mews · Schema

PaymentRequestCancellationResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
PaymentRequests array The cancelled payment requests.
View JSON Schema on GitHub

JSON Schema

mews-paymentrequestcancellationresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentRequestCancellationResult",
  "title": "PaymentRequestCancellationResult",
  "required": [
    "PaymentRequests"
  ],
  "type": "object",
  "properties": {
    "PaymentRequests": {
      "maxItems": 1000,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PaymentRequest"
      },
      "description": "The cancelled payment requests."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "PaymentRequestCancellationResult"
}