@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
33 lines (32 loc) • 930 B
TypeScript
/**
* 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 Vertex1
*/
export interface Vertex1 {
/**
* Configuration updates
* @type {object}
* @memberof Vertex1
*/
config?: object;
}
/**
* Check if a given object implements the Vertex1 interface.
*/
export declare function instanceOfVertex1(value: object): value is Vertex1;
export declare function Vertex1FromJSON(json: any): Vertex1;
export declare function Vertex1FromJSONTyped(json: any, ignoreDiscriminator: boolean): Vertex1;
export declare function Vertex1ToJSON(json: any): Vertex1;
export declare function Vertex1ToJSONTyped(value?: Vertex1 | null, ignoreDiscriminator?: boolean): any;