@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.02 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.
*/
import type { PINECONEAuthConfig } from './PINECONEAuthConfig';
/**
*
* @export
* @interface Pinecone1
*/
export interface Pinecone1 {
/**
*
* @type {PINECONEAuthConfig}
* @memberof Pinecone1
*/
config?: PINECONEAuthConfig;
}
/**
* Check if a given object implements the Pinecone1 interface.
*/
export declare function instanceOfPinecone1(value: object): value is Pinecone1;
export declare function Pinecone1FromJSON(json: any): Pinecone1;
export declare function Pinecone1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Pinecone1;
export declare function Pinecone1ToJSON(json: any): Pinecone1;
export declare function Pinecone1ToJSONTyped(value?: Pinecone1 | null, ignoreDiscriminator?: boolean): any;