Name | Type | Description | Notes |
---|---|---|---|
entities | List[SearchResponseAllOfResultEntities] | ||
total | int |
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)