Adyen · Schema

PaginatedPaymentInstrumentsResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
hasNext boolean Indicates whether there are more items on the next page.
hasPrevious boolean Indicates whether there are more items on the previous page.
paymentInstruments array List of payment instruments associated with the balance account.
View JSON Schema on GitHub

JSON Schema

adyen-paginatedpaymentinstrumentsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedPaymentInstrumentsResponse",
  "title": "PaginatedPaymentInstrumentsResponse",
  "properties": {
    "hasNext": {
      "description": "Indicates whether there are more items on the next page.",
      "type": "boolean"
    },
    "hasPrevious": {
      "description": "Indicates whether there are more items on the previous page.",
      "type": "boolean"
    },
    "paymentInstruments": {
      "description": "List of payment instruments associated with the balance account.",
      "items": {
        "$ref": "#/components/schemas/PaymentInstrument"
      },
      "type": "array"
    }
  },
  "required": [
    "paymentInstruments",
    "hasPrevious",
    "hasNext"
  ],
  "type": "object"
}