Name | Type | Description | Notes |
---|---|---|---|
status | str |
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)