UNPKG

@dasch-swiss/dsp-js

Version:
25 lines 684 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { ReadGroup } from './read-group'; /** * A response providing a collection of groups. * * @category Model Admin */ let GroupsResponse = class GroupsResponse { constructor() { /** * A collection of groups. */ this.groups = []; } }; __decorate([ JsonProperty('groups', [ReadGroup]), __metadata("design:type", Array) ], GroupsResponse.prototype, "groups", void 0); GroupsResponse = __decorate([ JsonObject('GroupsResponse') ], GroupsResponse); export { GroupsResponse }; //# sourceMappingURL=groups-response.js.map