Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

ListRetrieversResponse

Response from listing retrievers.

Properties

Name Type Description Notes
results List[RetrieverModelOutput] List of retrievers in the namespace. [optional]
total int Total number of retrievers. [optional] [default to 0]

Example

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)

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