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