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