Properties
| Name | Type | Description |
|---|---|---|
| checkoutAttemptId | string | The checkout attempt identifier. |
| issuer | string | The issuer id of the shopper's selected bank. |
| type | string | **billdesk** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillDeskDetails",
"title": "BillDesk",
"additionalProperties": false,
"properties": {
"checkoutAttemptId": {
"x-addedInVersion": "68",
"description": "The checkout attempt identifier.",
"type": "string"
},
"issuer": {
"description": "The issuer id of the shopper's selected bank.",
"type": "string"
},
"type": {
"description": "**billdesk**",
"enum": [
"billdesk_online",
"billdesk_wallet"
],
"type": "string"
}
},
"required": [
"type",
"issuer"
],
"type": "object"
}