/** * apaleo Booking API - not safe for work * Continuously evolving version - use at your own risk! Resources and methods to manage guest journeys. * * 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 { AmountModel } from './amountModel'; import { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface ServiceDateItemModel { /** * The date this service is delivered */ serviceDate: string; /** * The count of booked services */ count: number; amount: AmountModel; /** * Rate plans can have additional services. When booking an offer for such rate plans, those services are automatically booked. They are marked as mandatory and they cannot be removed. */ isMandatory: boolean; } export declare namespace ServiceDateItemModel { const $metaData: ClassMetaData; }