/** * 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 { EmbeddedServiceModel } from './embeddedServiceModel'; import { ClassMetaData } from '@apaleo/angular-api-proxy-common'; export interface OfferServiceModel { service: EmbeddedServiceModel; /** * The date this service is delivered */ serviceDate: string; /** * The default count of offered services. For services whose pricing unit is 'Person' it will be based on the adults and children specified, otherwise 1. */ count: number; /** * If set - the number of services available (only for the limited service). If not set - the service is unlimited. */ availableCount?: number; amount: AmountModel; /** * Whether the service price is included in or added to the base rate */ pricingMode: OfferServiceModel.PricingModeEnum; } export declare namespace OfferServiceModel { type PricingModeEnum = 'Included' | 'Additional'; const PricingModeEnumValues: readonly PricingModeEnum[]; } export declare namespace OfferServiceModel { const $metaData: ClassMetaData; }