vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface OmniScriptDefinition

    interface OmniScriptDefinition {
        bHasAttachment: boolean;
        bpLang: string;
        bpSubType: string;
        bpType: string;
        bpVersion: number;
        bReusable: boolean;
        children: OmniScriptElementDefinition[];
        cusPL: Record<string, OmniScriptPickListOption[] | "">;
        customJS: string;
        depCusPL: Record<string, OmniScriptPickListOption[] | "">;
        depSOPL: object;
        dMap: object;
        error: string;
        errorMsg: string;
        labelKeyMap: Record<string, string>;
        labelMap: Record<string, string | null>;
        lwcId: string;
        prefillJSON: string;
        propSetMap: OmniScriptProperties;
        response: null;
        rMap: object;
        RPBundle: string;
        sobjPL: Record<string, OmniScriptPickListOption[] | "">;
        sOmniScriptId: string;
        templateList: string[];
        testTemplates: string;
        timeStamp: string;
        userCurrencyCode: string;
        userId: string;
        userName: string;
        userProfile: string;
        userTimeZone: null;
    }
    Index

    Properties

    bHasAttachment: boolean
    bpLang: string
    bpSubType: string
    bpType: string
    bpVersion: number
    bReusable: boolean
    cusPL: Record<string, OmniScriptPickListOption[] | "">

    Record keyed by the name of the custom APEX method that loads the picklist values. Custom APEX classes listed in this array will be invoked at the script start to load picklist values instead of caching the values in the script definition at design time.

    {
    'myClass.getPicklistValues': ''
    }
    customJS: string
    depCusPL: Record<string, OmniScriptPickListOption[] | "">

    Record keyed by the name of the custom APEX method that loads the picklist values. Custom APEX classes listed in this array will be invoked at the script start to load picklist values instead of caching the values in the script definition at design time.

    {
    'Select1/myClass.getDependentPicklistValues': ''
    }
    depSOPL: object
    dMap: object
    error: string
    errorMsg: string
    labelKeyMap: Record<string, string>

    Maps labels by their key to their resolved value based on the user activation language

    labelMap: Record<string, string | null>
    lwcId: string
    prefillJSON: string
    response: null
    rMap: object
    RPBundle: string
    sobjPL: Record<string, OmniScriptPickListOption[] | "">

    Picklist values by SObject type, key is the SObject.Field, value is an array of possible picklist values

    sOmniScriptId: string
    templateList: string[]
    testTemplates: string
    timeStamp: string
    userCurrencyCode: string
    userId: string
    userName: string
    userProfile: string
    userTimeZone: null