@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
56 lines (55 loc) • 2.08 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 Google Drive OAuth connector
* @export
* @interface GOOGLEDRIVEOAUTHConfig
*/
export interface GOOGLEDRIVEOAUTHConfig {
/**
* File Extensions
* @type {Array<string>}
* @memberof GOOGLEDRIVEOAUTHConfig
*/
fileExtensions: GOOGLEDRIVEOAUTHConfigFileExtensionsEnum;
/**
* Polling Interval (seconds). Example: Enter polling interval in seconds
* @type {number}
* @memberof GOOGLEDRIVEOAUTHConfig
*/
idleTime?: number;
}
/**
* @export
*/
export declare const GOOGLEDRIVEOAUTHConfigFileExtensionsEnum: {
readonly Pdf: "pdf";
readonly Docdocxgdocodtrtfepub: "doc,docx,gdoc,odt,rtf,epub";
readonly Pptpptxgslides: "ppt,pptx,gslides";
readonly Xlsxlsxgsheetsods: "xls,xlsx,gsheets,ods";
readonly Emlmsg: "eml,msg";
readonly Txt: "txt";
readonly Htmlhtm: "html,htm";
readonly Md: "md";
readonly Jpgjpegpngwebpsvggif: "jpg,jpeg,png,webp,svg,gif";
readonly Json: "json";
readonly Csv: "csv";
};
export type GOOGLEDRIVEOAUTHConfigFileExtensionsEnum = typeof GOOGLEDRIVEOAUTHConfigFileExtensionsEnum[keyof typeof GOOGLEDRIVEOAUTHConfigFileExtensionsEnum];
/**
* Check if a given object implements the GOOGLEDRIVEOAUTHConfig interface.
*/
export declare function instanceOfGOOGLEDRIVEOAUTHConfig(value: object): value is GOOGLEDRIVEOAUTHConfig;
export declare function GOOGLEDRIVEOAUTHConfigFromJSON(json: any): GOOGLEDRIVEOAUTHConfig;
export declare function GOOGLEDRIVEOAUTHConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): GOOGLEDRIVEOAUTHConfig;
export declare function GOOGLEDRIVEOAUTHConfigToJSON(json: any): GOOGLEDRIVEOAUTHConfig;
export declare function GOOGLEDRIVEOAUTHConfigToJSONTyped(value?: GOOGLEDRIVEOAUTHConfig | null, ignoreDiscriminator?: boolean): any;