Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.17 KB

DefectUpdate.md

File metadata and controls

35 lines (26 loc) · 1.17 KB

DefectUpdate

Properties

Name Type Description Notes
title str [optional]
actual_result str [optional]
severity int [optional]
milestone_id int [optional]
attachments List[str] [optional]
custom_field Dict[str, str] A map of custom fields values (id => value) [optional]
tags List[str] [optional]

Example

from qase.api_client_v1.models.defect_update import DefectUpdate

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

# convert the object into a dict
defect_update_dict = defect_update_instance.to_dict()
# create an instance of DefectUpdate from a dict
defect_update_form_dict = defect_update.from_dict(defect_update_dict)

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