UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

28 lines (27 loc) 796 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ProgressiveMovMuxing = void 0; const Mapper_1 = require("../common/Mapper"); const Muxing_1 = require("./Muxing"); const MuxingType_1 = require("./MuxingType"); /** * @export * @class ProgressiveMovMuxing */ class ProgressiveMovMuxing extends Muxing_1.default { constructor(obj) { super(obj); /** * Discriminator property for Muxing * @type {string} * @memberof ProgressiveMovMuxing */ this.type = MuxingType_1.default.PROGRESSIVE_MOV; if (!obj) { return; } this.filename = (0, Mapper_1.map)(obj.filename); } } exports.ProgressiveMovMuxing = ProgressiveMovMuxing; exports.default = ProgressiveMovMuxing;