Interface InventoryTransfer

Inventory transfer response

interface InventoryTransfer {
    created_on: string;
    from_location_id: number;
    id: number;
    notes?: string;
    quantity: number;
    reference_number?: string;
    status: "pending" | "cancelled" | "completed";
    to_location_id: number;
}

Properties

created_on: string

Created timestamp

from_location_id: number

Source location ID

id: number

Unique identifier

notes?: string

Transfer notes

quantity: number

Quantity transferred

reference_number?: string

Reference number

status: "pending" | "cancelled" | "completed"

Transfer status

to_location_id: number

Destination location ID