Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.52 KB

QqlDefect.md

File metadata and controls

43 lines (34 loc) · 1.52 KB

QqlDefect

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

Example

from qaseio.models.qql_defect import QqlDefect

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

# convert the object into a dict
qql_defect_dict = qql_defect_instance.to_dict()
# create an instance of QqlDefect from a dict
qql_defect_form_dict = qql_defect.from_dict(qql_defect_dict)

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