@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 (10 loc) • 460 B
text/typescript
import type { SecuritySchemeLevel } from './securitySchemeLevel';
/** Issue security scheme and it's details */
export interface CreateIssueSecuritySchemeDetails {
/** The description of the issue security scheme. */
description?: string;
/** The list of scheme levels which should be added to the security scheme. */
levels?: SecuritySchemeLevel[];
/** The name of the issue security scheme. Must be unique (case-insensitive). */
name: string;
}