@bitmovin/api-sdk
Version:
Bitmovin JS/TS API SDK
22 lines (21 loc) • 798 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EncodingOutputPathsSmoothManifest = void 0;
var Mapper_1 = require("../common/Mapper");
/**
* @export
* @class EncodingOutputPathsSmoothManifest
*/
var EncodingOutputPathsSmoothManifest = /** @class */ (function () {
function EncodingOutputPathsSmoothManifest(obj) {
if (!obj) {
return;
}
this.id = (0, Mapper_1.map)(obj.id);
this.clientManifestPath = (0, Mapper_1.map)(obj.clientManifestPath);
this.serverManifestPath = (0, Mapper_1.map)(obj.serverManifestPath);
}
return EncodingOutputPathsSmoothManifest;
}());
exports.EncodingOutputPathsSmoothManifest = EncodingOutputPathsSmoothManifest;
exports.default = EncodingOutputPathsSmoothManifest;