Class ExecuteFormParameters
OptimaJet.Workflow.Plugins.FormsPlugin.ExecuteFormParameters
Represents the parameters that need to be specified to execute the form.
Namespace: OptimaJet.Workflow.Plugins.FormsPlugin
public record ExecuteFormParameters : IEquatable<ExecuteFormParameters>Type Hierarchy
- ExecuteFormParameters Current type
- Implemented interfaces
Properties
public required FormKey FormKey { get; init; } #Represents a unique identifier for a form, which includes properties defining the specific form's name and version in the system.
public required string CommandName { get; init; } #The command that must be executed with the form.
public required Guid ProcessId { get; init; } #The process instance id.
public string? IdentityId { get; init; } #The user id that executes the form.
public string? ImpersonatedIdentityId { get; init; } #The user id on whose behalf the form is executed (impersonation).
public required object FormData { get; init; } #The form data.