UNPKG

@qite/tide-client

Version:
18 lines (17 loc) 443 B
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; }