Cppinecone
A C++ client for the Pinecone vector database
method.hpp
Go to the documentation of this file.
1 #pragma once
7 namespace pinecone::domain
8 {
16 enum class method {
17  get,
18  post,
19  patch,
20  del
21 };
22 } // namespace pinecone::domain
method
The API methods supported by the Pinecone API.
Definition: method.hpp:16