@esm-js/jira.js
Version:
A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.
22 lines (20 loc) • 700 B
text/typescript
import type { Date } from './date';
import type { PagedAttachment } from './pagedAttachment';
import type { RenderedValue } from './renderedValue';
import type { SelfLink } from './selfLink';
import type { User } from './user';
export interface Comment {
/** ID of the comment. */
id?: string;
/** Content of the comment. */
body?: string;
renderedBody?: RenderedValue;
author?: User;
created?: Date;
attachments?: PagedAttachment;
/** List of items that can be expanded in the response by specifying the expand query parameter. */
Expands?: string[];
/** Indicates whether the comment is public (true) or private/internal (false). */
public?: boolean;
Links?: SelfLink;
}