Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 927 Bytes

AdvisoryITW.md

File metadata and controls

31 lines (22 loc) · 927 Bytes

AdvisoryITW

Properties

Name Type Description Notes
cve str [optional]
date_added str [optional]
title str [optional]

Example

from vulncheck_sdk.models.advisory_itw import AdvisoryITW

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

# convert the object into a dict
advisory_itw_dict = advisory_itw_instance.to_dict()
# create an instance of AdvisoryITW from a dict
advisory_itw_from_dict = AdvisoryITW.from_dict(advisory_itw_dict)

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