/** * 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 CurationExclude */ export interface CurationExclude { /** * document id that should be excluded from the search results. * @type {string} * @memberof CurationExclude */ id: string; } /** * Check if a given object implements the CurationExclude interface. */ export declare function instanceOfCurationExclude(value: object): value is CurationExclude; export declare function CurationExcludeFromJSON(json: any): CurationExclude; export declare function CurationExcludeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurationExclude; export declare function CurationExcludeToJSON(json: any): CurationExclude; export declare function CurationExcludeToJSONTyped(value?: CurationExclude | null, ignoreDiscriminator?: boolean): any;