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