UNPKG

@bitmovin/api-sdk

Version:

Bitmovin JS/TS API SDK

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