Name |
Type |
Description |
Notes |
arch |
str |
|
[optional] |
detection |
str |
|
[optional] |
fixed_version |
str |
|
[optional] |
from vulncheck_sdk.models.purls_vulnerability import PurlsVulnerability
# TODO update the JSON string below
json = "{}"
# create an instance of PurlsVulnerability from a JSON string
purls_vulnerability_instance = PurlsVulnerability.from_json(json)
# print the JSON string representation of the object
print(PurlsVulnerability.to_json())
# convert the object into a dict
purls_vulnerability_dict = purls_vulnerability_instance.to_dict()
# create an instance of PurlsVulnerability from a dict
purls_vulnerability_from_dict = PurlsVulnerability.from_dict(purls_vulnerability_dict)
[Back to Model list] [Back to API list] [Back to README]