Client Contract Invoice
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single Client Contract Invoice. |
invoice_number | int | Invoice number | Unique for single Client Contract Invoice. |
client_contract_id | int | Client Contract identifier | Unique for single Client Contract. |
date | date | When invoice has been generated | |
amount_of_money | Monetary (array<string, Decimal>) | Amount of money | |
past_deadline | bool | Invoice number was not filled yet and 7 days passed. | |
past_deadline_notified_at | date/null | Date of past_deadline notification. | |
created_at | date | Client creation date | Date of Client creation |
updated_at | date | Client latest update date | Date of latest Client update |
Example:
{
"id": 6,
"invoice_number": 20230130,
"client_contract_id": 6,
"date": "2024-01-29T23:00:00.000000Z",
"amount_of_money": {
"CZK": {
"value": 120.22,
"formatted": "120,22 Kč"
}
},
"past_deadline": false,
"past_deadline_notified_at": null,
"created_at": "2024-01-30T11:00:05+0100",
"updated_at": "2024-01-30T11:08:01+0100",
"_links": [
{
"href": "/api/v0/client-contract-invoices/6",
"rel": "self",
"type": "GET"
}
]
}