ToolType

Properties

Name Type Description Notes
id int [optional] [readonly]
name str [optional]
description str [optional]

Example

from defectdojo_api_generated.models.tool_type import ToolType

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

# convert the object into a dict
tool_type_dict = tool_type_instance.to_dict()
# create an instance of ToolType from a dict
tool_type_from_dict = ToolType.from_dict(tool_type_dict)

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