Freeze Design Frontend - TypeScript API
    Preparing search index...

    Interface PriceSimulationResult

    interface PriceSimulationResult {
        quantity: number;
        base_price: string;
        decoration_unit: string;
        zone_surcharge: string;
        unit_price: string;
        line_total: string;
        decoration: DecorationBreakdown | null;
        vat: {
            enabled: boolean;
            rate: string;
            included: boolean;
            amount: string;
            excl: string;
            incl: string;
        };
        uses_method: boolean;
        method_name: string
        | null;
        method_source: "none" | "explicit" | "site_default";
    }
    Index

    Properties

    quantity: number
    base_price: string
    decoration_unit: string
    zone_surcharge: string
    unit_price: string
    line_total: string
    decoration: DecorationBreakdown | null
    vat: {
        enabled: boolean;
        rate: string;
        included: boolean;
        amount: string;
        excl: string;
        incl: string;
    }
    uses_method: boolean
    method_name: string | null
    method_source: "none" | "explicit" | "site_default"