@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.01 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 { CAPELLAAuthConfig } from './CAPELLAAuthConfig';
/**
*
* @export
* @interface Capella1
*/
export interface Capella1 {
/**
*
* @type {CAPELLAAuthConfig}
* @memberof Capella1
*/
config?: CAPELLAAuthConfig;
}
/**
* Check if a given object implements the Capella1 interface.
*/
export declare function instanceOfCapella1(value: object): value is Capella1;
export declare function Capella1FromJSON(json: any): Capella1;
export declare function Capella1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Capella1;
export declare function Capella1ToJSON(json: any): Capella1;
export declare function Capella1ToJSONTyped(value?: Capella1 | null, ignoreDiscriminator?: boolean): any;