/** * 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 { SecurityLevel } from './'; /** * List of issue level security items in a project. * @export * @interface ProjectIssueSecurityLevels */ export interface ProjectIssueSecurityLevels { /** * Issue level security items list. * @type {Array} * @memberof ProjectIssueSecurityLevels */ readonly levels: Array; } export declare function ProjectIssueSecurityLevelsFromJSON(json: any): ProjectIssueSecurityLevels; export declare function ProjectIssueSecurityLevelsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectIssueSecurityLevels; export declare function ProjectIssueSecurityLevelsToJSON(value?: ProjectIssueSecurityLevels): any;