interface DesignCostBreakdown {
    text_count: number;
    image_count: number;
    text_cost: string;
    image_cost: string;
    color_surcharges: ColorSurcharge[];
    color_surcharge_total: string;
    total_cost: string;
    per_view: Record<string, unknown>;
}

Properties

text_count: number
image_count: number
text_cost: string
image_cost: string
color_surcharges: ColorSurcharge[]
color_surcharge_total: string
total_cost: string
per_view: Record<string, unknown>