UNPKG

@dasch-swiss/dsp-js

Version:
26 lines 665 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { Group } from './group'; /** * A group of Knora users. * * @category Model Admin */ let StoredGroup = class StoredGroup extends Group { constructor() { super(...arguments); /** * The ID of the enclosing object. */ this.id = ''; } }; __decorate([ JsonProperty('id', String), __metadata("design:type", Object) ], StoredGroup.prototype, "id", void 0); StoredGroup = __decorate([ JsonObject('StoredGroup') ], StoredGroup); export { StoredGroup }; //# sourceMappingURL=stored-group.js.map