UNPKG

@dasch-swiss/dsp-js

Version:
29 lines 1.24 kB
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Constants } from '../../Constants'; import { IdConverter } from '../../custom-converters/id-converter'; import { UpdateEntityCommentOrLabel } from './update-entity-comment-or-label'; /** * @category Model V2 */ let UpdateResourcePropertyGuiElement = class UpdateResourcePropertyGuiElement extends UpdateEntityCommentOrLabel { constructor() { super(Constants.ObjectProperty); this.guiElement = undefined; this.guiAttributes = undefined; } }; __decorate([ JsonProperty(Constants.GuiElement, IdConverter, true), __metadata("design:type", String) ], UpdateResourcePropertyGuiElement.prototype, "guiElement", void 0); __decorate([ JsonProperty(Constants.GuiAttribute, [String], true), __metadata("design:type", Array) ], UpdateResourcePropertyGuiElement.prototype, "guiAttributes", void 0); UpdateResourcePropertyGuiElement = __decorate([ JsonObject('UpdateResourcePropertyGuiElement'), __metadata("design:paramtypes", []) ], UpdateResourcePropertyGuiElement); export { UpdateResourcePropertyGuiElement }; //# sourceMappingURL=update-resource-property-gui-element.js.map