# Holiday

Represents the holiday.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**creationDate** | **string** | The date when the holiday was created. | [optional] [readonly] [default to undefined]
**date** | **string** | The date the holiday takes place. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**id** | **number** | The ID of the holiday. | [optional] [default to undefined]
**isAnnuallyRecurring** | **boolean** | &#x60;TRUE&#x60; if a holiday is annually recurring, &#x60;FALSE&#x60; otherwise. | [optional] [default to undefined]
**name** | **string** | The name of the holiday. | [optional] [default to undefined]

## Example

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

const instance: Holiday = {
    creationDate,
    date,
    encodedKey,
    id,
    isAnnuallyRecurring,
    name,
};
```

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