Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.14 KB

AdvisoryNCSC.md

File metadata and controls

36 lines (27 loc) · 1.14 KB

AdvisoryNCSC

Properties

Name Type Description Notes
csaf AdvisoryCSAF [optional]
cve List[str] [optional]
date_added str [optional]
id str [optional]
references List[str] [optional]
summary_nl str [optional]
title_nl str [optional]
url str [optional]

Example

from vulncheck_sdk.models.advisory_ncsc import AdvisoryNCSC

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

# convert the object into a dict
advisory_ncsc_dict = advisory_ncsc_instance.to_dict()
# create an instance of AdvisoryNCSC from a dict
advisory_ncsc_from_dict = AdvisoryNCSC.from_dict(advisory_ncsc_dict)

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