UNPKG

@dasch-swiss/dsp-js

Version:
24 lines 804 B
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