Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

SuiteListResponseAllOfResult.md

File metadata and controls

32 lines (23 loc) · 1.21 KB

SuiteListResponseAllOfResult

Properties

Name Type Description Notes
total int [optional]
filtered int [optional]
count int [optional]
entities List[Suite] [optional]

Example

from qase.api_client_v1.models.suite_list_response_all_of_result import SuiteListResponseAllOfResult

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

# convert the object into a dict
suite_list_response_all_of_result_dict = suite_list_response_all_of_result_instance.to_dict()
# create an instance of SuiteListResponseAllOfResult from a dict
suite_list_response_all_of_result_form_dict = suite_list_response_all_of_result.from_dict(suite_list_response_all_of_result_dict)

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