Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.18 KB

AdvisoryApacheActiveMQ.md

File metadata and controls

34 lines (25 loc) · 1.18 KB

AdvisoryApacheActiveMQ

Properties

Name Type Description Notes
affected_versions str [optional]
cve List[str] [optional]
date_added str [optional]
summary str [optional]
title str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_apache_active_mq import AdvisoryApacheActiveMQ

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

# convert the object into a dict
advisory_apache_active_mq_dict = advisory_apache_active_mq_instance.to_dict()
# create an instance of AdvisoryApacheActiveMQ from a dict
advisory_apache_active_mq_from_dict = AdvisoryApacheActiveMQ.from_dict(advisory_apache_active_mq_dict)

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