/** * Generated by orval v8.2.0 🍺 * Do not edit manually. * OpenClaw Agency API * OpenAPI spec version: 0.3.0 */ export interface Employee { id?: number | null; name: string; employee_type: string; department_id?: number | null; team_id?: number | null; manager_id?: number | null; title?: string | null; status?: string; openclaw_session_key?: string | null; notify_enabled?: boolean; }