/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { ContentStatusAsResponse } from "../definitions/ContentStatusAsResponse"; import { VersionAsResponse } from "../definitions/VersionAsResponse"; import { BodyBulkAsResponse } from "../definitions/BodyBulkAsResponse"; import { CommentLinksAsResponse } from "../definitions/CommentLinksAsResponse"; export interface ChildrenCommentModelAsResponse { /** * ID of the comment. */ id?: string; status?: ContentStatusAsResponse; blogPostId?: string; /** * Title of the comment. */ title?: string; /** * ID of the parent comment the child comment is in. */ parentCommentId?: string; version?: VersionAsResponse; body?: BodyBulkAsResponse; _links?: CommentLinksAsResponse; } //# sourceMappingURL=ChildrenCommentModelAsResponse.d.ts.map