Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 846 Bytes

DefectStatus.md

File metadata and controls

29 lines (20 loc) · 846 Bytes

DefectStatus

Properties

Name Type Description Notes
status str

Example

from qaseio.models.defect_status import DefectStatus

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

# convert the object into a dict
defect_status_dict = defect_status_instance.to_dict()
# create an instance of DefectStatus from a dict
defect_status_form_dict = defect_status.from_dict(defect_status_dict)

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