@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
44 lines • 2.88 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 KalturaEventNotificationEventType = (function (_super) {
__extends(KalturaEventNotificationEventType, _super);
function KalturaEventNotificationEventType(value) {
var _this = _super.call(this) || this;
_this._value = value + '';
return _this;
}
KalturaEventNotificationEventType.prototype.equals = function (obj) {
return obj && obj.toString() === this._value;
};
KalturaEventNotificationEventType.prototype.toString = function () {
return this._value;
};
KalturaEventNotificationEventType.batchJobStatus = new KalturaEventNotificationEventType('1');
KalturaEventNotificationEventType.integrationJobClosed = new KalturaEventNotificationEventType('integrationEventNotifications.INTEGRATION_JOB_CLOSED');
KalturaEventNotificationEventType.objectAdded = new KalturaEventNotificationEventType('2');
KalturaEventNotificationEventType.objectChanged = new KalturaEventNotificationEventType('3');
KalturaEventNotificationEventType.objectCopied = new KalturaEventNotificationEventType('4');
KalturaEventNotificationEventType.objectCreated = new KalturaEventNotificationEventType('5');
KalturaEventNotificationEventType.objectDataChanged = new KalturaEventNotificationEventType('6');
KalturaEventNotificationEventType.objectDeleted = new KalturaEventNotificationEventType('7');
KalturaEventNotificationEventType.objectErased = new KalturaEventNotificationEventType('8');
KalturaEventNotificationEventType.objectReadyForIndex = new KalturaEventNotificationEventType('13');
KalturaEventNotificationEventType.objectReadyForReplacment = new KalturaEventNotificationEventType('9');
KalturaEventNotificationEventType.objectReplaced = new KalturaEventNotificationEventType('12');
KalturaEventNotificationEventType.objectSaved = new KalturaEventNotificationEventType('10');
KalturaEventNotificationEventType.objectUpdated = new KalturaEventNotificationEventType('11');
return KalturaEventNotificationEventType;
}(KalturaObjectBase));
export { KalturaEventNotificationEventType };
KalturaTypesFactory.registerType('KalturaEventNotificationEventType', KalturaEventNotificationEventType);
//# sourceMappingURL=KalturaEventNotificationEventType.js.map