UNPKG

@vectorize-io/vectorize-client

Version:
95 lines (94 loc) 2.22 kB
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * 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 AIPlatformConnector */ export interface AIPlatformConnector { /** * * @type {string} * @memberof AIPlatformConnector */ id: string; /** * * @type {string} * @memberof AIPlatformConnector */ type: string; /** * * @type {string} * @memberof AIPlatformConnector */ name: string; /** * * @type {{ [key: string]: any | null; }} * @memberof AIPlatformConnector */ configDoc?: { [key: string]: any | null; }; /** * * @type {string} * @memberof AIPlatformConnector */ createdAt?: string | null; /** * * @type {string} * @memberof AIPlatformConnector */ createdById?: string; /** * * @type {string} * @memberof AIPlatformConnector */ lastUpdatedById?: string; /** * * @type {string} * @memberof AIPlatformConnector */ createdByEmail?: string; /** * * @type {string} * @memberof AIPlatformConnector */ lastUpdatedByEmail?: string; /** * * @type {string} * @memberof AIPlatformConnector */ errorMessage?: string; /** * * @type {string} * @memberof AIPlatformConnector */ verificationStatus?: string; } /** * Check if a given object implements the AIPlatformConnector interface. */ export declare function instanceOfAIPlatformConnector(value: object): value is AIPlatformConnector; export declare function AIPlatformConnectorFromJSON(json: any): AIPlatformConnector; export declare function AIPlatformConnectorFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIPlatformConnector; export declare function AIPlatformConnectorToJSON(json: any): AIPlatformConnector; export declare function AIPlatformConnectorToJSONTyped(value?: AIPlatformConnector | null, ignoreDiscriminator?: boolean): any;