ClientDocumentPortalViewResult
Paginated list of client documents with portal folder navigation, as seen by the client.
Used by the "Portal View" preview in the main web app.
Properties
| Name | Type | Description |
|---|---|---|
| data | array of ClientDocumentDto | |
| totalCount | integer | |
| offset | integer | |
| limit | integer | |
| hasMore | boolean | |
| folders | array of PortalFolderDto | Sub-folders at the current navigation level. Empty when there are no sub-folders. |
Sub-folders at the current navigation level. Empty when there are no sub-folders. | ||
JSON Example
{
"data": [
{
"code": "...",
"client": "...",
"category": "...",
"title": "...",
"summary": "..."
}
],
"totalCount": 0,
"offset": 0,
"limit": 0,
"hasMore": false
}