UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 1.14 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 { RetrieveContextMessage } from './RetrieveContextMessage'; /** * * @export * @interface RetrieveContext */ export interface RetrieveContext { /** * * @type {Array<RetrieveContextMessage>} * @memberof RetrieveContext */ messages: Array<RetrieveContextMessage>; } /** * Check if a given object implements the RetrieveContext interface. */ export declare function instanceOfRetrieveContext(value: object): value is RetrieveContext; export declare function RetrieveContextFromJSON(json: any): RetrieveContext; export declare function RetrieveContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): RetrieveContext; export declare function RetrieveContextToJSON(json: any): RetrieveContext; export declare function RetrieveContextToJSONTyped(value?: RetrieveContext | null, ignoreDiscriminator?: boolean): any;