/** * 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 { ComponentDetailDocument } from './ComponentDetailDocument'; /** * * @export * @interface ApiSearchResponseComponentDetailDocument */ export interface ApiSearchResponseComponentDetailDocument { /** * * @type {{ [key: string]: { [key: string]: number; }; }} * @memberof ApiSearchResponseComponentDetailDocument */ aggregations?: { [key: string]: { [key: string]: number; }; }; /** * * @type {Array} * @memberof ApiSearchResponseComponentDetailDocument */ hits?: Array; /** * * @type {number} * @memberof ApiSearchResponseComponentDetailDocument */ limit?: number; /** * * @type {number} * @memberof ApiSearchResponseComponentDetailDocument */ offset?: number; /** * * @type {number} * @memberof ApiSearchResponseComponentDetailDocument */ total?: number; } /** * Check if a given object implements the ApiSearchResponseComponentDetailDocument interface. */ export declare function instanceOfApiSearchResponseComponentDetailDocument(value: object): value is ApiSearchResponseComponentDetailDocument; export declare function ApiSearchResponseComponentDetailDocumentFromJSON(json: any): ApiSearchResponseComponentDetailDocument; export declare function ApiSearchResponseComponentDetailDocumentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiSearchResponseComponentDetailDocument; export declare function ApiSearchResponseComponentDetailDocumentToJSON(json: any): ApiSearchResponseComponentDetailDocument; export declare function ApiSearchResponseComponentDetailDocumentToJSONTyped(value?: ApiSearchResponseComponentDetailDocument | null, ignoreDiscriminator?: boolean): any;