UNPKG

@kaltura-ng/kaltura-client

Version:
60 lines 3.49 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 { KalturaConversionProfileStatus } from './KalturaConversionProfileStatus'; import { KalturaConversionProfileType } from './KalturaConversionProfileType'; import { KalturaNullableBoolean } from './KalturaNullableBoolean'; import { KalturaCropDimensions } from './KalturaCropDimensions'; import { KalturaMediaParserType } from './KalturaMediaParserType'; import { KalturaEntryReplacementOptions } from './KalturaEntryReplacementOptions'; import { KalturaObjectBase } from '../kaltura-object-base'; var KalturaConversionProfile = (function (_super) { __extends(KalturaConversionProfile, _super); function KalturaConversionProfile(data) { return _super.call(this, data) || this; } KalturaConversionProfile.prototype._getMetadata = function () { var result = _super.prototype._getMetadata.call(this); Object.assign(result.properties, { objectType: { type: 'c', default: 'KalturaConversionProfile' }, id: { type: 'n', readOnly: true }, partnerId: { type: 'n', readOnly: true }, status: { type: 'es', subTypeConstructor: KalturaConversionProfileStatus, subType: 'KalturaConversionProfileStatus' }, type: { type: 'es', subTypeConstructor: KalturaConversionProfileType, subType: 'KalturaConversionProfileType' }, name: { type: 's' }, systemName: { type: 's' }, tags: { type: 's' }, description: { type: 's' }, defaultEntryId: { type: 's' }, createdAt: { type: 'd', readOnly: true }, flavorParamsIds: { type: 's' }, isDefault: { type: 'en', subTypeConstructor: KalturaNullableBoolean, subType: 'KalturaNullableBoolean' }, isPartnerDefault: { type: 'b', readOnly: true }, cropDimensions: { type: 'o', subTypeConstructor: KalturaCropDimensions, subType: 'KalturaCropDimensions' }, clipStart: { type: 'n' }, clipDuration: { type: 'n' }, xslTransformation: { type: 's' }, storageProfileId: { type: 'n' }, mediaParserType: { type: 'es', subTypeConstructor: KalturaMediaParserType, subType: 'KalturaMediaParserType' }, calculateComplexity: { type: 'en', subTypeConstructor: KalturaNullableBoolean, subType: 'KalturaNullableBoolean' }, collectionTags: { type: 's' }, conditionalProfiles: { type: 's' }, detectGOP: { type: 'n' }, mediaInfoXslTransformation: { type: 's' }, defaultReplacementOptions: { type: 'o', subTypeConstructor: KalturaEntryReplacementOptions, subType: 'KalturaEntryReplacementOptions' } }); return result; }; return KalturaConversionProfile; }(KalturaObjectBase)); export { KalturaConversionProfile }; KalturaTypesFactory.registerType('KalturaConversionProfile', KalturaConversionProfile); //# sourceMappingURL=KalturaConversionProfile.js.map