UNPKG

@vectorize-io/vectorize-client

Version:
53 lines (52 loc) 1.5 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. */ import type { WEBCRAWLERAuthConfig } from './WEBCRAWLERAuthConfig'; /** * * @export * @interface WebCrawler */ export interface WebCrawler { /** * Name of the connector * @type {string} * @memberof WebCrawler */ name: string; /** * Connector type (must be "WEB_CRAWLER") * @type {string} * @memberof WebCrawler */ type: WebCrawlerTypeEnum; /** * * @type {WEBCRAWLERAuthConfig} * @memberof WebCrawler */ config: WEBCRAWLERAuthConfig; } /** * @export */ export declare const WebCrawlerTypeEnum: { readonly WebCrawler: "WEB_CRAWLER"; }; export type WebCrawlerTypeEnum = typeof WebCrawlerTypeEnum[keyof typeof WebCrawlerTypeEnum]; /** * Check if a given object implements the WebCrawler interface. */ export declare function instanceOfWebCrawler(value: object): value is WebCrawler; export declare function WebCrawlerFromJSON(json: any): WebCrawler; export declare function WebCrawlerFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebCrawler; export declare function WebCrawlerToJSON(json: any): WebCrawler; export declare function WebCrawlerToJSONTyped(value?: WebCrawler | null, ignoreDiscriminator?: boolean): any;