Skip to content

Files

Latest commit

35de6c1 · Oct 12, 2024

History

History
35 lines (26 loc) · 1.16 KB
·

AdvisoryPHPMyAdmin.md

File metadata and controls

35 lines (26 loc) · 1.16 KB
·

AdvisoryPHPMyAdmin

Properties

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

Example

from vulncheck_sdk.models.advisory_phpmy_admin import AdvisoryPHPMyAdmin

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

# convert the object into a dict
advisory_phpmy_admin_dict = advisory_phpmy_admin_instance.to_dict()
# create an instance of AdvisoryPHPMyAdmin from a dict
advisory_phpmy_admin_from_dict = AdvisoryPHPMyAdmin.from_dict(advisory_phpmy_admin_dict)

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