ClientBillableServiceStageHistoryDto
One stage change in a client billable service's history, newest first. Powers the
time-in-stage view: the duration a service spent in a stage is the gap between one row's
SodiumHQ.DTOs.ClientBillableService.ClientBillableServiceStageHistoryDto.ChangedDate and the next.
Properties
| Name | Type | Description |
|---|---|---|
| fromStage | CodeAndNameDto | |
| toStage | CodeAndNameDto | |
| changedBy | CodeAndNameDto | |
| changedDate | string | When the change happened (UTC). |
When the change happened (UTC). | ||
| drivenByTask | CodeAndNameDto | |
JSON Example
{
"fromStage": {
"code": "string",
"name": "string"
},
"toStage": {
"code": "string",
"name": "string"
},
"changedBy": {
"code": "string",
"name": "string"
},
"changedDate": "2024-01-01T00:00:00Z",
"drivenByTask": {
"code": "string",
"name": "string"
}
}