Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.28 KB

ResultCreateCase.md

File metadata and controls

37 lines (28 loc) · 1.28 KB

ResultCreateCase

Could be used instead of case_id.

Properties

Name Type Description Notes
title str [optional]
suite_title str Nested suites should be separated with `TAB` symbol. [optional]
description str [optional]
preconditions str [optional]
postconditions str [optional]
layer str [optional]
severity str [optional]
priority str [optional]

Example

from qaseio.models.result_create_case import ResultCreateCase

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

# convert the object into a dict
result_create_case_dict = result_create_case_instance.to_dict()
# create an instance of ResultCreateCase from a dict
result_create_case_form_dict = result_create_case.from_dict(result_create_case_dict)

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