@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) • 368 B
text/typescript
/** Details of an issue level security item. */
export interface SecurityLevel {
/** The URL of the issue level security item. */
self?: string;
/** The ID of the issue level security item. */
id?: string;
/** The description of the issue level security item. */
description?: string;
/** The name of the issue level security item. */
name?: string;
}