@qite/tide-client
Version:
Frontend client for Tide
18 lines (17 loc) • 443 B
TypeScript
import { BookingPricePerPax } from "./booking-price-per-pax";
export interface BookingPriceDetail {
productName: string;
productCode: string;
priceDescription: string;
accommodationCode: string;
accommodationName: string;
productType: number;
price: number;
amount: number;
total: number;
pricePerPax: BookingPricePerPax[];
isInPackage: boolean;
isSeparate: boolean;
showPrice: boolean;
requirementType?: number;
}