Assembly: OptimaJet.Workflow.BpmnPlugin

Class ConvertedProcess

OptimaJet.Workflow.BpmnPlugin.Import.ConvertedProcess

Represents a converted process which includes its definition, any issues encountered during conversion, and an optional hint providing additional information or instructions.

public record ConvertedProcess : IEquatable<ConvertedProcess>

Type Hierarchy

Constructors

public ConvertedProcess(ProcessDefinition ProcessDefinition, ImmutableList<string> Issues, ConvertedProcessHint? Hint = null) #
Represents a converted process which includes its definition, any issues encountered during conversion, and an optional hint providing additional information or instructions.

Parameters

Name
Type
Description
ProcessDefinition
ProcessDefinition
The definition of the converted process.
Issues
ImmutableList<String>
A list of issues encountered during the conversion of the process.
Hint
ConvertedProcessHint
An optional hint providing additional information or instructions regarding the converted process.

Properties

public ProcessDefinition ProcessDefinition { get; init; } #
The definition of the converted process.
public ImmutableList<string> Issues { get; init; } #
A list of issues encountered during the conversion of the process.
public ConvertedProcessHint? Hint { get; init; } #
An optional hint providing additional information or instructions regarding the converted process.
public bool HasIssues { get; } #
Gets a value indicating whether the converted process has any issues encountered during the conversion.
public bool DontSave { get; } #
Gets a value indicating whether the converted process should not be saved.