Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.39 KB

AdvisorySeebugExploit.md

File metadata and controls

40 lines (31 loc) · 1.39 KB

AdvisorySeebugExploit

Properties

Name Type Description Notes
author str [optional]
category str [optional]
cnnvd List[str] [optional]
cnvd List[str] [optional]
component str [optional]
cve List[str] [optional]
date_added str [optional]
find_time str [optional]
name str [optional]
ssv_id str [optional]
submitter str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_seebug_exploit import AdvisorySeebugExploit

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

# convert the object into a dict
advisory_seebug_exploit_dict = advisory_seebug_exploit_instance.to_dict()
# create an instance of AdvisorySeebugExploit from a dict
advisory_seebug_exploit_from_dict = AdvisorySeebugExploit.from_dict(advisory_seebug_exploit_dict)

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