Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 997 Bytes

RunEnvironment.md

File metadata and controls

32 lines (23 loc) · 997 Bytes

RunEnvironment

Properties

Name Type Description Notes
title str [optional]
description str [optional]
slug str [optional]
host str [optional]

Example

from qaseio.models.run_environment import RunEnvironment

# TODO update the JSON string below
json = "{}"
# create an instance of RunEnvironment from a JSON string
run_environment_instance = RunEnvironment.from_json(json)
# print the JSON string representation of the object
print RunEnvironment.to_json()

# convert the object into a dict
run_environment_dict = run_environment_instance.to_dict()
# create an instance of RunEnvironment from a dict
run_environment_form_dict = run_environment.from_dict(run_environment_dict)

[Back to Model list] [Back to API list] [Back to README]