@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
51 lines (50 loc) • 1.64 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.
*/
/**
* Authentication configuration for OneDrive
* @export
* @interface ONEDRIVEAuthConfig
*/
export interface ONEDRIVEAuthConfig {
/**
* Client Id. Example: Enter Client Id
* @type {string}
* @memberof ONEDRIVEAuthConfig
*/
msClientId: string;
/**
* Tenant Id. Example: Enter Tenant Id
* @type {string}
* @memberof ONEDRIVEAuthConfig
*/
msTenantId: string;
/**
* Client Secret. Example: Enter Client Secret
* @type {string}
* @memberof ONEDRIVEAuthConfig
*/
msClientSecret: string;
/**
* Users. Example: Enter users emails to import files from. Example: developer@vectorize.io
* @type {Array<string>}
* @memberof ONEDRIVEAuthConfig
*/
users: Array<string>;
}
/**
* Check if a given object implements the ONEDRIVEAuthConfig interface.
*/
export declare function instanceOfONEDRIVEAuthConfig(value: object): value is ONEDRIVEAuthConfig;
export declare function ONEDRIVEAuthConfigFromJSON(json: any): ONEDRIVEAuthConfig;
export declare function ONEDRIVEAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): ONEDRIVEAuthConfig;
export declare function ONEDRIVEAuthConfigToJSON(json: any): ONEDRIVEAuthConfig;
export declare function ONEDRIVEAuthConfigToJSONTyped(value?: ONEDRIVEAuthConfig | null, ignoreDiscriminator?: boolean): any;