UNPKG

@vectorize-io/vectorize-client

Version:
33 lines (32 loc) 1.17 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 Firecrawl * @export * @interface FIRECRAWLAuthConfig */ export interface FIRECRAWLAuthConfig { /** * API Key. Example: Enter your Firecrawl API Key * @type {string} * @memberof FIRECRAWLAuthConfig */ apiKey: string; } /** * Check if a given object implements the FIRECRAWLAuthConfig interface. */ export declare function instanceOfFIRECRAWLAuthConfig(value: object): value is FIRECRAWLAuthConfig; export declare function FIRECRAWLAuthConfigFromJSON(json: any): FIRECRAWLAuthConfig; export declare function FIRECRAWLAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): FIRECRAWLAuthConfig; export declare function FIRECRAWLAuthConfigToJSON(json: any): FIRECRAWLAuthConfig; export declare function FIRECRAWLAuthConfigToJSONTyped(value?: FIRECRAWLAuthConfig | null, ignoreDiscriminator?: boolean): any;