UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 1.08 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 { SINGLESTOREAuthConfig } from './SINGLESTOREAuthConfig'; /** * * @export * @interface Singlestore1 */ export interface Singlestore1 { /** * * @type {SINGLESTOREAuthConfig} * @memberof Singlestore1 */ config?: SINGLESTOREAuthConfig; } /** * Check if a given object implements the Singlestore1 interface. */ export declare function instanceOfSinglestore1(value: object): value is Singlestore1; export declare function Singlestore1FromJSON(json: any): Singlestore1; export declare function Singlestore1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Singlestore1; export declare function Singlestore1ToJSON(json: any): Singlestore1; export declare function Singlestore1ToJSONTyped(value?: Singlestore1 | null, ignoreDiscriminator?: boolean): any;