User vacation days amount
This model represents UserVacationDaysAmount.
| Property | Type | Description | Information |
|---|---|---|---|
id | int | Identifier | Unique for single user vacation days record. |
days | int | Available vacation days in a year | Together with year is unique. |
original_days | int | Default amount of vacation days | Is updated when days are updated from user-vacation-days endpoint. |
year | int | Year | Together with days is unique. |
user_id | int | Identifier of user | Unique user identifier. |
Example:
{
"id": 1,
"days": 10,
"original_days": 28,
"year": 2023,
"user_id": 1
}