/** * 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 './'; /** * Details about a security scheme. * @export * @interface SecurityScheme */ export interface SecurityScheme { /** * The ID of the default security level. * @type {number} * @memberof SecurityScheme */ readonly defaultSecurityLevelId?: number; /** * * @type {Array} * @memberof SecurityScheme */ levels?: Array; /** * The description of the issue security scheme. * @type {string} * @memberof SecurityScheme */ readonly description?: string; /** * The name of the issue security scheme. * @type {string} * @memberof SecurityScheme */ readonly name?: string; /** * The ID of the issue security scheme. * @type {number} * @memberof SecurityScheme */ readonly id?: number; /** * The URL of the issue security scheme. * @type {string} * @memberof SecurityScheme */ readonly self?: string; } export declare function SecuritySchemeFromJSON(json: any): SecurityScheme; export declare function SecuritySchemeFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecurityScheme; export declare function SecuritySchemeToJSON(value?: SecurityScheme): any;