UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.37 kB
/** * 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 { VOYAGEAuthConfig } from './VOYAGEAuthConfig'; /** * * @export * @interface Voyage */ export interface Voyage { /** * Name of the connector * @type {string} * @memberof Voyage */ name: string; /** * Must be "VOYAGE" * @type {string} * @memberof Voyage */ type: VoyageTypeEnum; /** * * @type {VOYAGEAuthConfig} * @memberof Voyage */ config: VOYAGEAuthConfig; } /** * @export */ export declare const VoyageTypeEnum: { readonly Voyage: "VOYAGE"; }; export type VoyageTypeEnum = typeof VoyageTypeEnum[keyof typeof VoyageTypeEnum]; /** * Check if a given object implements the Voyage interface. */ export declare function instanceOfVoyage(value: object): value is Voyage; export declare function VoyageFromJSON(json: any): Voyage; export declare function VoyageFromJSONTyped(json: any, ignoreDiscriminator: boolean): Voyage; export declare function VoyageToJSON(json: any): Voyage; export declare function VoyageToJSONTyped(value?: Voyage | null, ignoreDiscriminator?: boolean): any;