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) 525 B
import type { SecuritySchemeLevelMember } from './securitySchemeLevelMember'; export interface SecuritySchemeLevel { /** The description of the issue security scheme level. */ description?: string; /** Specifies whether the level is the default level. False by default. */ isDefault?: boolean; /** The list of level members which should be added to the issue security scheme level. */ members?: SecuritySchemeLevelMember[]; /** The name of the issue security scheme level. Must be unique. */ name: string; }