@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.19 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 Turbopuffer
* @export
* @interface TURBOPUFFERAuthConfig
*/
export interface TURBOPUFFERAuthConfig {
/**
* API Key. Example: Enter your API key
* @type {string}
* @memberof TURBOPUFFERAuthConfig
*/
apiKey: string;
}
/**
* Check if a given object implements the TURBOPUFFERAuthConfig interface.
*/
export declare function instanceOfTURBOPUFFERAuthConfig(value: object): value is TURBOPUFFERAuthConfig;
export declare function TURBOPUFFERAuthConfigFromJSON(json: any): TURBOPUFFERAuthConfig;
export declare function TURBOPUFFERAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): TURBOPUFFERAuthConfig;
export declare function TURBOPUFFERAuthConfigToJSON(json: any): TURBOPUFFERAuthConfig;
export declare function TURBOPUFFERAuthConfigToJSONTyped(value?: TURBOPUFFERAuthConfig | null, ignoreDiscriminator?: boolean): any;