Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.1 KB

File metadata and controls

32 lines (22 loc) · 1.1 KB

ApplicationTestConfig

Properties

Name Type Description Notes
unit UnitTestsConfig
api ApiTestsConfig
e2e E2ETestsConfig

Example

from cloudharness_model.models.application_test_config import ApplicationTestConfig

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

# convert the object into a dict
application_test_config_dict = application_test_config_instance.to_dict()
# create an instance of ApplicationTestConfig from a dict
application_test_config_from_dict = ApplicationTestConfig.from_dict(application_test_config_dict)

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