/** * Typesense API * An open source search engine for building delightful search experiences. * * The version of the OpenAPI document: 30.0 * * * 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 DeleteDocuments200Response */ export interface DeleteDocuments200Response { /** * * @type {number} * @memberof DeleteDocuments200Response */ numDeleted: number; } /** * Check if a given object implements the DeleteDocuments200Response interface. */ export declare function instanceOfDeleteDocuments200Response(value: object): value is DeleteDocuments200Response; export declare function DeleteDocuments200ResponseFromJSON(json: any): DeleteDocuments200Response; export declare function DeleteDocuments200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteDocuments200Response; export declare function DeleteDocuments200ResponseToJSON(json: any): DeleteDocuments200Response; export declare function DeleteDocuments200ResponseToJSONTyped(value?: DeleteDocuments200Response | null, ignoreDiscriminator?: boolean): any;