interface TripAdditionalCosts {
    additionalFixedOperatorCost?: number;
    hostGroundTransferCost?: number;
    singleSupplement: { bookable?: boolean; price: number } & {
        quantity: number;
    };
}

Hierarchy (View Summary)

Properties

additionalFixedOperatorCost?: number
hostGroundTransferCost?: number
singleSupplement: { bookable?: boolean; price: number } & { quantity: number }