Adyen · Schema

CheckoutQrCodeAction

CheckoutQrCodeAction schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
expiresAt string Expiry time of the QR code.
paymentData string Encoded payment data.
paymentMethodType string Specifies the payment method.
qrCodeData string The contents of the QR code as a UTF8 string.
type string **qrCode**
url string Specifies the URL to redirect to.
View JSON Schema on GitHub

JSON Schema

checkout-checkout-qr-code-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-checkout-qr-code-action-schema.json",
  "title": "CheckoutQrCodeAction",
  "description": "CheckoutQrCodeAction schema from Adyen API",
  "type": "object",
  "properties": {
    "expiresAt": {
      "description": "Expiry time of the QR code.",
      "type": "string"
    },
    "paymentData": {
      "description": "Encoded payment data.",
      "type": "string"
    },
    "paymentMethodType": {
      "description": "Specifies the payment method.",
      "type": "string"
    },
    "qrCodeData": {
      "description": "The contents of the QR code as a UTF8 string.",
      "type": "string"
    },
    "type": {
      "description": "**qrCode**",
      "enum": [
        "qrCode"
      ],
      "type": "string"
    },
    "url": {
      "description": "Specifies the URL to redirect to.",
      "type": "string"
    }
  },
  "required": [
    "type"
  ],
  "additionalProperties": false
}