Response from listing retrievers.
| Name | Type | Description | Notes |
|---|---|---|---|
| results | List[RetrieverModelOutput] | List of retrievers in the namespace. | [optional] |
| total | int | Total number of retrievers. | [optional] [default to 0] |
from mixpeek.models.list_retrievers_response import ListRetrieversResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ListRetrieversResponse from a JSON string
list_retrievers_response_instance = ListRetrieversResponse.from_json(json)
# print the JSON string representation of the object
print(ListRetrieversResponse.to_json())
# convert the object into a dict
list_retrievers_response_dict = list_retrievers_response_instance.to_dict()
# create an instance of ListRetrieversResponse from a dict
list_retrievers_response_from_dict = ListRetrieversResponse.from_dict(list_retrievers_response_dict)