@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 { CreateValue } from './create-value';
/**
* @category Model V2
*/
let CreateGeonameValue = class CreateGeonameValue extends CreateValue {
constructor() {
super(Constants.GeonameValue);
this.geoname = '';
}
};
__decorate([
JsonProperty(Constants.GeonameValueAsGeonameCode, String),
__metadata("design:type", Object)
], CreateGeonameValue.prototype, "geoname", void 0);
CreateGeonameValue = __decorate([
JsonObject('CreateGeonameValue'),
__metadata("design:paramtypes", [])
], CreateGeonameValue);
export { CreateGeonameValue };
//# sourceMappingURL=create-geoname-value.js.map