API Docs for: 2.0.20156.1
Show:

File: src\internal\ui\virtualAgent\replayConfig.ts

/** 
 * @module UI 
 * @submodule UI VirtualAgent
 * @namespace ui.virtualAgent
 */
namespace internal.ui.virtualAgent {
    /**
     * Configuration for replay scenario where the agent can replay the user's trancsript
     * using the virtual agent experience
     * @class ReplayConfig
     */
    export interface ReplayConfig {
        /**
         *  User token to get access to data transcript from cantilever
         * @property {string} userToken
         */
        userToken?: string;

        /**
         * id that maps to a visit session between the user with the virtual agent.
         * @property {string} visidId
         */
        visidId?: string;

        /**
         * id that maps to an engagement that occured at a visit session. Which will be used to access the
         * transcript data if it was not provided.
         * @property {string} engagementId
         */
        engagementId?: string;
    }
}