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