UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.26 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. */ /** * Authentication configuration for Google Drive (Service Account) * @export * @interface GOOGLEDRIVEAuthConfig */ export interface GOOGLEDRIVEAuthConfig { /** * Service Account JSON. Example: Enter the JSON key file for the service account * @type {string} * @memberof GOOGLEDRIVEAuthConfig */ serviceAccountJson: string; } /** * Check if a given object implements the GOOGLEDRIVEAuthConfig interface. */ export declare function instanceOfGOOGLEDRIVEAuthConfig(value: object): value is GOOGLEDRIVEAuthConfig; export declare function GOOGLEDRIVEAuthConfigFromJSON(json: any): GOOGLEDRIVEAuthConfig; export declare function GOOGLEDRIVEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): GOOGLEDRIVEAuthConfig; export declare function GOOGLEDRIVEAuthConfigToJSON(json: any): GOOGLEDRIVEAuthConfig; export declare function GOOGLEDRIVEAuthConfigToJSONTyped(value?: GOOGLEDRIVEAuthConfig | null, ignoreDiscriminator?: boolean): any;