Name |
Type |
Description |
Notes |
title |
str |
|
|
description |
str |
|
[optional] |
include_all_cases |
bool |
|
[optional] |
cases |
List[int] |
|
[optional] |
is_autotest |
bool |
|
[optional] |
environment_id |
int |
|
[optional] |
milestone_id |
int |
|
[optional] |
plan_id |
int |
|
[optional] |
author_id |
int |
|
[optional] |
tags |
List[str] |
|
[optional] |
configurations |
List[int] |
|
[optional] |
custom_field |
Dict[str, str] |
A map of custom fields values (id => value) |
[optional] |
start_time |
str |
|
[optional] |
end_time |
str |
|
[optional] |
from qaseio.models.run_create import RunCreate
# TODO update the JSON string below
json = "{}"
# create an instance of RunCreate from a JSON string
run_create_instance = RunCreate.from_json(json)
# print the JSON string representation of the object
print RunCreate.to_json()
# convert the object into a dict
run_create_dict = run_create_instance.to_dict()
# create an instance of RunCreate from a dict
run_create_form_dict = run_create.from_dict(run_create_dict)
[Back to Model list] [Back to API list] [Back to README]