Adyen · Schema

PaginatedGetCardOrderResponse

PaymentsFinancial ServicesFintech

Properties

Name Type Description
cardOrders array Contains objects with information about card orders.
hasNext boolean Indicates whether there are more items on the next page.
hasPrevious boolean Indicates whether there are more items on the previous page.
View JSON Schema on GitHub

JSON Schema

adyen-paginatedgetcardorderresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedGetCardOrderResponse",
  "title": "PaginatedGetCardOrderResponse",
  "properties": {
    "cardOrders": {
      "description": "Contains objects with information about card orders.",
      "items": {
        "$ref": "#/components/schemas/CardOrder"
      },
      "type": "array"
    },
    "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"
    }
  },
  "required": [
    "hasPrevious",
    "hasNext"
  ],
  "type": "object"
}