Skip to main content

WorkflowStepExecution

Type Alias WorkflowStepExecution 

Source
pub type WorkflowStepExecution = WorkflowStepExecution;
Expand description

Alias for pb::WorkflowStepExecution.

Aliased Type§

pub struct WorkflowStepExecution {
    pub step_id: String,
    pub status: i32,
    pub attempts: Vec<WorkflowStepAttempt>,
    pub input: Option<Value>,
    pub output: Option<Value>,
    pub status_message: String,
    pub skip_reason: String,
    pub started_at: Option<Timestamp>,
    pub completed_at: Option<Timestamp>,
}

Fields§

§step_id: String§status: i32§attempts: Vec<WorkflowStepAttempt>§input: Option<Value>§output: Option<Value>§status_message: String§skip_reason: String§started_at: Option<Timestamp>§completed_at: Option<Timestamp>