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