Result payload for a create_index job, and response for index endpoints.
| 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 |
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)