ExpectedTimeDto
What a team member's working pattern expects of them over a date window, day by day.
Backs the Time calendar's daily targets. Expectations come from the member's own
pattern, falling back to the practice default; when the practice has no patterns at
all, WorkingPattern is null and every day reads as zero expectation.
Properties
| Name | Type | Description |
|---|---|---|
| workingPattern | CodeAndNameDto | |
| hasOwnPattern | boolean | True when the member is on a working pattern of their own rather than the practice |
True when the member is on a working pattern of their own rather than the practice | ||
| days | array of ExpectedTimeDayDto | One entry per day of the requested window, oldest first |
One entry per day of the requested window, oldest first | ||
JSON Example
{
"workingPattern": {
"code": "string",
"name": "string"
},
"hasOwnPattern": false,
"days": [
{
"date": "...",
"isWorkingDay": "...",
"expectedMinutes": "..."
}
]
}