20 lines
435 B
TypeScript
20 lines
435 B
TypeScript
/**
|
|
* Generated by orval v8.2.0 🍺
|
|
* Do not edit manually.
|
|
* OpenClaw Agency API
|
|
* OpenAPI spec version: 0.3.0
|
|
*/
|
|
|
|
export interface AgentOnboardingCreate {
|
|
agent_name: string;
|
|
role_title: string;
|
|
prompt: string;
|
|
cron_interval_ms?: number | null;
|
|
tools_json?: string | null;
|
|
owner_hr_id?: number | null;
|
|
status?: string;
|
|
spawned_agent_id?: string | null;
|
|
session_key?: string | null;
|
|
notes?: string | null;
|
|
}
|