Name | Type | Description | Notes |
---|---|---|---|
cve | str | [optional] | |
cvssscore_sets | AdvisoryScoreSet | [optional] | |
description | str | [optional] | |
packages | List[AdvisoryVulnCheckPackage] | vulncheck addition | [optional] |
product_statuses | List[AdvisoryStatus] | [optional] | |
references | List[AdvisoryCVRFReference] | [optional] | |
threats | List[AdvisoryThreat] | [optional] |
from vulncheck_sdk.models.advisory_vulnerability import AdvisoryVulnerability
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryVulnerability from a JSON string
advisory_vulnerability_instance = AdvisoryVulnerability.from_json(json)
# print the JSON string representation of the object
print(AdvisoryVulnerability.to_json())
# convert the object into a dict
advisory_vulnerability_dict = advisory_vulnerability_instance.to_dict()
# create an instance of AdvisoryVulnerability from a dict
advisory_vulnerability_from_dict = AdvisoryVulnerability.from_dict(advisory_vulnerability_dict)