Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.12 KB

File metadata and controls

29 lines (21 loc) · 1.12 KB

GetBatchResultResponse

GetBatchResultResponse returns the batch result for a test run as requested.

Properties

Name Type Description Notes
test_batch TestrunresultTestBatchResult [optional]

Example

from ri.apiclient.models.get_batch_result_response import GetBatchResultResponse

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

# convert the object into a dict
get_batch_result_response_dict = get_batch_result_response_instance.to_dict()
# create an instance of GetBatchResultResponse from a dict
get_batch_result_response_from_dict = GetBatchResultResponse.from_dict(get_batch_result_response_dict)

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