@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 934 B
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 { GCSAuthConfig } from './GCSAuthConfig';
/**
*
* @export
* @interface Gcs1
*/
export interface Gcs1 {
/**
*
* @type {GCSAuthConfig}
* @memberof Gcs1
*/
config?: GCSAuthConfig;
}
/**
* Check if a given object implements the Gcs1 interface.
*/
export declare function instanceOfGcs1(value: object): value is Gcs1;
export declare function Gcs1FromJSON(json: any): Gcs1;
export declare function Gcs1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Gcs1;
export declare function Gcs1ToJSON(json: any): Gcs1;
export declare function Gcs1ToJSONTyped(value?: Gcs1 | null, ignoreDiscriminator?: boolean): any;