UNPKG

@vectorize-io/vectorize-client

Version:
39 lines (38 loc) 1.29 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 CreatedDestinationConnector */ export interface CreatedDestinationConnector { /** * * @type {string} * @memberof CreatedDestinationConnector */ name: string; /** * * @type {string} * @memberof CreatedDestinationConnector */ id: string; } /** * Check if a given object implements the CreatedDestinationConnector interface. */ export declare function instanceOfCreatedDestinationConnector(value: object): value is CreatedDestinationConnector; export declare function CreatedDestinationConnectorFromJSON(json: any): CreatedDestinationConnector; export declare function CreatedDestinationConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatedDestinationConnector; export declare function CreatedDestinationConnectorToJSON(json: any): CreatedDestinationConnector; export declare function CreatedDestinationConnectorToJSONTyped(value?: CreatedDestinationConnector | null, ignoreDiscriminator?: boolean): any;