TimeEntryAllocationDto
One disposal event against a time entry: the WIP it drew down, what the client was charged
for it, and the difference (positive written off, negative written on). A pure write-off has
no billing line item and a billed amount of zero.
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code for the allocation |
Unique code for the allocation | ||
| timeEntryCode | string | The code of the time entry the allocation is against |
The code of the time entry the allocation is against | ||
| clientBillingLineItemCode | string | The code of the billing line item the time was billed on, or null for a pure write-off |
The code of the billing line item the time was billed on, or null for a pure write-off | ||
| settledValue | number | WIP drawn down by this allocation |
WIP drawn down by this allocation | ||
| billedAmount | number | What the client was charged for it |
What the client was charged for it | ||
| writeOffAmount | number | Settled minus billed: positive is time written off, negative is a write-on |
Settled minus billed: positive is time written off, negative is a write-on | ||
| writeOffReason | CodeAndNameDto | |
| notes | string | Free-text context for the disposal |
Free-text context for the disposal | ||
| createdBy | CodeAndNameDto | |
| createdDate | string | When the disposal was recorded |
When the disposal was recorded | ||
JSON Example
{
"code": "string",
"timeEntryCode": "string",
"clientBillingLineItemCode": "string",
"settledValue": 0,
"billedAmount": 0
}