@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
21 lines (20 loc) • 672 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ConvertSccCaptionWebVttSettings = void 0;
const Mapper_1 = require("../common/Mapper");
/**
* @export
* @class ConvertSccCaptionWebVttSettings
*/
class ConvertSccCaptionWebVttSettings {
constructor(obj) {
if (!obj) {
return;
}
this.positionMode = (0, Mapper_1.map)(obj.positionMode);
this.removeFlash = (0, Mapper_1.map)(obj.removeFlash);
this.removeColor = (0, Mapper_1.map)(obj.removeColor);
}
}
exports.ConvertSccCaptionWebVttSettings = ConvertSccCaptionWebVttSettings;
exports.default = ConvertSccCaptionWebVttSettings;