@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
95 lines (94 loc) • 2.24 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.
*/
/**
*
* @export
* @interface DestinationConnector
*/
export interface DestinationConnector {
/**
*
* @type {string}
* @memberof DestinationConnector
*/
id: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
type: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
name: string;
/**
*
* @type {{ [key: string]: any | null; }}
* @memberof DestinationConnector
*/
configDoc?: {
[key: string]: any | null;
};
/**
*
* @type {string}
* @memberof DestinationConnector
*/
createdAt?: string | null;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
createdById?: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
lastUpdatedById?: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
createdByEmail?: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
lastUpdatedByEmail?: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
errorMessage?: string;
/**
*
* @type {string}
* @memberof DestinationConnector
*/
verificationStatus?: string;
}
/**
* Check if a given object implements the DestinationConnector interface.
*/
export declare function instanceOfDestinationConnector(value: object): value is DestinationConnector;
export declare function DestinationConnectorFromJSON(json: any): DestinationConnector;
export declare function DestinationConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): DestinationConnector;
export declare function DestinationConnectorToJSON(json: any): DestinationConnector;
export declare function DestinationConnectorToJSONTyped(value?: DestinationConnector | null, ignoreDiscriminator?: boolean): any;