UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 1.01 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 { ELASTICAuthConfig } from './ELASTICAuthConfig'; /** * * @export * @interface Elastic1 */ export interface Elastic1 { /** * * @type {ELASTICAuthConfig} * @memberof Elastic1 */ config?: ELASTICAuthConfig; } /** * Check if a given object implements the Elastic1 interface. */ export declare function instanceOfElastic1(value: object): value is Elastic1; export declare function Elastic1FromJSON(json: any): Elastic1; export declare function Elastic1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Elastic1; export declare function Elastic1ToJSON(json: any): Elastic1; export declare function Elastic1ToJSONTyped(value?: Elastic1 | null, ignoreDiscriminator?: boolean): any;