Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 893 Bytes

RunResponse.md

File metadata and controls

30 lines (21 loc) · 893 Bytes

RunResponse

Properties

Name Type Description Notes
status bool [optional]
result Run [optional]

Example

from qaseio.models.run_response import RunResponse

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

# convert the object into a dict
run_response_dict = run_response_instance.to_dict()
# create an instance of RunResponse from a dict
run_response_form_dict = run_response.from_dict(run_response_dict)

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