/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { Document } from './Document'; /** * JSON schema for a batch of search documents. * @export * @interface DocumentBatch */ export interface DocumentBatch { /** * The set of search documents. * @type {Array} * @memberof DocumentBatch */ documents?: Array; } /** * Check if a given object implements the DocumentBatch interface. */ export declare function instanceOfDocumentBatch(value: object): value is DocumentBatch; export declare function DocumentBatchFromJSON(json: any): DocumentBatch; export declare function DocumentBatchFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentBatch; export declare function DocumentBatchToJSON(json: any): DocumentBatch; export declare function DocumentBatchToJSONTyped(value?: DocumentBatch | null, ignoreDiscriminator?: boolean): any;