UNPKG

@qite/tide-client

Version:
23 lines (22 loc) 545 B
import { RoomOptionPaxType } from "./room-option-pax-type"; export interface BookingPackageRoomOption { entryLineGuid: string; allotmentId?: number; productCode: string; productName: string; accommodationCode: string; externalAccommodationCode: string; accommodationName: string; regimeCode: string; regimeName: string; price: number; isSelected: boolean; isLocked: boolean; quantity: number; from: string; to: string; tourCode: string; isOnRequest: boolean; paxTypes: RoomOptionPaxType; remarks: string; }