Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.67 KB

Defect.md

File metadata and controls

45 lines (36 loc) · 1.67 KB

Defect

Properties

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]

Example

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)

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