Properties
| Name | Type | Description |
|---|---|---|
| checkoutAttemptId | string | The checkout attempt identifier. |
| issuer | string | The Dragonpay issuer value of the shopper's selected bank. Set this to an **id** of a Dragonpay issuer to preselect it. |
| shopperEmail | string | The shoppers email address. |
| type | string | **dragonpay** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DragonpayDetails",
"title": "Dragonpay",
"additionalProperties": false,
"properties": {
"checkoutAttemptId": {
"x-addedInVersion": "68",
"description": "The checkout attempt identifier.",
"type": "string"
},
"issuer": {
"description": "The Dragonpay issuer value of the shopper's selected bank. Set this to an **id** of a Dragonpay issuer to preselect it.",
"type": "string"
},
"shopperEmail": {
"description": "The shoppers email address.",
"type": "string"
},
"type": {
"description": "**dragonpay**",
"enum": [
"dragonpay_ebanking",
"dragonpay_otc_banking",
"dragonpay_otc_non_banking",
"dragonpay_otc_philippines"
],
"type": "string"
}
},
"required": [
"type",
"issuer"
],
"type": "object"
}