interface MicroflowSettings {
    $CreationOptions?: unknown;
    $ID: string;
    $Type: "Pages$MicroflowSettings";
    asynchronous: boolean;
    confirmationInfo: null | ConfirmationInfo;
    formValidations: FormValidations;
    microflow: null | string;
    parameterMappings: MicroflowParameterMapping[];
    progressBar: ProgressBarType;
    progressMessage: null | Text;
    addMicroflowParameterMapping(): Promise<MicroflowParameterMapping>;
}

Hierarchy (view full)

Properties

$CreationOptions?: unknown

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

asynchronous: boolean
confirmationInfo: null | ConfirmationInfo
formValidations: FormValidations
microflow: null | string
parameterMappings: MicroflowParameterMapping[]
progressBar: ProgressBarType
progressMessage: null | Text

Methods