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.
Namespace: OptimaJet.Workflow.BpmnPlugin.Import
public record ConvertedProcess : IEquatable<ConvertedProcess>Type Hierarchy
- ConvertedProcess Current type
- Implemented interfaces
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
ProcessDefinitionProcessDefinitionThe definition of the converted process.
IssuesImmutableList<String>A list of issues encountered during the conversion of the process.
HintConvertedProcessHintAn 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.