Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.12 KB

DefectCreate.md

File metadata and controls

35 lines (26 loc) · 1.12 KB

DefectCreate

Properties

Name Type Description Notes
title str
actual_result str
severity int
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 qaseio.models.defect_create import DefectCreate

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

# convert the object into a dict
defect_create_dict = defect_create_instance.to_dict()
# create an instance of DefectCreate from a dict
defect_create_form_dict = defect_create.from_dict(defect_create_dict)

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