Name |
Type |
Description |
Notes |
description |
str |
|
[optional] |
preconditions |
str |
|
[optional] |
postconditions |
str |
|
[optional] |
title |
str |
|
[optional] |
severity |
int |
|
[optional] |
priority |
int |
|
[optional] |
behavior |
int |
|
[optional] |
type |
int |
|
[optional] |
layer |
int |
|
[optional] |
is_flaky |
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] |
from qaseio.models.test_case_update import TestCaseUpdate
# TODO update the JSON string below
json = "{}"
# create an instance of TestCaseUpdate from a JSON string
test_case_update_instance = TestCaseUpdate.from_json(json)
# print the JSON string representation of the object
print TestCaseUpdate.to_json()
# convert the object into a dict
test_case_update_dict = test_case_update_instance.to_dict()
# create an instance of TestCaseUpdate from a dict
test_case_update_form_dict = test_case_update.from_dict(test_case_update_dict)
[Back to Model list] [Back to API list] [Back to README]