/**
* 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 { DesiredTimeSliceModel } from './desiredTimeSliceModel';
import { ClassMetaData } from '@apaleo/angular-api-proxy-common';
export interface DesiredStayDetailsModel {
/**
* Date and optional time of arrival
Specify either a pure date or a date and time (without fractional second part) in UTC or with UTC offset as defined in ISO8601:2004
*/
arrival: string;
/**
* Date and optional time of departure. Cannot be more than 5 years after arrival.
Specify either a pure date or a date and time (without fractional second part) in UTC or with UTC offset as defined in ISO8601:2004
*/
departure: string;
/**
* Number of adults
*/
adults: number;
/**
* Ages of the children
*/
childrenAges?: Array;
/**
* Whether the prices for time slices with no change to the rate plan should be re-quoted based on current prices, or if only additions like change of number of adults should be calculated. Defaults to 'false'.
*/
requote?: boolean;
/**
* The list of time slices
*/
timeSlices: Array;
}
export declare namespace DesiredStayDetailsModel {
const $metaData: ClassMetaData;
}