Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.22 KB

AdvisoryApacheOpenMeetings.md

File metadata and controls

34 lines (25 loc) · 1.22 KB

AdvisoryApacheOpenMeetings

Properties

Name Type Description Notes
affected 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_open_meetings import AdvisoryApacheOpenMeetings

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

# convert the object into a dict
advisory_apache_open_meetings_dict = advisory_apache_open_meetings_instance.to_dict()
# create an instance of AdvisoryApacheOpenMeetings from a dict
advisory_apache_open_meetings_from_dict = AdvisoryApacheOpenMeetings.from_dict(advisory_apache_open_meetings_dict)

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