Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 938 Bytes

DefectResponse.md

File metadata and controls

30 lines (21 loc) · 938 Bytes

DefectResponse

Properties

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

Example

from qaseio.models.defect_response import DefectResponse

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

# convert the object into a dict
defect_response_dict = defect_response_instance.to_dict()
# create an instance of DefectResponse from a dict
defect_response_form_dict = defect_response.from_dict(defect_response_dict)

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