# HolidayDetails

Response representation of a holiday

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**dayOfMonth** | **number** | Day of the month of the holiday | [default to undefined]
**id** | **number** | The id of the Holiday | [default to undefined]
**isAnnuallyRecurring** | **boolean** | If holiday occurs every year | [default to undefined]
**monthOfYear** | **number** | Month of the year of the holiday | [default to undefined]
**name** | **string** | The description of the Holiday | [default to undefined]
**year** | **number** | Year of holiday | [default to undefined]

## Example

```typescript
import { HolidayDetails } from './api';

const instance: HolidayDetails = {
    dayOfMonth,
    id,
    isAnnuallyRecurring,
    monthOfYear,
    name,
    year,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
