@elshaer/homebridge-lg-thinq
Version:
A Homebridge plugin for controlling/monitoring LG ThinQ device via LG ThinQ platform.
28 lines • 671 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 thinq1_url() {
return this.data.thinq1Uri + '/';
}
get country_code() {
return this.data.countryCode;
}
get language_code() {
return this.data.languageCode;
}
}
exports.Gateway = Gateway;
//# sourceMappingURL=Gateway.js.map