ETASCOM CRM V3 - Documentation API
    Preparing search index...

    Interface Label

    interface Label {
        id: string;
        code: string;
        lotNumber?: string;
        type: "palette" | "carton" | "unite";
        workOrderId?: string;
        receptionId?: string;
        parentLabelId?: string;
        rawMaterialId?: string;
        finishedProductId?: string;
        equipmentId?: string;
        quantity: number;
        position?: string;
        printedAt?: string;
        scannedAt?: string;
        isActive: boolean;
        createdAt: string;
        updatedAt: string;
        parentLabel?: Label;
        childLabels?: Label[];
        workOrder?: any;
        reception?: any;
        rawMaterial?: any;
        finishedProduct?: any;
        equipment?: any;
        tool?: any;
    }
    Index

    Properties

    id: string
    code: string
    lotNumber?: string
    type: "palette" | "carton" | "unite"
    workOrderId?: string
    receptionId?: string
    parentLabelId?: string
    rawMaterialId?: string
    finishedProductId?: string
    equipmentId?: string
    quantity: number
    position?: string
    printedAt?: string
    scannedAt?: string
    isActive: boolean
    createdAt: string
    updatedAt: string
    parentLabel?: Label
    childLabels?: Label[]
    workOrder?: any
    reception?: any
    rawMaterial?: any
    finishedProduct?: any
    equipment?: any
    tool?: any