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