API Docs for: 2.0.20133.2
Show:

File: src\internal\ui\virtualAgent\content\constants.ts

/**
 * @module UI
 * @submodule UI VirtualAgent
 * @namespace ui.virtualAgent.content
 */
namespace internal.ui.virtualAgent.content {
    /**
     * Enum ui.virtualAgent.content.ExtensionType
     * @class ExtensionType
     * @static 
     */
    export namespace ExtensionType {
        /**
          * Default: leads to MSEG assisted support modalities (assisted support)
          * @property {string} DEFAULT
          * @default "default"
          */
        export const DEFAULT = "default";

        /**
          * Provide override for next flow action
          * @property {string} LINK
          * @default "link"
          */
        export const LINK = "link";
        /**
          * No next flow action present (can customize the main interface)
          * @property {string} DISABLED
          * @default "disabled"
          */
        export const DISABLED = "disabled";
        /**
          * Event gets raised and parent side decides what the next flow action can be
          * @property {string} CUSTOM
          * @default "custom"
          */
        export const CUSTOM = "custom";
    }
}