ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface Warehouse {
        id: string;
        code: string;
        name: string;
        address?: string;
        city?: string;
        postalCode?: string;
        country?: string;
        isActive: boolean;
        createdAt: string;
        updatedAt: string;
        stockLocations: StockLocation[];
        stockMovements?: any[];
        _count: { stockLocations: number; stockMovements: number };
    }
    Index

    Properties

    id: string
    code: string
    name: string
    address?: string
    city?: string
    postalCode?: string
    country?: string
    isActive: boolean
    createdAt: string
    updatedAt: string
    stockLocations: StockLocation[]
    stockMovements?: any[]
    _count: { stockLocations: number; stockMovements: number }