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

    Interface AdminProductPrintZone

    A named printable zone on a product (multi-zone).

    interface AdminProductPrintZone {
        id: number;
        product: number;
        view: "front" | "back" | "left" | "right";
        name: string;
        code: string;
        x: number;
        y: number;
        width: number;
        height: number;
        max_area_cm2: string | null;
        decoration_method: number | null;
        decoration_method_name: string | null;
        price_modifier: string;
        is_active: boolean;
        sort_order: number;
        created_at: string;
        updated_at: string;
    }
    Index

    Properties

    id: number
    product: number
    view: "front" | "back" | "left" | "right"
    name: string
    code: string
    x: number
    y: number
    width: number
    height: number
    max_area_cm2: string | null
    decoration_method: number | null
    decoration_method_name: string | null
    price_modifier: string
    is_active: boolean
    sort_order: number
    created_at: string
    updated_at: string