@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.14 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.
*/
/**
* Configuration for Dropbox (Legacy) connector
* @export
* @interface DROPBOXConfig
*/
export interface DROPBOXConfig {
/**
* Read from these folders (optional). Example: Enter Path: /exampleFolder/subFolder
* @type {Array<string>}
* @memberof DROPBOXConfig
*/
pathPrefix?: Array<string>;
}
/**
* Check if a given object implements the DROPBOXConfig interface.
*/
export declare function instanceOfDROPBOXConfig(value: object): value is DROPBOXConfig;
export declare function DROPBOXConfigFromJSON(json: any): DROPBOXConfig;
export declare function DROPBOXConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DROPBOXConfig;
export declare function DROPBOXConfigToJSON(json: any): DROPBOXConfig;
export declare function DROPBOXConfigToJSONTyped(value?: DROPBOXConfig | null, ignoreDiscriminator?: boolean): any;