/** * 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. */ import type { ComponentDocument } from './ComponentDocument'; /** * * @export * @interface ApiSearchResponseComponentDocument */ export interface ApiSearchResponseComponentDocument { /** * * @type {{ [key: string]: { [key: string]: number; }; }} * @memberof ApiSearchResponseComponentDocument */ aggregations?: { [key: string]: { [key: string]: number; }; }; /** * * @type {Array} * @memberof ApiSearchResponseComponentDocument */ hits?: Array; /** * * @type {number} * @memberof ApiSearchResponseComponentDocument */ limit?: number; /** * * @type {number} * @memberof ApiSearchResponseComponentDocument */ offset?: number; /** * * @type {number} * @memberof ApiSearchResponseComponentDocument */ total?: number; } /** * Check if a given object implements the ApiSearchResponseComponentDocument interface. */ export declare function instanceOfApiSearchResponseComponentDocument(value: object): value is ApiSearchResponseComponentDocument; export declare function ApiSearchResponseComponentDocumentFromJSON(json: any): ApiSearchResponseComponentDocument; export declare function ApiSearchResponseComponentDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiSearchResponseComponentDocument; export declare function ApiSearchResponseComponentDocumentToJSON(json: any): ApiSearchResponseComponentDocument; export declare function ApiSearchResponseComponentDocumentToJSONTyped(value?: ApiSearchResponseComponentDocument | null, ignoreDiscriminator?: boolean): any;