Time report
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single time report. |
task_id | int | Task where time was reported | -- |
employee_id | string | Employee that reported time | -- |
date | string | Date when time was reported | -- |
minutes | string | Reported minutes | -- |
description | boolean | Description of report | -- |
goodday_created_at | boolean | When was time report created | -- |
created_at | date | Time report creation date | Date of Time report creation. |
updated_at | date | Time report latest update date | Date of Time report latest update. |
Example:
{
"id": 1,
"task_id": 1,
"employee_id": 1,
"date": "2021-07-27T22:00:00.000000Z",
"minutes": 75,
"description": null,
"goodday_created_at": "2021-07-28T14:35:37+0200",
"created_at": "2022-11-23T16:06:57+0100",
"updated_at": "2022-11-23T16:06:57+0100",
"_links": [
{
"href": "/api/v0/time-reports/1",
"rel": "self",
"type": "GET"
}
]
}