@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
25 lines • 681 B
JavaScript
import { __decorate, __metadata } from "tslib";
import { JsonObject, JsonProperty } from 'json2typescript';
import { ListNodeInfo } from './list-node-info';
/**
* A response providing a collection of lists.
*
* @category Model Admin
*/
let ListsResponse = class ListsResponse {
constructor() {
/**
* A collection of lists.
*/
this.lists = [];
}
};
__decorate([
JsonProperty('lists', [ListNodeInfo]),
__metadata("design:type", Array)
], ListsResponse.prototype, "lists", void 0);
ListsResponse = __decorate([
JsonObject('ListsResponse')
], ListsResponse);
export { ListsResponse };
//# sourceMappingURL=lists-response.js.map