@mendix/extensions-api - v0.6.0
    Preparing search index...

    Interface UserTaskActivityBase

    interface UserTaskActivityBase {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: string;
        annotation: null | Workflows.Annotation;
        autoAssignSingleTargetUser: boolean;
        boundaryEvents: BoundaryEvent[];
        caption: string;
        dueDate: null | string;
        name: string;
        onCreatedEvent: UserTaskEvent;
        outcomes: UserTaskOutcome[];
        persistentId: string;
        relativeMiddlePoint: Location;
        size: Size;
        taskDescription: StringTemplate;
        taskName: StringTemplate;
        taskPage: PageReference;
        userTargeting: UserTargeting;
        addInterruptingTimerBoundaryEvent(): Promise<
            InterruptingTimerBoundaryEvent,
        >;
        addNonInterruptingTimerBoundaryEvent(): Promise<
            NonInterruptingTimerBoundaryEvent,
        >;
        addUserTaskOutcome(): Promise<UserTaskOutcome>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: string

    The type of the element.

    annotation: null | Workflows.Annotation
    autoAssignSingleTargetUser: boolean
    boundaryEvents: BoundaryEvent[]
    caption: string
    dueDate: null | string
    name: string
    onCreatedEvent: UserTaskEvent
    outcomes: UserTaskOutcome[]
    persistentId: string
    relativeMiddlePoint: Location
    size: Size
    taskDescription: StringTemplate
    taskName: StringTemplate
    taskPage: PageReference
    userTargeting: UserTargeting

    Methods