InvoiceDtoPagedResult
Properties
| Name | Type | Description |
|---|---|---|
| data | array of InvoiceDto | |
| totalCount | integer | |
| offset | integer | |
| limit | integer | |
| hasMore | boolean |
JSON Example
{
"data": [
{
"id": "...",
"number": "...",
"customerId": "...",
"customerName": "...",
"totalAmount": "..."
}
],
"totalCount": 0,
"offset": 0,
"limit": 0,
"hasMore": false
}