@qite/tide-client
Version:
Frontend client for Tide
18 lines (17 loc) • 403 B
TypeScript
export interface BookingPackageAllotmentInfo {
name: string;
tourCode: string;
startDate: string;
startTime: string;
endDate: string;
endTime: string;
totalPlaces: number;
bookedPlaces: number;
inOptionPlaces: number;
status: number;
customStatusId?: number;
customAllotmentStatus?: string;
tagIds: number[];
allotmentIds: number[];
cachedAllotmentPriceInfos?: number[];
}