/**
* 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 { BookerModel } from './bookerModel';
import { BookingReservationModel } from './bookingReservationModel';
import { PaymentAccountModel } from './paymentAccountModel';
import { RegisteredCardModel } from './registeredCardModel';
/**
* A booking holds all shared metadata for a set of reservations
*/
import { ClassMetaData } from '@apaleo/angular-api-proxy-common';
export interface BookingItemModel {
/**
* Booking id
*/
id: string;
/**
* Group id
*/
groupId?: string;
booker?: BookerModel;
paymentAccount?: PaymentAccountModel;
registeredCard?: RegisteredCardModel;
/**
* Additional information and comments
*/
comment?: string;
/**
* Additional information and comment by the booker
*/
bookerComment?: string;
/**
* Date of creation
A date and time (without fractional second part) in UTC or with UTC offset as defined in ISO8601:2004
*/
created: Date;
/**
* Date of last modification
A date and time (without fractional second part) in UTC or with UTC offset as defined in ISO8601:2004
*/
modified: Date;
/**
* Reservations within this booking
*/
reservations?: Array;
}
export declare namespace BookingItemModel {
const $metaData: ClassMetaData;
}