@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.31 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 { GROQAuthConfig } from './GROQAuthConfig';
/**
*
* @export
* @interface Groq
*/
export interface Groq {
/**
* Name of the connector
* @type {string}
* @memberof Groq
*/
name: string;
/**
* Must be "GROQ"
* @type {string}
* @memberof Groq
*/
type: GroqTypeEnum;
/**
*
* @type {GROQAuthConfig}
* @memberof Groq
*/
config: GROQAuthConfig;
}
/**
* @export
*/
export declare const GroqTypeEnum: {
readonly Groq: "GROQ";
};
export type GroqTypeEnum = typeof GroqTypeEnum[keyof typeof GroqTypeEnum];
/**
* Check if a given object implements the Groq interface.
*/
export declare function instanceOfGroq(value: object): value is Groq;
export declare function GroqFromJSON(json: any): Groq;
export declare function GroqFromJSONTyped(json: any, ignoreDiscriminator: boolean): Groq;
export declare function GroqToJSON(json: any): Groq;
export declare function GroqToJSONTyped(value?: Groq | null, ignoreDiscriminator?: boolean): any;