UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 1.02 kB
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * 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 { WEAVIATEAuthConfig } from './WEAVIATEAuthConfig'; /** * * @export * @interface Weaviate1 */ export interface Weaviate1 { /** * * @type {WEAVIATEAuthConfig} * @memberof Weaviate1 */ config?: WEAVIATEAuthConfig; } /** * Check if a given object implements the Weaviate1 interface. */ export declare function instanceOfWeaviate1(value: object): value is Weaviate1; export declare function Weaviate1FromJSON(json: any): Weaviate1; export declare function Weaviate1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Weaviate1; export declare function Weaviate1ToJSON(json: any): Weaviate1; export declare function Weaviate1ToJSONTyped(value?: Weaviate1 | null, ignoreDiscriminator?: boolean): any;