FindingMeta

Properties

Name Type Description Notes
name str [optional]
value str [optional]

Example

from defectdojo_api_generated.models.finding_meta import FindingMeta

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

# convert the object into a dict
finding_meta_dict = finding_meta_instance.to_dict()
# create an instance of FindingMeta from a dict
finding_meta_from_dict = FindingMeta.from_dict(finding_meta_dict)

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