@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
58 lines • 3.26 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
import { KalturaObjectBase } from '../kaltura-object-base';
import { KalturaTypesFactory } from '../kaltura-types-factory';
var KalturaReportType = (function (_super) {
__extends(KalturaReportType, _super);
function KalturaReportType(value) {
var _this = _super.call(this) || this;
_this._value = value + '';
return _this;
}
KalturaReportType.prototype.equals = function (obj) {
return obj && obj.toString() === this._value;
};
KalturaReportType.prototype.toString = function () {
return this._value;
};
KalturaReportType.applications = new KalturaReportType('16');
KalturaReportType.browsers = new KalturaReportType('23');
KalturaReportType.contentContributions = new KalturaReportType('7');
KalturaReportType.contentDropoff = new KalturaReportType('2');
KalturaReportType.contentInteractions = new KalturaReportType('3');
KalturaReportType.live = new KalturaReportType('24');
KalturaReportType.mapOverlay = new KalturaReportType('4');
KalturaReportType.operatingSystem = new KalturaReportType('22');
KalturaReportType.partnerUsage = new KalturaReportType('201');
KalturaReportType.platforms = new KalturaReportType('21');
KalturaReportType.quiz = new KalturaReportType('quiz.QUIZ');
KalturaReportType.quizAggregateByQuestion = new KalturaReportType('quiz.QUIZ_AGGREGATE_BY_QUESTION');
KalturaReportType.quizUserAggregateByQuestion = new KalturaReportType('quiz.QUIZ_USER_AGGREGATE_BY_QUESTION');
KalturaReportType.quizUserPercentage = new KalturaReportType('quiz.QUIZ_USER_PERCENTAGE');
KalturaReportType.specificUserEngagement = new KalturaReportType('12');
KalturaReportType.specificUserUsage = new KalturaReportType('18');
KalturaReportType.topContent = new KalturaReportType('1');
KalturaReportType.topContributors = new KalturaReportType('5');
KalturaReportType.topCreators = new KalturaReportType('20');
KalturaReportType.topPlaybackContext = new KalturaReportType('25');
KalturaReportType.topSyndication = new KalturaReportType('6');
KalturaReportType.userContentDropoff = new KalturaReportType('14');
KalturaReportType.userContentInteractions = new KalturaReportType('15');
KalturaReportType.userEngagement = new KalturaReportType('11');
KalturaReportType.userTopContent = new KalturaReportType('13');
KalturaReportType.userUsage = new KalturaReportType('17');
KalturaReportType.varUsage = new KalturaReportType('19');
KalturaReportType.vpaasUsage = new KalturaReportType('26');
return KalturaReportType;
}(KalturaObjectBase));
export { KalturaReportType };
KalturaTypesFactory.registerType('KalturaReportType', KalturaReportType);
//# sourceMappingURL=KalturaReportType.js.map