Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.24 KB

VectorSearchQueryResponseItemMetadataValue.md

File metadata and controls

29 lines (20 loc) · 1.24 KB

VectorSearchQueryResponseItemMetadataValue

A nodes extra metadata.

Properties

Name Type Description Notes

Example

from wordlift_client.models.vector_search_query_response_item_metadata_value import VectorSearchQueryResponseItemMetadataValue

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

# convert the object into a dict
vector_search_query_response_item_metadata_value_dict = vector_search_query_response_item_metadata_value_instance.to_dict()
# create an instance of VectorSearchQueryResponseItemMetadataValue from a dict
vector_search_query_response_item_metadata_value_from_dict = VectorSearchQueryResponseItemMetadataValue.from_dict(vector_search_query_response_item_metadata_value_dict)

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