/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * 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 { FinderResultHitSchema } from './FinderResultHitSchema'; /** * OpenSearch-shaped results attached to the finder record after the search runs. Hits array items carry whatever subset of the index schema was projected. * @export * @interface FinderResultsSchema */ export interface FinderResultsSchema { /** * Count of matching documents before pagination. * @type {number} * @memberof FinderResultsSchema */ total?: number; /** * * @type {Array} * @memberof FinderResultsSchema */ hits?: Array; } /** * Check if a given object implements the FinderResultsSchema interface. */ export declare function instanceOfFinderResultsSchema(value: object): value is FinderResultsSchema; export declare function FinderResultsSchemaFromJSON(json: any): FinderResultsSchema; export declare function FinderResultsSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinderResultsSchema; export declare function FinderResultsSchemaToJSON(json: any): FinderResultsSchema; export declare function FinderResultsSchemaToJSONTyped(value?: FinderResultsSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=FinderResultsSchema.d.ts.map