UNPKG

@vectorize-io/vectorize-client

Version:
35 lines (34 loc) 1.32 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 UpdateAIPlatformConnectorRequest */ export interface UpdateAIPlatformConnectorRequest { /** * * @type {{ [key: string]: any | null; }} * @memberof UpdateAIPlatformConnectorRequest */ config: { [key: string]: any | null; }; } /** * Check if a given object implements the UpdateAIPlatformConnectorRequest interface. */ export declare function instanceOfUpdateAIPlatformConnectorRequest(value: object): value is UpdateAIPlatformConnectorRequest; export declare function UpdateAIPlatformConnectorRequestFromJSON(json: any): UpdateAIPlatformConnectorRequest; export declare function UpdateAIPlatformConnectorRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAIPlatformConnectorRequest; export declare function UpdateAIPlatformConnectorRequestToJSON(json: any): UpdateAIPlatformConnectorRequest; export declare function UpdateAIPlatformConnectorRequestToJSONTyped(value?: UpdateAIPlatformConnectorRequest | null, ignoreDiscriminator?: boolean): any;