@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
26 lines • 665 B
JavaScript
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