{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CheckoutQrCodeAction", "title": "CheckoutQrCodeAction", "additionalProperties": false, "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" ], "type": "object" }