UNPKG

@vectorize-io/vectorize-client

Version:
40 lines (39 loc) 1.53 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. */ import type { CreatedAIPlatformConnector } from './CreatedAIPlatformConnector'; /** * * @export * @interface CreateAIPlatformConnectorResponse */ export interface CreateAIPlatformConnectorResponse { /** * * @type {string} * @memberof CreateAIPlatformConnectorResponse */ message: string; /** * * @type {Array<CreatedAIPlatformConnector>} * @memberof CreateAIPlatformConnectorResponse */ connectors: Array<CreatedAIPlatformConnector>; } /** * Check if a given object implements the CreateAIPlatformConnectorResponse interface. */ export declare function instanceOfCreateAIPlatformConnectorResponse(value: object): value is CreateAIPlatformConnectorResponse; export declare function CreateAIPlatformConnectorResponseFromJSON(json: any): CreateAIPlatformConnectorResponse; export declare function CreateAIPlatformConnectorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateAIPlatformConnectorResponse; export declare function CreateAIPlatformConnectorResponseToJSON(json: any): CreateAIPlatformConnectorResponse; export declare function CreateAIPlatformConnectorResponseToJSONTyped(value?: CreateAIPlatformConnectorResponse | null, ignoreDiscriminator?: boolean): any;