esios-api-client
Version:
Another ESIOS api client
12 lines (11 loc) • 342 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.IndicatorValue = void 0;
class IndicatorValue {
constructor(json) {
this.value = json.value;
this.dates = { utc: json.datetime_utc, local: json.datetime };
this.geo = json.geo_id;
}
}
exports.IndicatorValue = IndicatorValue;
;