UNPKG

@kaltura-ng/kaltura-client

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