/** * 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 ApiSearchResponse */ export interface ApiSearchResponse { /** * * @type {{ [key: string]: { [key: string]: number; }; }} * @memberof ApiSearchResponse */ aggregations?: { [key: string]: { [key: string]: number; }; }; /** * * @type {Array} * @memberof ApiSearchResponse */ hits?: Array; /** * * @type {number} * @memberof ApiSearchResponse */ limit?: number; /** * * @type {number} * @memberof ApiSearchResponse */ offset?: number; /** * * @type {number} * @memberof ApiSearchResponse */ total?: number; } /** * Check if a given object implements the ApiSearchResponse interface. */ export declare function instanceOfApiSearchResponse(value: object): value is ApiSearchResponse; export declare function ApiSearchResponseFromJSON(json: any): ApiSearchResponse; export declare function ApiSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiSearchResponse; export declare function ApiSearchResponseToJSON(json: any): ApiSearchResponse; export declare function ApiSearchResponseToJSONTyped(value?: ApiSearchResponse | null, ignoreDiscriminator?: boolean): any;