| Name | Type | Description | Notes |
|---|---|---|---|
| session_id | str | [optional] [readonly] | |
| test_interface | List[Interface] | [optional] [readonly] | |
| token | str | [optional] [readonly] |
from cyperf.models.selected_env import SelectedEnv
# TODO update the JSON string below
json = "{}"
# create an instance of SelectedEnv from a JSON string
selected_env_instance = SelectedEnv.from_json(json)
# print the JSON string representation of the object
print(SelectedEnv.to_json())
# convert the object into a dict
selected_env_dict = selected_env_instance.to_dict()
# create an instance of SelectedEnv from a dict
selected_env_from_dict = SelectedEnv.from_dict(selected_env_dict)