@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.
20 lines (18 loc) • 694 B
text/typescript
import type { AvatarUrls } from './avatarUrls';
import type { IssueTypeIssueCreateMetadata } from './issueTypeIssueCreateMetadata';
/** Details of the issue creation metadata for a project. */
export interface ProjectIssueCreateMetadata {
/** Expand options that include additional project issue create metadata details in the response. */
expand?: string;
/** The URL of the project. */
self?: string;
/** The ID of the project. */
id?: string;
/** The key of the project. */
key?: string;
/** The name of the project. */
name?: string;
avatarUrls?: AvatarUrls;
/** List of the issue types supported by the project. */
issuetypes?: IssueTypeIssueCreateMetadata[];
}