| 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] |
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]