/// <summary> /// Initializes a new instance of the <see cref="FlowExecution" /> class. /// </summary> /// <param name="Id">Id.</param> /// <param name="CreatedAt">CreatedAt.</param> /// <param name="CreatedBy">CreatedBy.</param> /// <param name="ModifiedAt">ModifiedAt.</param> /// <param name="ModifiedBy">ModifiedBy.</param> /// <param name="Status">Status.</param> /// <param name="Flow">Flow.</param> /// <param name="State">State.</param> public FlowExecution(string Id = default(string), string CreatedAt = default(string), IdWithName CreatedBy = default(IdWithName), string ModifiedAt = default(string), IdWithName ModifiedBy = default(IdWithName), FlowExecutionStatus Status = default(FlowExecutionStatus), IdWithName Flow = default(IdWithName), FlowExecutionState State = default(FlowExecutionState)) { this.Id = Id; this.CreatedAt = CreatedAt; this.CreatedBy = CreatedBy; this.ModifiedAt = ModifiedAt; this.ModifiedBy = ModifiedBy; this.Status = Status; this.Flow = Flow; this.State = State; }
/// <summary> /// Initializes a new instance of the <see cref="FlowExecution" /> class. /// </summary> /// <param name="Id">Id.</param> /// <param name="CreatedAt">CreatedAt.</param> /// <param name="CreatedBy">CreatedBy.</param> /// <param name="CreatedFor">CreatedFor.</param> /// <param name="ModifiedAt">ModifiedAt.</param> /// <param name="ModifiedBy">ModifiedBy.</param> /// <param name="Priority">Priority.</param> /// <param name="Status">Status.</param> /// <param name="Flow">Flow.</param> /// <param name="State">State.</param> /// <param name="Mode">Mode.</param> /// <param name="Outputs">Outputs.</param> public FlowExecution(string Id = default(string), string CreatedAt = default(string), IdWithName CreatedBy = default(IdWithName), IdWithName CreatedFor = default(IdWithName), string ModifiedAt = default(string), IdWithName ModifiedBy = default(IdWithName), int?Priority = default(int?), FlowExecutionStatus Status = default(FlowExecutionStatus), IdWithName Flow = default(IdWithName), FlowExecutionState State = default(FlowExecutionState), ModeEnum?Mode = default(ModeEnum?), List <FlowExecutionOutput> Outputs = default(List <FlowExecutionOutput>)) { this.Id = Id; this.CreatedAt = CreatedAt; this.CreatedBy = CreatedBy; this.CreatedFor = CreatedFor; this.ModifiedAt = ModifiedAt; this.ModifiedBy = ModifiedBy; this.Priority = Priority; this.Status = Status; this.Flow = Flow; this.State = State; this.Mode = Mode; this.Outputs = Outputs; }