FindingProdType

Properties

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

Example

from defectdojo_api_generated.models.finding_prod_type import FindingProdType

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

# convert the object into a dict
finding_prod_type_dict = finding_prod_type_instance.to_dict()
# create an instance of FindingProdType from a dict
finding_prod_type_from_dict = FindingProdType.from_dict(finding_prod_type_dict)

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