API Docs / Schemas / ClientBillableServiceStageHistoryDto

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
fromStageCodeAndNameDto
toStageCodeAndNameDto
changedByCodeAndNameDto
changedDatestring

When the change happened (UTC).

When the change happened (UTC).

drivenByTaskCodeAndNameDto

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"
  }
}