API Docs for: 2.0.20133.2
Show:

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

/**
 * @module UI
 * @submodule UI Survey
 * @namespace ui.survey
 */
namespace internal.ui.survey {
    /**
     * Enum ui.survey.OfferState
     * @class OfferState
     * @static 
     */
    export namespace OfferState {
        /**
         * The offer was displayed to the user.
         * @property {string} DISPLAYED
         * @default "displayed"
         */
        export const DISPLAYED = "displayed";
        /**
         * The offer was accepted by the user.
         * @property {string} ACCEPTED
         * @default "accepted"
         */
        export const ACCEPTED = "accepted";
        /**
         * The offer was explicitly rejected by the user.
         * @property {string} REJECTED
         * @default "rejected"
         */
        export const REJECTED = "rejected";
    }
}