UNPKG

@dasch-swiss/dsp-js

Version:
25 lines 847 B
import { __decorate, __metadata } from "tslib"; import { JsonObject, JsonProperty } from 'json2typescript'; import { StringLiteral } from './string-literal'; /** * A request to update the comments of a child node. * * @category Model Admin */ let UpdateChildNodeCommentsRequest = class UpdateChildNodeCommentsRequest { constructor() { /** * The updated child node comments. */ this.comments = []; } }; __decorate([ JsonProperty('comments', [StringLiteral]), __metadata("design:type", Array) ], UpdateChildNodeCommentsRequest.prototype, "comments", void 0); UpdateChildNodeCommentsRequest = __decorate([ JsonObject('UpdateChildNodeCommentsRequest') ], UpdateChildNodeCommentsRequest); export { UpdateChildNodeCommentsRequest }; //# sourceMappingURL=update-child-node-comments-request.js.map