forked from MrRefactoring/jira.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.ts
33 lines (32 loc) · 953 Bytes
/
project.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import { AvatarUrls } from './avatarUrls';
/** Details about a project. */
export interface Project {
avatarUrls: AvatarUrls;
/** The ID of the project. */
id: string;
/** The key of the project. */
key: string;
/** The name of the project. */
name: string;
/** A project category. */
projectCategory: {
/** The name of the project category. */
description?: string;
/** The ID of the project category. */
id: string;
/** The description of the project category. */
name: string;
/** The URL of the project category. */
self: string;
};
/**
* The [project
* type](https://confluence.atlassian.com/x/GwiiLQ#Jiraapplicationsoverview-Productfeaturesandprojecttypes) of the
* project.
*/
projectTypeKey: 'software' | 'service_desk' | 'business' | string;
/** The URL of the project details. */
self: string;
/** Whether or not the project is simplified. */
simplified: boolean;
}