WipAgeingReportDto
The WIP / Ageing report: a point-in-time snapshot of open work - what's sitting untouched,
how old it is, and where it's stuck.
Properties
| Name | Type | Description |
|---|---|---|
| summary | WipAgeingSummaryDto | |
| rows | WipAgeingRowDtoPagedResult | |
| generatedAt | string | When the report was generated (UTC). |
When the report was generated (UTC). | ||
JSON Example
{
"summary": {
"openCount": 0,
"notStartedCount": 0,
"blockedCount": 0,
"overdueCount": 0,
"avgAgeDays": 0
},
"rows": {
"data": [
"..."
],
"totalCount": 0,
"offset": 0,
"limit": 0,
"hasMore": false
},
"generatedAt": "2024-01-01T00:00:00Z"
}