Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.17 KB

AdvisoryDell.md

File metadata and controls

36 lines (27 loc) · 1.17 KB

AdvisoryDell

Properties

Name Type Description Notes
article_number str [optional]
combined_product_list str [optional]
cve List[str] [optional]
date_added str [optional]
dell_cves List[AdvisoryDellCVE] [optional]
severity str [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_dell import AdvisoryDell

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

# convert the object into a dict
advisory_dell_dict = advisory_dell_instance.to_dict()
# create an instance of AdvisoryDell from a dict
advisory_dell_from_dict = AdvisoryDell.from_dict(advisory_dell_dict)

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