ETASCOM CRM V3 - Documentation API
    Preparing search index...
    interface WorkStation {
        id: string;
        name: string;
        code: string;
        description?: string;
        location?: string;
        capacity?: number;
        costPerHour?: number;
        status: string;
        isActive: boolean;
        operatorId?: string;
        company?: { id: string; name: string };
        operator?: { id: string; name: string; email: string };
        equipment?: { id: string; name: string; code: string };
        _count: { operationTemplates: number; productionSessions: number };
        createdAt: Date;
        updatedAt: Date;
    }
    Index

    Properties

    id: string
    name: string
    code: string
    description?: string
    location?: string
    capacity?: number
    costPerHour?: number
    status: string
    isActive: boolean
    operatorId?: string
    company?: { id: string; name: string }
    operator?: { id: string; name: string; email: string }
    equipment?: { id: string; name: string; code: string }
    _count: { operationTemplates: number; productionSessions: number }
    createdAt: Date
    updatedAt: Date