/* tslint:disable */ /* eslint-disable */ /** * branches * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Represents the holiday. */ export interface Holiday { /** * The date when the holiday was created. */ creationDate?: string; /** * The date the holiday takes place. */ date?: string; /** * The encoded key of the entity, generated, globally unique */ encodedKey?: string; /** * The ID of the holiday. */ id?: number; /** * `TRUE` if a holiday is annually recurring, `FALSE` otherwise. */ isAnnuallyRecurring?: boolean; /** * The name of the holiday. */ name?: string; }