pub struct ExecutionsLoopResult {
pub child_executions: Vec<ExecutionsChildExecutionResult>,
pub end_timestamp: Option<String>,
pub error_code: Option<i32>,
pub error_message: Option<String>,
pub input_field: String,
pub iterations: Box<ExecutionsIterations>,
pub mocked: Option<bool>,
pub node_id: String,
pub outputs: Option<Vec<Value>>,
pub start_timestamp: String,
pub status: String,
}Fields§
§child_executions: Vec<ExecutionsChildExecutionResult>Details of all child executions associated with the loop. A child execution is generated for each iteration of the input data.
end_timestamp: Option<String>Timestamp of when the execution completed. Only present when status is an end state.
error_code: Option<i32>When a node execution is in an error status this field is present and provides an error code that can be used to determine details why the failure occurred.
error_message: Option<String>When a node execution is in an error status this field is present and provides a user friendly error message.
input_field: StringDisplay name of the input field that the sub model is iterating over.
iterations: Box<ExecutionsIterations>§mocked: Option<bool>Whether this node’s result is mocked
node_id: StringUnique id of the node as specified in the definition.
outputs: Option<Vec<Value>>Outputs from all the iterations of the sub model
start_timestamp: StringTimestamp of when the execution first started.
status: StringCurrent status of execution for the activity.
Implementations§
Source§impl ExecutionsLoopResult
impl ExecutionsLoopResult
pub fn new( child_executions: Vec<ExecutionsChildExecutionResult>, input_field: String, iterations: ExecutionsIterations, node_id: String, start_timestamp: String, status: String, ) -> ExecutionsLoopResult
Trait Implementations§
Source§impl Clone for ExecutionsLoopResult
impl Clone for ExecutionsLoopResult
Source§fn clone(&self) -> ExecutionsLoopResult
fn clone(&self) -> ExecutionsLoopResult
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more