@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 1.31 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 Web Crawler
* @export
* @interface WEBCRAWLERAuthConfig
*/
export interface WEBCRAWLERAuthConfig {
/**
* Seed URL(s). Add one or more seed URLs to crawl. The crawler will start from these URLs and follow links to other pages.. Example: (e.g. https://example.com)
* @type {Array<string>}
* @memberof WEBCRAWLERAuthConfig
*/
seedUrls: Array<string>;
}
/**
* Check if a given object implements the WEBCRAWLERAuthConfig interface.
*/
export declare function instanceOfWEBCRAWLERAuthConfig(value: object): value is WEBCRAWLERAuthConfig;
export declare function WEBCRAWLERAuthConfigFromJSON(json: any): WEBCRAWLERAuthConfig;
export declare function WEBCRAWLERAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): WEBCRAWLERAuthConfig;
export declare function WEBCRAWLERAuthConfigToJSON(json: any): WEBCRAWLERAuthConfig;
export declare function WEBCRAWLERAuthConfigToJSONTyped(value?: WEBCRAWLERAuthConfig | null, ignoreDiscriminator?: boolean): any;