UNPKG

@dasch-swiss/dsp-js

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