UNPKG

@kaltura-ng/kaltura-client

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