UNPKG

@vectorize-io/vectorize-client

Version:
47 lines (46 loc) 1.4 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 { AIPlatformType } from './AIPlatformType'; import type { AIPlatformConfigSchema } from './AIPlatformConfigSchema'; /** * * @export * @interface AIPlatformSchema */ export interface AIPlatformSchema { /** * * @type {string} * @memberof AIPlatformSchema */ id: string; /** * * @type {AIPlatformType} * @memberof AIPlatformSchema */ type: AIPlatformType; /** * * @type {AIPlatformConfigSchema} * @memberof AIPlatformSchema */ config: AIPlatformConfigSchema; } /** * Check if a given object implements the AIPlatformSchema interface. */ export declare function instanceOfAIPlatformSchema(value: object): value is AIPlatformSchema; export declare function AIPlatformSchemaFromJSON(json: any): AIPlatformSchema; export declare function AIPlatformSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIPlatformSchema; export declare function AIPlatformSchemaToJSON(json: any): AIPlatformSchema; export declare function AIPlatformSchemaToJSONTyped(value?: AIPlatformSchema | null, ignoreDiscriminator?: boolean): any;