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. |
JSON Schema
{
"$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"
}