Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
title | str | [optional] | |
actual_result | str | [optional] | |
severity | str | [optional] | |
status | str | [optional] | |
milestone_id | int | [optional] | |
custom_fields | List[CustomFieldValue] | [optional] | |
attachments | List[Attachment] | [optional] | |
resolved_at | datetime | [optional] | |
member_id | int | Deprecated, use `author_id` instead. | [optional] |
author_id | int | [optional] | |
external_data | str | [optional] | |
tags | List[TagValue] | [optional] | |
created_at | datetime | [optional] | |
updated_at | datetime | [optional] | |
created | str | Deprecated, use the `created_at` property instead. | [optional] |
updated | str | Deprecated, use the `updated_at` property instead. | [optional] |
from qaseio.models.defect import Defect
# TODO update the JSON string below
json = "{}"
# create an instance of Defect from a JSON string
defect_instance = Defect.from_json(json)
# print the JSON string representation of the object
print Defect.to_json()
# convert the object into a dict
defect_dict = defect_instance.to_dict()
# create an instance of Defect from a dict
defect_form_dict = defect.from_dict(defect_dict)