/** * 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 ComponentDocument */ export interface ComponentDocument { /** * * @type {boolean} * @memberof ComponentDocument */ malware?: boolean; } /** * Check if a given object implements the ComponentDocument interface. */ export declare function instanceOfComponentDocument(value: object): value is ComponentDocument; export declare function ComponentDocumentFromJSON(json: any): ComponentDocument; export declare function ComponentDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentDocument; export declare function ComponentDocumentToJSON(json: any): ComponentDocument; export declare function ComponentDocumentToJSONTyped(value?: ComponentDocument | null, ignoreDiscriminator?: boolean): any;