/*! * Copyright Adaptavist 2022 (c) All rights reserved */ export interface CommentBodyWrite { /** * Type of content representation used for the value field. */ representation?: "storage" | "atlas_doc_format" | "wiki"; /** * Body of the comment, in the format found in the representation field. */ value?: string; } //# sourceMappingURL=CommentBodyWrite.d.ts.map