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;
}
