Adyen · Schema

BillDeskDetails

BillDeskDetails schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
checkoutAttemptId string The checkout attempt identifier.
issuer string The issuer id of the shopper's selected bank.
type string **billdesk**
View JSON Schema on GitHub

JSON Schema

checkout-bill-desk-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-bill-desk-details-schema.json",
  "title": "BillDeskDetails",
  "description": "BillDeskDetails schema from Adyen API",
  "type": "object",
  "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"
  ],
  "additionalProperties": false
}