/* tslint:disable */ /* eslint-disable */ /** * configuration/branches.yaml * 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. */ /** * Response representation of a holiday */ export interface HolidayDetails { /** * Day of the month of the holiday */ dayOfMonth: number; /** * The id of the Holiday */ id: number; /** * If holiday occurs every year */ isAnnuallyRecurring: boolean; /** * Month of the year of the holiday */ monthOfYear: number; /** * The description of the Holiday */ name: string; /** * Year of holiday */ year: number; }