@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
95 lines (94 loc) • 2 kB
TypeScript
/**
* 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 AIPlatform
*/
export interface AIPlatform {
/**
*
* @type {string}
* @memberof AIPlatform
*/
id: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
type: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
name: string;
/**
*
* @type {{ [key: string]: any | null; }}
* @memberof AIPlatform
*/
configDoc?: {
[key: string]: any | null;
};
/**
*
* @type {string}
* @memberof AIPlatform
*/
createdAt?: string | null;
/**
*
* @type {string}
* @memberof AIPlatform
*/
createdById?: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
lastUpdatedById?: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
createdByEmail?: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
lastUpdatedByEmail?: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
errorMessage?: string;
/**
*
* @type {string}
* @memberof AIPlatform
*/
verificationStatus?: string;
}
/**
* Check if a given object implements the AIPlatform interface.
*/
export declare function instanceOfAIPlatform(value: object): value is AIPlatform;
export declare function AIPlatformFromJSON(json: any): AIPlatform;
export declare function AIPlatformFromJSONTyped(json: any, ignoreDiscriminator: boolean): AIPlatform;
export declare function AIPlatformToJSON(json: any): AIPlatform;
export declare function AIPlatformToJSONTyped(value?: AIPlatform | null, ignoreDiscriminator?: boolean): any;