Type Alias: JobResultAdHocSubProcess
type JobResultAdHocSubProcess = {
activateElements?: JobResultActivateElement[];
isCancelRemainingInstances?: boolean;
isCompletionConditionFulfilled?: boolean;
type?: string;
} | null;
Job result details for an ad‑hoc sub‑process, including elements to activate and flags indicating completion or cancellation behavior.
Union Members
Type Literal
{
activateElements?: JobResultActivateElement[];
isCancelRemainingInstances?: boolean;
isCompletionConditionFulfilled?: boolean;
type?: string;
}
activateElements?
optional activateElements?: JobResultActivateElement[];
Indicates which elements need to be activated in the ad-hoc subprocess.
isCancelRemainingInstances?
optional isCancelRemainingInstances?: boolean;
Indicates whether the remaining instances of the ad-hoc subprocess should be canceled.
isCompletionConditionFulfilled?
optional isCompletionConditionFulfilled?: boolean;
Indicates whether the completion condition of the ad-hoc subprocess is fulfilled.
type?
optional type?: string;
Used to distinguish between different types of job results.
null