UNPKG

@vectorize-io/vectorize-client

Version:
95 lines (94 loc) 2.12 kB
/** * Vectorize API (Beta) * API for Vectorize services * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface SourceConnector */ export interface SourceConnector { /** * * @type {string} * @memberof SourceConnector */ id: string; /** * * @type {string} * @memberof SourceConnector */ type: string; /** * * @type {string} * @memberof SourceConnector */ name: string; /** * * @type {{ [key: string]: any | null; }} * @memberof SourceConnector */ configDoc?: { [key: string]: any | null; }; /** * * @type {string} * @memberof SourceConnector */ createdAt?: string | null; /** * * @type {string} * @memberof SourceConnector */ createdById?: string; /** * * @type {string} * @memberof SourceConnector */ lastUpdatedById?: string; /** * * @type {string} * @memberof SourceConnector */ createdByEmail?: string; /** * * @type {string} * @memberof SourceConnector */ lastUpdatedByEmail?: string; /** * * @type {string} * @memberof SourceConnector */ errorMessage?: string; /** * * @type {string} * @memberof SourceConnector */ verificationStatus?: string; } /** * Check if a given object implements the SourceConnector interface. */ export declare function instanceOfSourceConnector(value: object): value is SourceConnector; export declare function SourceConnectorFromJSON(json: any): SourceConnector; export declare function SourceConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): SourceConnector; export declare function SourceConnectorToJSON(json: any): SourceConnector; export declare function SourceConnectorToJSONTyped(value?: SourceConnector | null, ignoreDiscriminator?: boolean): any;