Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
title |
str |
|
[optional] |
description |
str |
|
[optional] |
preconditions |
str |
|
[optional] |
position |
int |
|
[optional] |
cases_count |
int |
|
[optional] |
parent_id |
int |
|
[optional] |
created |
str |
Deprecated, use the `created_at` property instead. |
[optional] |
updated |
str |
Deprecated, use the `updated_at` property instead. |
[optional] |
created_at |
datetime |
|
[optional] |
updated_at |
datetime |
|
[optional] |
from qaseio.models.suite import Suite
# TODO update the JSON string below
json = "{}"
# create an instance of Suite from a JSON string
suite_instance = Suite.from_json(json)
# print the JSON string representation of the object
print Suite.to_json()
# convert the object into a dict
suite_dict = suite_instance.to_dict()
# create an instance of Suite from a dict
suite_form_dict = suite.from_dict(suite_dict)
[Back to Model list] [Back to API list] [Back to README]