Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 2.05 KB

TestCaseQuery.md

File metadata and controls

54 lines (45 loc) · 2.05 KB

TestCaseQuery

Properties

Name Type Description Notes
id int [optional]
position int [optional]
title str [optional]
description str [optional]
preconditions str [optional]
postconditions str [optional]
severity int [optional]
priority int [optional]
type int [optional]
layer int [optional]
is_flaky int [optional]
behavior int [optional]
automation int [optional]
status int [optional]
milestone_id int [optional]
suite_id int [optional]
custom_fields List[CustomFieldValue] [optional]
attachments List[Attachment] [optional]
steps_type str [optional]
steps List[TestStep] [optional]
params TestCaseParams [optional]
tags List[TagValue] [optional]
member_id int Deprecated, use `author_id` instead. [optional]
author_id int [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from qaseio.models.test_case_query import TestCaseQuery

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

# convert the object into a dict
test_case_query_dict = test_case_query_instance.to_dict()
# create an instance of TestCaseQuery from a dict
test_case_query_form_dict = test_case_query.from_dict(test_case_query_dict)

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