@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
22 lines • 708 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
import { Constants } from '../../../Constants';
import { ReadValue } from './read-value';
/**
* @category Model V2
*/
let ReadGeonameValue = class ReadGeonameValue extends ReadValue {
constructor() {
super(...arguments);
this.geoname = '';
}
};
__decorate([
JsonProperty(Constants.GeonameValueAsGeonameCode, String),
__metadata("design:type", Object)
], ReadGeonameValue.prototype, "geoname", void 0);
ReadGeonameValue = __decorate([
JsonObject('ReadGeonameValue')
], ReadGeonameValue);
export { ReadGeonameValue };
//# sourceMappingURL=read-geoname-value.js.map