Billings Overview Relation
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single Client contract. |
name | string | Agreement/Project Name | -- |
model_type | int | Model type (enum) | Enum values displayed in billings overview relations |
price | Decimal | Invoice price | MonetaryAttribute |
date | date | Invoice date | -- |
billings_overview_id | int | Identifier of BillingsOverview model. | -- |
responsible_person_id | int | Identifier of User model. | -- |
responsible_person_name | string | User's name | -- |
report_id | int/null | Report identifier | Nullable. |
note | string | Note | -- |
client_id | int | Identifier of Client model. | -- |
client_name | string | Client's name | -- |
past_deadline | bool | Past deadline flag | -- |
past_deadline_notified_at | date | Past deadline date | -- |
invoice_number | string | Invoice number | -- |
created_at | date | Creation date | Date of Client creation |
updated_at | date | Latest update date | Date of latest Client update |
Example:
Note: Model type refers to enum, which can be find in billings-overview-relations.md.
{
"id": 74,
"name": "Klientská smlouva ",
"model_type": "1",
"model_id": "6",
"price": {
"CZK": {
"value": 100,
"formatted": "100,00 Kč"
}
},
"date": "2024-02-01",
"billings_overview_id": 153,
"responsible_person_id": 39,
"responsible_person_name": "Martin Pech",
"report_id": 80,
"note": null,
"client_id": 2,
"client_name": "KAITRADE spol. s r.o.",
"past_deadline": false,
"past_deadline_notified_at": null,
"invoice_number": null,
"created_at": "2024-02-21T12:15:10+0100",
"updated_at": "2024-02-21T12:15:10+0100"
}