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