UNPKG

@dasch-swiss/dsp-js

Version:
24 lines 846 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../../Constants'; import { IdConverter } from '../../../custom-converters/id-converter'; import { CreateValue } from './create-value'; /** * @category Model V2 */ let CreateLinkValue = class CreateLinkValue extends CreateValue { constructor() { super(Constants.LinkValue); this.linkedResourceIri = ''; } }; __decorate([ JsonProperty(Constants.LinkValueHasTargetIri, IdConverter), __metadata("design:type", Object) ], CreateLinkValue.prototype, "linkedResourceIri", void 0); CreateLinkValue = __decorate([ JsonObject('CreateLinkValue'), __metadata("design:paramtypes", []) ], CreateLinkValue); export { CreateLinkValue }; //# sourceMappingURL=create-link-value.js.map