Mews · Schema

AlternativePaymentResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
PaymentId string Unique identifier of the created payment.
NextAction object Next action to take in order to complete the payment.
View JSON Schema on GitHub

JSON Schema

mews-alternativepaymentresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AlternativePaymentResult",
  "title": "AlternativePaymentResult",
  "required": [
    "PaymentId"
  ],
  "type": "object",
  "properties": {
    "PaymentId": {
      "type": "string",
      "description": "Unique identifier of the created payment.",
      "format": "uuid"
    },
    "NextAction": {
      "title": "Alternative payment next action",
      "allOf": [
        {
          "$ref": "#/components/schemas/NextAction"
        }
      ],
      "description": "Next action to take in order to complete the payment.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "AlternativePaymentResult"
}