Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.2 KB

File metadata and controls

31 lines (23 loc) · 1.2 KB

GetCategoryResultsResponse

GetCategoryResultsResponse returns the list of summary tests as requested.

Properties

Name Type Description Notes
category_test_results List[CategoryTestResult] The list of summary test results. [optional]

Example

from ri.apiclient.models.get_category_results_response import GetCategoryResultsResponse

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

# convert the object into a dict
get_category_results_response_dict = get_category_results_response_instance.to_dict()
# create an instance of GetCategoryResultsResponse from a dict
get_category_results_response_from_dict = GetCategoryResultsResponse.from_dict(
    get_category_results_response_dict
)

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