@kaltura-ng/kaltura-client
Version:
Kaltura Typescript client
43 lines • 2.65 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 KalturaBaseEntryMatchAttribute = (function (_super) {
__extends(KalturaBaseEntryMatchAttribute, _super);
function KalturaBaseEntryMatchAttribute(value) {
var _this = _super.call(this) || this;
_this._value = value + '';
return _this;
}
KalturaBaseEntryMatchAttribute.prototype.equals = function (obj) {
return obj && obj.toString() === this._value;
};
KalturaBaseEntryMatchAttribute.prototype.toString = function () {
return this._value;
};
KalturaBaseEntryMatchAttribute.adminTags = new KalturaBaseEntryMatchAttribute('adminTags');
KalturaBaseEntryMatchAttribute.categoriesIds = new KalturaBaseEntryMatchAttribute('categoriesIds');
KalturaBaseEntryMatchAttribute.creatorId = new KalturaBaseEntryMatchAttribute('creatorId');
KalturaBaseEntryMatchAttribute.description = new KalturaBaseEntryMatchAttribute('description');
KalturaBaseEntryMatchAttribute.groupId = new KalturaBaseEntryMatchAttribute('groupId');
KalturaBaseEntryMatchAttribute.id = new KalturaBaseEntryMatchAttribute('id');
KalturaBaseEntryMatchAttribute._name = new KalturaBaseEntryMatchAttribute('name');
KalturaBaseEntryMatchAttribute.referenceId = new KalturaBaseEntryMatchAttribute('referenceId');
KalturaBaseEntryMatchAttribute.replacedEntryId = new KalturaBaseEntryMatchAttribute('replacedEntryId');
KalturaBaseEntryMatchAttribute.replacingEntryId = new KalturaBaseEntryMatchAttribute('replacingEntryId');
KalturaBaseEntryMatchAttribute.searchText = new KalturaBaseEntryMatchAttribute('searchText');
KalturaBaseEntryMatchAttribute.tags = new KalturaBaseEntryMatchAttribute('tags');
KalturaBaseEntryMatchAttribute.userId = new KalturaBaseEntryMatchAttribute('userId');
return KalturaBaseEntryMatchAttribute;
}(KalturaObjectBase));
export { KalturaBaseEntryMatchAttribute };
KalturaTypesFactory.registerType('KalturaBaseEntryMatchAttribute', KalturaBaseEntryMatchAttribute);
//# sourceMappingURL=KalturaBaseEntryMatchAttribute.js.map