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] |
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]