UNPKG

@kaltura-ng/kaltura-client

Version:
38 lines 1.89 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 { KalturaEntryServerNodeType } from './KalturaEntryServerNodeType'; import { KalturaJobData } from './KalturaJobData'; var KalturaConvertLiveSegmentJobData = (function (_super) { __extends(KalturaConvertLiveSegmentJobData, _super); function KalturaConvertLiveSegmentJobData(data) { return _super.call(this, data) || this; } KalturaConvertLiveSegmentJobData.prototype._getMetadata = function () { var result = _super.prototype._getMetadata.call(this); Object.assign(result.properties, { objectType: { type: 'c', default: 'KalturaConvertLiveSegmentJobData' }, entryId: { type: 's' }, assetId: { type: 's' }, mediaServerIndex: { type: 'es', subTypeConstructor: KalturaEntryServerNodeType, subType: 'KalturaEntryServerNodeType' }, fileIndex: { type: 'n' }, srcFilePath: { type: 's' }, destFilePath: { type: 's' }, endTime: { type: 'n' }, destDataFilePath: { type: 's' } }); return result; }; return KalturaConvertLiveSegmentJobData; }(KalturaJobData)); export { KalturaConvertLiveSegmentJobData }; KalturaTypesFactory.registerType('KalturaConvertLiveSegmentJobData', KalturaConvertLiveSegmentJobData); //# sourceMappingURL=KalturaConvertLiveSegmentJobData.js.map