API Docs for: 2.0.20133.2
Show:

File: src\internal\ui\Survey\surveyConfig.ts

/// <reference path="constants.ts" />

/**
 * @module UI
 * @submodule UI Survey
 * @namespace ui.survey
 */
namespace internal.ui.survey {

    /**
     * Configuration for survey config
     * @class SurveyConfig
     */
    export interface SurveyConfig {
        /**
         * ID for the survey to render
         * @property {string} surveyId
         */
        surveyId: string;

        /**
         * Locale to render the survey in.
         * @property {string} locale
         */
        locale: string;

        /**
         * Optional flight ID if specified.
         * @property {string} flightId
         */
        flightId?: string;

        /**
         * Optional partner context.
         * @property {any} partnerContext
         */
        partnerContext?: any;
    }
}