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.

13 lines (11 loc) 389 B
import type { PermissionHolder } from './permissionHolder'; /** Issue security level member. */ export interface SecurityLevelMember { holder?: PermissionHolder; /** The ID of the issue security level member. */ id: string; /** The ID of the issue security level. */ issueSecurityLevelId: string; /** The ID of the issue security scheme. */ issueSecuritySchemeId: string; }