/** * apaleo Rate Plan API - not safe for work * Continuously evolving version - use at your own risk! Manage the rate plans and rates to rent out your inventory and extra services. * * OpenAPI spec version: v0-nsfw * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface AvailabilityModel { /** * You can choose if the service will only be offered for the arrival or departure time slice like early check-in or a final cleaning service. You can also define a service that is available to be booked for the whole stay. The property defaults to 'Daily'. */ mode: AvailabilityModel.ModeEnum; /** * Quota/Limit for service. By default service is unlimited. */ quantity?: number; /** * You can choose if the service should be available for specific days of the week */ daysOfWeek?: Array; } export declare namespace AvailabilityModel { type ModeEnum = 'Arrival' | 'Departure' | 'Daily'; const ModeEnumValues: readonly ModeEnum[]; type DaysOfWeekEnum = 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' | 'Sunday'; const DaysOfWeekEnumValues: readonly DaysOfWeekEnum[]; } export declare namespace AvailabilityModel { const $metaData: ClassMetaData; }