Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

SearchResponseAllOfResult.md

File metadata and controls

30 lines (21 loc) · 1.11 KB

SearchResponseAllOfResult

Properties

Name Type Description Notes
entities List[SearchResponseAllOfResultEntities]
total int

Example

from qaseio.models.search_response_all_of_result import SearchResponseAllOfResult

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

# convert the object into a dict
search_response_all_of_result_dict = search_response_all_of_result_instance.to_dict()
# create an instance of SearchResponseAllOfResult from a dict
search_response_all_of_result_form_dict = search_response_all_of_result.from_dict(search_response_all_of_result_dict)

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