Could be used instead of case_id
.
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] |
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)