@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
34 lines (33 loc) • 1.42 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 { DestinationConnector } from './DestinationConnector';
/**
*
* @export
* @interface GetDestinationConnectors200Response
*/
export interface GetDestinationConnectors200Response {
/**
*
* @type {Array<DestinationConnector>}
* @memberof GetDestinationConnectors200Response
*/
destinationConnectors: Array<DestinationConnector>;
}
/**
* Check if a given object implements the GetDestinationConnectors200Response interface.
*/
export declare function instanceOfGetDestinationConnectors200Response(value: object): value is GetDestinationConnectors200Response;
export declare function GetDestinationConnectors200ResponseFromJSON(json: any): GetDestinationConnectors200Response;
export declare function GetDestinationConnectors200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetDestinationConnectors200Response;
export declare function GetDestinationConnectors200ResponseToJSON(json: any): GetDestinationConnectors200Response;
export declare function GetDestinationConnectors200ResponseToJSONTyped(value?: GetDestinationConnectors200Response | null, ignoreDiscriminator?: boolean): any;