UNPKG

@dasch-swiss/dsp-js

Version:
25 lines 752 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { ListNodeInfo } from './list-node-info'; /** * A response containing information about a list. * * @category Model Admin */ let ListInfoResponse = class ListInfoResponse { constructor() { /** * Provides information about a list. */ this.listinfo = new ListNodeInfo(); } }; __decorate([ JsonProperty('listinfo', ListNodeInfo), __metadata("design:type", ListNodeInfo) ], ListInfoResponse.prototype, "listinfo", void 0); ListInfoResponse = __decorate([ JsonObject('ListInfoResponse') ], ListInfoResponse); export { ListInfoResponse }; //# sourceMappingURL=list-info-response.js.map