| Name |
Type |
Description |
Notes |
| enabled |
bool |
Enables unit tests for this application (default: true) |
|
| commands |
List[str] |
Commands to run unit tests |
|
from cloudharness_model.models.unit_tests_config import UnitTestsConfig
# TODO update the JSON string below
json = "{}"
# create an instance of UnitTestsConfig from a JSON string
unit_tests_config_instance = UnitTestsConfig.from_json(json)
# print the JSON string representation of the object
print(UnitTestsConfig.to_json())
# convert the object into a dict
unit_tests_config_dict = unit_tests_config_instance.to_dict()
# create an instance of UnitTestsConfig from a dict
unit_tests_config_from_dict = UnitTestsConfig.from_dict(unit_tests_config_dict)
[Back to Model list] [Back to API list] [Back to README]