@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.11 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 OpenAI
* @export
* @interface OPENAIAuthConfig
*/
export interface OPENAIAuthConfig {
/**
* API Key. Example: Enter your OpenAI API Key
* @type {string}
* @memberof OPENAIAuthConfig
*/
key: string;
}
/**
* Check if a given object implements the OPENAIAuthConfig interface.
*/
export declare function instanceOfOPENAIAuthConfig(value: object): value is OPENAIAuthConfig;
export declare function OPENAIAuthConfigFromJSON(json: any): OPENAIAuthConfig;
export declare function OPENAIAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): OPENAIAuthConfig;
export declare function OPENAIAuthConfigToJSON(json: any): OPENAIAuthConfig;
export declare function OPENAIAuthConfigToJSONTyped(value?: OPENAIAuthConfig | null, ignoreDiscriminator?: boolean): any;