PatchedTestTypeRequest

Properties

Name Type Description Notes
static_tool bool [optional]
dynamic_tool bool [optional]
active bool [optional]

Example

from defectdojo_api_generated.models.patched_test_type_request import PatchedTestTypeRequest

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

# convert the object into a dict
patched_test_type_request_dict = patched_test_type_request_instance.to_dict()
# create an instance of PatchedTestTypeRequest from a dict
patched_test_type_request_from_dict = PatchedTestTypeRequest.from_dict(patched_test_type_request_dict)

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