ClientBillingLineItemDto
Response DTO for a billable line item
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The unique code for this line item |
The unique code for this line item | ||
| client | CodeAndNameDto | |
| clientBillableService | CodeAndNameDto | |
| servicePackage | CodeAndNameDto | |
| description | string | The invoice line description |
The invoice line description | ||
| quantity | number | The quantity |
The quantity | ||
| unitPrice | number | Snapshot of the effective price at generation |
Snapshot of the effective price at generation | ||
| vatRate | enum | Standard Reduced Zero Exempt OutOfScope |
Standard Reduced Zero Exempt OutOfScope | ||
| accountingCode | string | The accounting/nominal code |
The accounting/nominal code | ||
| periodStart | string | Start of the service period covered |
Start of the service period covered | ||
| periodEnd | string | End of the service period covered |
End of the service period covered | ||
| generatedDate | string | When the line item was generated |
When the line item was generated | ||
| billingDate | string | Target invoice date |
Target invoice date | ||
| status | enum | Pending Approved Invoiced Cancelled |
Pending Approved Invoiced Cancelled | ||
| invoiceSubmissionCode | string | The invoice submission code this was bundled into (null until invoiced) |
The invoice submission code this was bundled into (null until invoiced) | ||
| createdDate | string | When the line item was created |
When the line item was created | ||
| updatedDate | string | When the line item was last updated |
When the line item was last updated | ||
JSON Example
{
"code": "string",
"client": {
"code": "string",
"name": "string"
},
"clientBillableService": {
"code": "string",
"name": "string"
},
"servicePackage": {
"code": "string",
"name": "string"
},
"description": "string"
}
Used By Operations
-
POST
Create Billing Line Item for Client
/tenants/{tenant}/clients/{client}/billinglineitems/clientbillinglineitem
-
GET
Get Billing Line Item for Client
/tenants/{tenant}/clients/{client}/billinglineitems/clientbillinglineitem/{code}
-
PUT
Update Billing Line Item for Client
/tenants/{tenant}/clients/{client}/billinglineitems/clientbillinglineitem/{code}