@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.02 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 { ONEDRIVEAuthConfig } from './ONEDRIVEAuthConfig';
/**
*
* @export
* @interface OneDrive1
*/
export interface OneDrive1 {
/**
*
* @type {ONEDRIVEAuthConfig}
* @memberof OneDrive1
*/
config?: ONEDRIVEAuthConfig;
}
/**
* Check if a given object implements the OneDrive1 interface.
*/
export declare function instanceOfOneDrive1(value: object): value is OneDrive1;
export declare function OneDrive1FromJSON(json: any): OneDrive1;
export declare function OneDrive1FromJSONTyped(json: any, ignoreDiscriminator: boolean): OneDrive1;
export declare function OneDrive1ToJSON(json: any): OneDrive1;
export declare function OneDrive1ToJSONTyped(value?: OneDrive1 | null, ignoreDiscriminator?: boolean): any;