DataFlowStatusDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Aggregated execution status of a data flow, computed from its child pipeline executions
public record DataFlowStatusDto : IEquatable<DataFlowStatusDto>
Inheritance Object → DataFlowStatusDto
Implements IEquatable<DataFlowStatusDto>
Properties
DataFlowRtId
Runtime identifier of the data flow
public OctoObjectId DataFlowRtId { get; set; }
Property Value
OctoObjectId
State
Aggregated execution state of the data flow
public DataFlowExecutionState State { get; set; }
Property Value
Pipelines
Per-pipeline execution status details
public IReadOnlyList<PipelineStatusDto> Pipelines { get; set; }
Property Value
IReadOnlyList<PipelineStatusDto>
Constructors
DataFlowStatusDto()
Caution
Constructors of types with required members are not supported in this version of your compiler.
public DataFlowStatusDto()