/** * 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 { SecurityScheme } from './'; /** * List of security schemes. * @export * @interface SecuritySchemes */ export interface SecuritySchemes { /** * List of security schemes. * @type {Array} * @memberof SecuritySchemes */ readonly issueSecuritySchemes?: Array; } export declare function SecuritySchemesFromJSON(json: any): SecuritySchemes; export declare function SecuritySchemesFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecuritySchemes; export declare function SecuritySchemesToJSON(value?: SecuritySchemes): any;