16 lines
309 B
TypeScript
16 lines
309 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* OpenClaw Agency API
|
|
* OpenAPI spec version: 0.3.0
|
|
*/
|
|
|
|
export interface EmploymentAction {
|
|
id?: number | null;
|
|
employee_id: number;
|
|
issued_by_employee_id: number;
|
|
action_type: string;
|
|
notes?: string | null;
|
|
created_at?: string;
|
|
}
|