@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.41 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 { NamespaceDescription } from './NamespaceDescription';
import type { Pagination } from './Pagination';
/**
*
* @export
* @interface ListNamespacesResponse
*/
export interface ListNamespacesResponse {
/**
* The list of namespaces belonging to this index.
* @type {Array<NamespaceDescription>}
* @memberof ListNamespacesResponse
*/
namespaces?: Array<NamespaceDescription>;
/**
*
* @type {Pagination}
* @memberof ListNamespacesResponse
*/
pagination?: Pagination;
}
/**
* Check if a given object implements the ListNamespacesResponse interface.
*/
export declare function instanceOfListNamespacesResponse(value: object): boolean;
export declare function ListNamespacesResponseFromJSON(json: any): ListNamespacesResponse;
export declare function ListNamespacesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListNamespacesResponse;
export declare function ListNamespacesResponseToJSON(value?: ListNamespacesResponse | null): any;