Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.16 KB

AdvisoryMcAfee.md

File metadata and controls

35 lines (26 loc) · 1.16 KB

AdvisoryMcAfee

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
mcafee_score List[AdvisoryMcAfeeScore] [optional]
summary str [optional]
title str [optional]
updated_at str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_mc_afee import AdvisoryMcAfee

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

# convert the object into a dict
advisory_mc_afee_dict = advisory_mc_afee_instance.to_dict()
# create an instance of AdvisoryMcAfee from a dict
advisory_mc_afee_from_dict = AdvisoryMcAfee.from_dict(advisory_mc_afee_dict)

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