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