/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import * as runtime from '../runtime'; import { SecurityLevel } from '../models'; export interface GetIssueSecurityLevelRequest { id: string; } /** * no description */ export declare class IssueSecurityLevelApi extends runtime.BaseAPI { /** * Returns details of an issue security level. Use [Get issue security scheme](#api-rest-api-3-issuesecurityschemes-id-get) to obtain the IDs of issue security levels associated with the issue security scheme. This operation can be accessed anonymously. **[Permissions](#permissions) required:** None. * Get issue security level */ getIssueSecurityLevelRaw(requestParameters: GetIssueSecurityLevelRequest): Promise>; /** * Returns details of an issue security level. Use [Get issue security scheme](#api-rest-api-3-issuesecurityschemes-id-get) to obtain the IDs of issue security levels associated with the issue security scheme. This operation can be accessed anonymously. **[Permissions](#permissions) required:** None. * Get issue security level */ getIssueSecurityLevel(requestParameters: GetIssueSecurityLevelRequest): Promise; }