/** * 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. */ /** * Configuration for the voice query model * * @export * @interface VoiceQueryModelCollectionConfig */ export interface VoiceQueryModelCollectionConfig { /** * * @type {string} * @memberof VoiceQueryModelCollectionConfig */ modelName?: string; } /** * Check if a given object implements the VoiceQueryModelCollectionConfig interface. */ export declare function instanceOfVoiceQueryModelCollectionConfig(value: object): value is VoiceQueryModelCollectionConfig; export declare function VoiceQueryModelCollectionConfigFromJSON(json: any): VoiceQueryModelCollectionConfig; export declare function VoiceQueryModelCollectionConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): VoiceQueryModelCollectionConfig; export declare function VoiceQueryModelCollectionConfigToJSON(json: any): VoiceQueryModelCollectionConfig; export declare function VoiceQueryModelCollectionConfigToJSONTyped(value?: VoiceQueryModelCollectionConfig | null, ignoreDiscriminator?: boolean): any;