/** * Sonatype Guide API * REST API into [Sonatype Guide](https://guide.sonatype.com). * * The version of the OpenAPI document: 202607 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface VulnerableMethod */ export interface VulnerableMethod { /** * * @type {string} * @memberof VulnerableMethod */ signature?: string; /** * * @type {string} * @memberof VulnerableMethod */ type?: string; /** * * @type {Array} * @memberof VulnerableMethod */ vulnerableParameters?: Array; } /** * Check if a given object implements the VulnerableMethod interface. */ export declare function instanceOfVulnerableMethod(value: object): value is VulnerableMethod; export declare function VulnerableMethodFromJSON(json: any): VulnerableMethod; export declare function VulnerableMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): VulnerableMethod; export declare function VulnerableMethodToJSON(json: any): VulnerableMethod; export declare function VulnerableMethodToJSONTyped(value?: VulnerableMethod | null, ignoreDiscriminator?: boolean): any;