n8n
Version:
n8n Workflow Automation Tool
12 lines (11 loc) • 320 B
TypeScript
import { WithTimestamps } from '@n8n/db';
import { type Relation } from '@n8n/typeorm';
import { Agent } from './agent.entity';
export declare class AgentTask extends WithTimestamps {
id: string;
agentId: string;
agent: Relation<Agent>;
name: string;
objective: string;
cronExpression: string;
}