Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1007 Bytes

AdvisoryAMI.md

File metadata and controls

33 lines (24 loc) · 1007 Bytes

AdvisoryAMI

Properties

Name Type Description Notes
cve List[str] [optional]
date_added str [optional]
id str [optional]
updated_at str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_ami import AdvisoryAMI

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

# convert the object into a dict
advisory_ami_dict = advisory_ami_instance.to_dict()
# create an instance of AdvisoryAMI from a dict
advisory_ami_from_dict = AdvisoryAMI.from_dict(advisory_ami_dict)

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