/** * 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 ComponentDetailDocument */ export interface ComponentDetailDocument { /** * * @type {boolean} * @memberof ComponentDetailDocument */ malware?: boolean; } /** * Check if a given object implements the ComponentDetailDocument interface. */ export declare function instanceOfComponentDetailDocument(value: object): value is ComponentDetailDocument; export declare function ComponentDetailDocumentFromJSON(json: any): ComponentDetailDocument; export declare function ComponentDetailDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentDetailDocument; export declare function ComponentDetailDocumentToJSON(json: any): ComponentDetailDocument; export declare function ComponentDetailDocumentToJSONTyped(value?: ComponentDetailDocument | null, ignoreDiscriminator?: boolean): any;