@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.06 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.
*/
import type { WEBCRAWLERAuthConfig } from './WEBCRAWLERAuthConfig';
/**
*
* @export
* @interface WebCrawler1
*/
export interface WebCrawler1 {
/**
*
* @type {WEBCRAWLERAuthConfig}
* @memberof WebCrawler1
*/
config?: WEBCRAWLERAuthConfig;
}
/**
* Check if a given object implements the WebCrawler1 interface.
*/
export declare function instanceOfWebCrawler1(value: object): value is WebCrawler1;
export declare function WebCrawler1FromJSON(json: any): WebCrawler1;
export declare function WebCrawler1FromJSONTyped(json: any, ignoreDiscriminator: boolean): WebCrawler1;
export declare function WebCrawler1ToJSON(json: any): WebCrawler1;
export declare function WebCrawler1ToJSONTyped(value?: WebCrawler1 | null, ignoreDiscriminator?: boolean): any;