@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.
25 lines (23 loc) • 728 B
text/typescript
import type { AvatarUrls } from './avatarUrls';
import type { UpdatedProjectCategory } from './updatedProjectCategory';
/** Details about a project. */
export interface ProjectDetails {
avatarUrls?: AvatarUrls;
/** The ID of the project. */
id?: string;
/** The key of the project. */
key?: string;
/** The name of the project. */
name?: string;
projectCategory?: UpdatedProjectCategory;
/**
* The [project
* type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the
* project.
*/
projectTypeKey?: string;
/** The URL of the project details. */
self?: string;
/** Whether or not the project is simplified. */
simplified?: boolean;
}