PageDetail
The number of items that return in the page.
Declaration
object PageDetailProperties
| Name | Type | Description |
|---|---|---|
itemsPerPage | int32 | The maximum number of entries that return for this operation, which is the value of |
startIndex | int32 | The offset of the first entry that returns. Use |
totalResults | int64 | The total number of entries that return for the operation. |
Discussion
The PageDetail object contains the pagination response for returned multiple records.
{
"data":[
{ },
...
],
"pagination"{
"totalResults": 10,
"startIndex": 1,
"itemsPerPage": 10
},
}