UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

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