Properties
| Name | Type | Description |
|---|---|---|
| accountHolders | array | List of account holders. |
| 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/PaginatedAccountHoldersResponse",
"title": "PaginatedAccountHoldersResponse",
"properties": {
"accountHolders": {
"description": "List of account holders.",
"items": {
"$ref": "#/components/schemas/AccountHolder"
},
"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": [
"accountHolders",
"hasPrevious",
"hasNext"
],
"type": "object"
}