Properties
| Name | Type | Description |
|---|---|---|
| checkoutAttemptId | string | The checkout attempt identifier. |
| shopperEmail | string | |
| telephoneNumber | string | |
| type | string | **mbway** |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MbwayDetails",
"title": "MBWay",
"additionalProperties": false,
"properties": {
"checkoutAttemptId": {
"x-addedInVersion": "68",
"description": "The checkout attempt identifier.",
"type": "string"
},
"shopperEmail": {
"description": "",
"type": "string"
},
"telephoneNumber": {
"description": "",
"type": "string"
},
"type": {
"default": "mbway",
"description": "**mbway**",
"enum": [
"mbway"
],
"type": "string"
}
},
"required": [
"telephoneNumber",
"shopperEmail"
],
"type": "object"
}