Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 1.99 KB

TestCasebulkCasesInner.md

File metadata and controls

51 lines (42 loc) · 1.99 KB

TestCasebulkCasesInner

Properties

Name Type Description Notes
description str [optional]
preconditions str [optional]
postconditions str [optional]
title str
severity int [optional]
priority int [optional]
behavior int [optional]
type int [optional]
layer int [optional]
is_flaky int [optional]
author_id int [optional]
suite_id int [optional]
milestone_id int [optional]
automation int [optional]
status int [optional]
attachments List[str] A list of Attachment hashes. [optional]
steps List[TestStepCreate] [optional]
tags List[str] [optional]
params Dict[str, List[str]] [optional]
custom_field Dict[str, str] A map of custom fields values (id => value) [optional]
created_at str [optional]
updated_at str [optional]
id int [optional]

Example

from qaseio.models.test_casebulk_cases_inner import TestCasebulkCasesInner

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

# convert the object into a dict
test_casebulk_cases_inner_dict = test_casebulk_cases_inner_instance.to_dict()
# create an instance of TestCasebulkCasesInner from a dict
test_casebulk_cases_inner_form_dict = test_casebulk_cases_inner.from_dict(test_casebulk_cases_inner_dict)

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