@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.12 kB
TypeScript
/**
* 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.
*/
/**
* Authentication configuration for Voyage AI
* @export
* @interface VOYAGEAuthConfig
*/
export interface VOYAGEAuthConfig {
/**
* API Key. Example: Enter your Voyage AI API Key
* @type {string}
* @memberof VOYAGEAuthConfig
*/
key: string;
}
/**
* Check if a given object implements the VOYAGEAuthConfig interface.
*/
export declare function instanceOfVOYAGEAuthConfig(value: object): value is VOYAGEAuthConfig;
export declare function VOYAGEAuthConfigFromJSON(json: any): VOYAGEAuthConfig;
export declare function VOYAGEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): VOYAGEAuthConfig;
export declare function VOYAGEAuthConfigToJSON(json: any): VOYAGEAuthConfig;
export declare function VOYAGEAuthConfigToJSONTyped(value?: VOYAGEAuthConfig | null, ignoreDiscriminator?: boolean): any;