Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

ResultUpdate.md

File metadata and controls

35 lines (26 loc) · 1.13 KB

ResultUpdate

Properties

Name Type Description Notes
status str [optional]
time_ms int [optional]
defect bool [optional]
attachments List[str] [optional]
stacktrace str [optional]
comment str [optional]
steps List[TestStepResultCreate] [optional]

Example

from qaseio.models.result_update import ResultUpdate

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

# convert the object into a dict
result_update_dict = result_update_instance.to_dict()
# create an instance of ResultUpdate from a dict
result_update_form_dict = result_update.from_dict(result_update_dict)

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