/** * 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 CurationSetDeleteSchema */ export interface CurationSetDeleteSchema { /** * Name of the deleted curation set * @type {string} * @memberof CurationSetDeleteSchema */ name: string; } /** * Check if a given object implements the CurationSetDeleteSchema interface. */ export declare function instanceOfCurationSetDeleteSchema(value: object): value is CurationSetDeleteSchema; export declare function CurationSetDeleteSchemaFromJSON(json: any): CurationSetDeleteSchema; export declare function CurationSetDeleteSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurationSetDeleteSchema; export declare function CurationSetDeleteSchemaToJSON(json: any): CurationSetDeleteSchema; export declare function CurationSetDeleteSchemaToJSONTyped(value?: CurationSetDeleteSchema | null, ignoreDiscriminator?: boolean): any;