@oneblink/apps-react
    Preparing search index...

    Type Alias BaseFormSubmission

    type BaseFormSubmission = {
        externalId?: string;
        jobId?: string;
        previousFormSubmissionApprovalId?: string;
        taskCompletion?: {
            redirectUrl: string;
            task: Task;
            taskAction: TaskAction;
            taskGroup: TaskGroup | undefined;
            taskGroupInstance: TaskGroupInstance | undefined;
        };
    }
    Index

    Properties

    externalId?: string

    The id of the Forms App submitting for

    jobId?: string

    The id of the job to submit

    previousFormSubmissionApprovalId?: string

    The id of the previous form submission approval id. Only used when the form submission is in response to CLARIFICATION_REQUIRED approval.

    taskCompletion?: {
        redirectUrl: string;
        task: Task;
        taskAction: TaskAction;
        taskGroup: TaskGroup | undefined;
        taskGroupInstance: TaskGroupInstance | undefined;
    }

    Will have a value if the user was attempting to complete a scheduled task via a form submission

    Type Declaration

    • redirectUrl: string

      The URL to redirect the user to after completing the task via form submission

    • task: Task

      The task

    • taskAction: TaskAction

      The task action

    • taskGroup: TaskGroup | undefined

      The task group

    • taskGroupInstance: TaskGroupInstance | undefined

      The task group instance