Boomi Flow Runtime Reference Documentation
    Preparing search index...
    interface PageElementProps {
        authenticationToken: null | string;
        currentMapElementId: string;
        element: PageElement;
        execute: Execute;
        featureFlags: Record<string, boolean>;
        hasSubmitted: boolean;
        outcomes: null | Outcome[];
        selectItems: (
            __namedParameters: {
                elementId: string;
                items: ObjectData[];
                triggersPageCondition?: boolean;
            },
        ) => void;
        setErrorMessage: (errorMessage: null | string) => void;
        stateId: string;
        tenantId: string;
        updateElement: (__namedParameters: FireEventParameters) => void;
        updateObjectData: (
            __namedParameters: {
                elementId: string;
                fn?: (
                    existingProperty: ObjectDataProperty,
                    newProperty: ObjectDataProperty,
                ) => ObjectDataProperty;
                objectData: ObjectData[];
            },
        ) => void;
    }
    Index

    Properties

    authenticationToken: null | string
    currentMapElementId: string
    element: PageElement
    execute: Execute
    featureFlags: Record<string, boolean>
    hasSubmitted: boolean
    outcomes: null | Outcome[]
    selectItems: (
        __namedParameters: {
            elementId: string;
            items: ObjectData[];
            triggersPageCondition?: boolean;
        },
    ) => void
    setErrorMessage: (errorMessage: null | string) => void
    stateId: string
    tenantId: string
    updateElement: (__namedParameters: FireEventParameters) => void
    updateObjectData: (
        __namedParameters: {
            elementId: string;
            fn?: (
                existingProperty: ObjectDataProperty,
                newProperty: ObjectDataProperty,
            ) => ObjectDataProperty;
            objectData: ObjectData[];
        },
    ) => void