Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.09 KB

AdvisoryNetskope.md

File metadata and controls

34 lines (25 loc) · 1.09 KB

AdvisoryNetskope

Properties

Name Type Description Notes
advisory_id 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_netskope import AdvisoryNetskope

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

# convert the object into a dict
advisory_netskope_dict = advisory_netskope_instance.to_dict()
# create an instance of AdvisoryNetskope from a dict
advisory_netskope_from_dict = AdvisoryNetskope.from_dict(advisory_netskope_dict)

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