Type Alias: JobResultAdHocSubProcess
type JobResultAdHocSubProcess = {
activateElements?: JobResultActivateElement[];
isCancelRemainingInstances?: boolean;
isCompletionConditionFulfilled?: boolean;
type?: string;
} | null;
Defined in: gen/types.gen.ts:3838
Job result details for an ad‑hoc sub‑process, including elements to activate and flags indicating completion or cancellation behavior.
Type Declaration
{
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