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