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] | |
deleted | str | [optional] | |
created | str | Deprecated, use the `created_at` property instead. | [optional] |
updated | str | Deprecated, use the `updated_at` property instead. | [optional] |
external_issues | List[ExternalIssue] | [optional] |
from qaseio.models.test_case import TestCase
# TODO update the JSON string below
json = "{}"
# create an instance of TestCase from a JSON string
test_case_instance = TestCase.from_json(json)
# print the JSON string representation of the object
print TestCase.to_json()
# convert the object into a dict
test_case_dict = test_case_instance.to_dict()
# create an instance of TestCase from a dict
test_case_form_dict = test_case.from_dict(test_case_dict)