@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
40 lines (39 loc) • 1.45 kB
TypeScript
/**
* 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.
*/
import type { CreatedSourceConnector } from './CreatedSourceConnector';
/**
*
* @export
* @interface CreateSourceConnectorResponse
*/
export interface CreateSourceConnectorResponse {
/**
*
* @type {string}
* @memberof CreateSourceConnectorResponse
*/
message: string;
/**
*
* @type {Array<CreatedSourceConnector>}
* @memberof CreateSourceConnectorResponse
*/
connectors: Array<CreatedSourceConnector>;
}
/**
* Check if a given object implements the CreateSourceConnectorResponse interface.
*/
export declare function instanceOfCreateSourceConnectorResponse(value: object): value is CreateSourceConnectorResponse;
export declare function CreateSourceConnectorResponseFromJSON(json: any): CreateSourceConnectorResponse;
export declare function CreateSourceConnectorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateSourceConnectorResponse;
export declare function CreateSourceConnectorResponseToJSON(json: any): CreateSourceConnectorResponse;
export declare function CreateSourceConnectorResponseToJSONTyped(value?: CreateSourceConnectorResponse | null, ignoreDiscriminator?: boolean): any;