UNPKG

@dasch-swiss/dsp-js

Version:
65 lines 1.94 kB
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { StringLiteral } from './string-literal'; /** * Information about a child node. * * @category Model Admin */ let ChildNodeInfo = class ChildNodeInfo { constructor() { /** * The comments attached to the enclosing object. */ this.comments = []; /** * The IRI of the root node of the list that this node belongs to. */ this.hasRootNode = undefined; /** * The ID of the enclosing object. */ this.id = ''; /** * The labels attached to the enclosing object. */ this.labels = []; /** * The name of the enclosing object. */ this.name = undefined; /** * The position of a child node. */ this.position = undefined; } }; __decorate([ JsonProperty('comments', [StringLiteral]), __metadata("design:type", Array) ], ChildNodeInfo.prototype, "comments", void 0); __decorate([ JsonProperty('hasRootNode', String, true), __metadata("design:type", String) ], ChildNodeInfo.prototype, "hasRootNode", void 0); __decorate([ JsonProperty('id', String), __metadata("design:type", Object) ], ChildNodeInfo.prototype, "id", void 0); __decorate([ JsonProperty('labels', [StringLiteral]), __metadata("design:type", Array) ], ChildNodeInfo.prototype, "labels", void 0); __decorate([ JsonProperty('name', String, true), __metadata("design:type", String) ], ChildNodeInfo.prototype, "name", void 0); __decorate([ JsonProperty('position', Number, true), __metadata("design:type", Number) ], ChildNodeInfo.prototype, "position", void 0); ChildNodeInfo = __decorate([ JsonObject('ChildNodeInfo') ], ChildNodeInfo); export { ChildNodeInfo }; //# sourceMappingURL=child-node-info.js.map