Properties
| Name | Type | Description |
|---|---|---|
| data | array | List of card order items in the card order batch. |
| hasNext | boolean | Indicates whether there are more items on the next page. |
| hasPrevious | boolean | Indicates whether there are more items on the previous page. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PaginatedGetCardOrderItemResponse",
"title": "PaginatedGetCardOrderItemResponse",
"properties": {
"data": {
"description": "List of card order items in the card order batch.",
"items": {
"$ref": "#/components/schemas/CardOrderItem"
},
"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": [
"data",
"hasPrevious",
"hasNext"
],
"type": "object"
}