/** * 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 { PresetUpsertSchemaValue } from './PresetUpsertSchemaValue.js'; /** * * @export * @interface PresetUpsertSchema */ export interface PresetUpsertSchema { /** * * @type {PresetUpsertSchemaValue} * @memberof PresetUpsertSchema */ value: PresetUpsertSchemaValue; } /** * Check if a given object implements the PresetUpsertSchema interface. */ export declare function instanceOfPresetUpsertSchema(value: object): value is PresetUpsertSchema; export declare function PresetUpsertSchemaFromJSON(json: any): PresetUpsertSchema; export declare function PresetUpsertSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PresetUpsertSchema; export declare function PresetUpsertSchemaToJSON(json: any): PresetUpsertSchema; export declare function PresetUpsertSchemaToJSONTyped(value?: PresetUpsertSchema | null, ignoreDiscriminator?: boolean): any;