/** * 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 CurationItemDeleteSchema */ export interface CurationItemDeleteSchema { /** * ID of the deleted curation item * @type {string} * @memberof CurationItemDeleteSchema */ id: string; } /** * Check if a given object implements the CurationItemDeleteSchema interface. */ export declare function instanceOfCurationItemDeleteSchema(value: object): value is CurationItemDeleteSchema; export declare function CurationItemDeleteSchemaFromJSON(json: any): CurationItemDeleteSchema; export declare function CurationItemDeleteSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurationItemDeleteSchema; export declare function CurationItemDeleteSchemaToJSON(json: any): CurationItemDeleteSchema; export declare function CurationItemDeleteSchemaToJSONTyped(value?: CurationItemDeleteSchema | null, ignoreDiscriminator?: boolean): any;