UNPKG

@vectorize-io/vectorize-client

Version:
39 lines (38 loc) 1.42 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 File Upload * @export * @interface FILEUPLOADAuthConfig */ export interface FILEUPLOADAuthConfig { /** * Path Prefix * @type {string} * @memberof FILEUPLOADAuthConfig */ pathPrefix?: string; /** * Choose files. Files uploaded to this connector can be used in pipelines to vectorize their contents. Note: files with the same name will be overwritten. * @type {Array<string>} * @memberof FILEUPLOADAuthConfig */ files?: Array<string>; } /** * Check if a given object implements the FILEUPLOADAuthConfig interface. */ export declare function instanceOfFILEUPLOADAuthConfig(value: object): value is FILEUPLOADAuthConfig; export declare function FILEUPLOADAuthConfigFromJSON(json: any): FILEUPLOADAuthConfig; export declare function FILEUPLOADAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): FILEUPLOADAuthConfig; export declare function FILEUPLOADAuthConfigToJSON(json: any): FILEUPLOADAuthConfig; export declare function FILEUPLOADAuthConfigToJSONTyped(value?: FILEUPLOADAuthConfig | null, ignoreDiscriminator?: boolean): any;