UNPKG

@kaltura-ng/kaltura-client

Version:
38 lines 2.05 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 { KalturaTypesFactory } from '../kaltura-types-factory'; import { KalturaString } from './KalturaString'; import { KalturaStringValue } from './KalturaStringValue'; import { KalturaEventNotificationParameter } from './KalturaEventNotificationParameter'; var KalturaEventNotificationArrayParameter = (function (_super) { __extends(KalturaEventNotificationArrayParameter, _super); function KalturaEventNotificationArrayParameter(data) { var _this = _super.call(this, data) || this; if (typeof _this.values === 'undefined') _this.values = []; if (typeof _this.allowedValues === 'undefined') _this.allowedValues = []; return _this; } KalturaEventNotificationArrayParameter.prototype._getMetadata = function () { var result = _super.prototype._getMetadata.call(this); Object.assign(result.properties, { objectType: { type: 'c', default: 'KalturaEventNotificationArrayParameter' }, values: { type: 'a', subTypeConstructor: KalturaString, subType: 'KalturaString' }, allowedValues: { type: 'a', subTypeConstructor: KalturaStringValue, subType: 'KalturaStringValue' } }); return result; }; return KalturaEventNotificationArrayParameter; }(KalturaEventNotificationParameter)); export { KalturaEventNotificationArrayParameter }; KalturaTypesFactory.registerType('KalturaEventNotificationArrayParameter', KalturaEventNotificationArrayParameter); //# sourceMappingURL=KalturaEventNotificationArrayParameter.js.map