ServiceTimeReportDto
The Service Time report: estimated vs actual time per service ("we sold this for X hours —
did it take X?"), computed from time entries attributed to services via their linked tasks.
When a service drill-down is requested, rows are per client instead of per service.
Properties
| Name | Type | Description |
|---|---|---|
| summary | ServiceTimeSummaryDto | |
| rows | ServiceTimeRowDtoPagedResult | |
| generatedAt | string | When the report was generated (UTC) |
When the report was generated (UTC) | ||
JSON Example
{
"summary": {
"totalMinutes": 0,
"attributedMinutes": 0,
"unattributedMinutes": 0,
"billableMinutes": 0,
"entryCount": 0
},
"rows": {
"data": [
"..."
],
"totalCount": 0,
"offset": 0,
"limit": 0,
"hasMore": false
},
"generatedAt": "2024-01-01T00:00:00Z"
}