@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
24 lines • 804 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
import { Constants } from '../../../Constants';
import { UriConverter } from '../../../custom-converters/uri-converter';
import { UpdateValue } from './update-value';
/**
* @category Model V2
*/
let UpdateUriValue = class UpdateUriValue extends UpdateValue {
constructor() {
super(Constants.UriValue);
this.uri = '';
}
};
__decorate([
JsonProperty(Constants.UriValueAsUri, UriConverter),
__metadata("design:type", Object)
], UpdateUriValue.prototype, "uri", void 0);
UpdateUriValue = __decorate([
JsonObject('UpdateUriValue'),
__metadata("design:paramtypes", [])
], UpdateUriValue);
export { UpdateUriValue };
//# sourceMappingURL=update-uri-value.js.map