Skip to main content

User vacation days amount

This model represents UserVacationDaysAmount.

PropertyTypeDescriptionInformation
idintIdentifierUnique for single user vacation days record.
daysintAvailable vacation days in a yearTogether with year is unique.
original_daysintDefault amount of vacation daysIs updated when days are updated from user-vacation-days endpoint.
yearintYearTogether with days is unique.
user_idintIdentifier of userUnique user identifier.

Example:

{
"id": 1,
"days": 10,
"original_days": 28,
"year": 2023,
"user_id": 1
}