@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
40 lines (39 loc) • 1.33 kB
TypeScript
/**
* Pinecone Data Plane API
* Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors.
*
* The version of the OpenAPI document: 2025-04
* Contact: support@pinecone.io
*
* 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 { ImportModel } from './ImportModel';
import type { Pagination } from './Pagination';
/**
* The response for the `list_imports` operation.
* @export
* @interface ListImportsResponse
*/
export interface ListImportsResponse {
/**
*
* @type {Array<ImportModel>}
* @memberof ListImportsResponse
*/
data?: Array<ImportModel>;
/**
*
* @type {Pagination}
* @memberof ListImportsResponse
*/
pagination?: Pagination;
}
/**
* Check if a given object implements the ListImportsResponse interface.
*/
export declare function instanceOfListImportsResponse(value: object): boolean;
export declare function ListImportsResponseFromJSON(json: any): ListImportsResponse;
export declare function ListImportsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListImportsResponse;
export declare function ListImportsResponseToJSON(value?: ListImportsResponse | null): any;