UNPKG

@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.

12 lines (11 loc) 353 B
/** A project category. */ export interface ProjectCategory { /** The description of the project category. */ description?: string; /** The ID of the project category. */ id?: string; /** The name of the project category. Required on create, optional on update. */ name?: string; /** The URL of the project category. */ self?: string; }