Type Alias WorkflowPlan
Source pub type WorkflowPlan = WorkflowPlan<AutomationV2Schedule, WorkflowPlanStep>;
pub struct WorkflowPlan {Show 16 fields
pub plan_id: String,
pub planner_version: String,
pub plan_source: String,
pub original_prompt: String,
pub normalized_prompt: String,
pub confidence: String,
pub title: String,
pub description: Option<String>,
pub schedule: AutomationV2Schedule<RoutineMisfirePolicy>,
pub execution_target: String,
pub workspace_root: String,
pub steps: Vec<WorkflowPlanStep<AutomationFlowInputRef, AutomationFlowOutputContract>>,
pub requires_integrations: Vec<String>,
pub allowed_mcp_servers: Vec<String>,
pub operator_preferences: Option<Value>,
pub save_options: Value,
}