@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
23 lines • 766 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 UpdateGeomValue = class UpdateGeomValue extends UpdateValue {
constructor() {
super(Constants.GeomValue);
this.geometryString = '';
}
};
__decorate([
JsonProperty(Constants.GeometryValueAsGeometry, String),
__metadata("design:type", Object)
], UpdateGeomValue.prototype, "geometryString", void 0);
UpdateGeomValue = __decorate([
JsonObject('UpdateGeomValue'),
__metadata("design:paramtypes", [])
], UpdateGeomValue);
export { UpdateGeomValue };
//# sourceMappingURL=update-geom-value.js.map