/** * 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. */ /** * Details of an issue level security item. * @export * @interface SecurityLevel */ export interface SecurityLevel { /** * The description of the issue level security item. * @type {string} * @memberof SecurityLevel */ readonly description?: string; /** * The name of the issue level security item. * @type {string} * @memberof SecurityLevel */ readonly name?: string; /** * The URL of the issue level security item. * @type {string} * @memberof SecurityLevel */ readonly self?: string; /** * The ID of the issue level security item. * @type {string} * @memberof SecurityLevel */ readonly id?: string; } export declare function SecurityLevelFromJSON(json: any): SecurityLevel; export declare function SecurityLevelFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecurityLevel; export declare function SecurityLevelToJSON(value?: SecurityLevel): any;