/** * 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. */ import type { CurationItemCreateSchema } from './CurationItemCreateSchema.js'; /** * * @export * @interface CurationSetCreateSchema */ export interface CurationSetCreateSchema { /** * Array of curation items * @type {Array} * @memberof CurationSetCreateSchema */ items: Array; /** * Optional description for the curation set * @type {string} * @memberof CurationSetCreateSchema */ description?: string; } /** * Check if a given object implements the CurationSetCreateSchema interface. */ export declare function instanceOfCurationSetCreateSchema(value: object): value is CurationSetCreateSchema; export declare function CurationSetCreateSchemaFromJSON(json: any): CurationSetCreateSchema; export declare function CurationSetCreateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurationSetCreateSchema; export declare function CurationSetCreateSchemaToJSON(json: any): CurationSetCreateSchema; export declare function CurationSetCreateSchemaToJSONTyped(value?: CurationSetCreateSchema | null, ignoreDiscriminator?: boolean): any;