Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.15 KB

File metadata and controls

39 lines (30 loc) · 1.15 KB

Vulnerability

Properties

Name Type Description Notes
vendor str
product str
version str
cve_number str
severity str
source str
cvss_version str
cvss_vector str
remarks str
score float
is_unknown bool [optional] [default to False]

Example

from revengai.models.vulnerability import Vulnerability

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

# convert the object into a dict
vulnerability_dict = vulnerability_instance.to_dict()
# create an instance of Vulnerability from a dict
vulnerability_from_dict = Vulnerability.from_dict(vulnerability_dict)

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