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