homebridge-lg-ac
Version:
A Homebridge plugin for controlling/monitoring LG AirConditioning device via LG ThinQ platform.
25 lines • 600 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Gateway = void 0;
class Gateway {
constructor(data) {
this.data = data;
}
get emp_base_url() {
return this.data.empTermsUri + '/';
}
get login_base_url() {
return this.data.empSpxUri + '/';
}
get thinq2_url() {
return this.data.thinq2Uri + '/';
}
get country_code() {
return this.data.countryCode;
}
get language_code() {
return this.data.languageCode;
}
}
exports.Gateway = Gateway;
//# sourceMappingURL=Gateway.js.map