Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.27 KB

File metadata and controls

36 lines (27 loc) · 1.27 KB

IndexInfoResponse

Result payload for a create_index job, and response for index endpoints.

Properties

Name Type Description Notes
columns List[str]
created_at datetime
index_name str
index_type str
metric str Distance metric this index was built with. Only present for vector indexes. [optional]
status IndexStatus
updated_at datetime

Example

from hotdata.models.index_info_response import IndexInfoResponse

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

# convert the object into a dict
index_info_response_dict = index_info_response_instance.to_dict()
# create an instance of IndexInfoResponse from a dict
index_info_response_from_dict = IndexInfoResponse.from_dict(index_info_response_dict)

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