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