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

    Interface TabletWorkStation

    interface TabletWorkStation {
        id: string;
        code: string;
        name: string;
        description?: string | null;
        location?: string | null;
        capacity?: number | null;
        costPerHour?: number | null;
        status: string;
        isActive: boolean;
        operator?: { id: string; name: string | null; email: string } | null;
        equipment: TabletEquipment[];
        _count: {
            equipment: number;
            activeEquipment: number;
            maintenanceEquipment: number;
            outOfOrderEquipment: number;
        };
        createdAt: string;
        updatedAt: string;
    }
    Index

    Properties

    id: string
    code: string
    name: string
    description?: string | null
    location?: string | null
    capacity?: number | null
    costPerHour?: number | null
    status: string
    isActive: boolean
    operator?: { id: string; name: string | null; email: string } | null
    equipment: TabletEquipment[]
    _count: {
        equipment: number;
        activeEquipment: number;
        maintenanceEquipment: number;
        outOfOrderEquipment: number;
    }
    createdAt: string
    updatedAt: string