Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1023 Bytes

File metadata and controls

34 lines (25 loc) · 1023 Bytes

VectorStore

Properties

Name Type Description Notes
id AmenityId
created_at object
updated_at object
is_active object
merchant_id str
vector_store_id object

Example

from wallet.models.vector_store import VectorStore

# TODO update the JSON string below
json = "{}"
# create an instance of VectorStore from a JSON string
vector_store_instance = VectorStore.from_json(json)
# print the JSON string representation of the object
print VectorStore.to_json()

# convert the object into a dict
vector_store_dict = vector_store_instance.to_dict()
# create an instance of VectorStore from a dict
vector_store_form_dict = vector_store.from_dict(vector_store_dict)

[Back to Model list] [Back to API list] [Back to README]