/** * 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 MethodSignature */ export interface MethodSignature { /** * * @type {string} * @memberof MethodSignature */ signature?: string; /** * * @type {string} * @memberof MethodSignature */ type?: string; /** * * @type {Array} * @memberof MethodSignature */ vulnerableParameters?: Array; } /** * Check if a given object implements the MethodSignature interface. */ export declare function instanceOfMethodSignature(value: object): value is MethodSignature; export declare function MethodSignatureFromJSON(json: any): MethodSignature; export declare function MethodSignatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): MethodSignature; export declare function MethodSignatureToJSON(json: any): MethodSignature; export declare function MethodSignatureToJSONTyped(value?: MethodSignature | null, ignoreDiscriminator?: boolean): any;