Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.47 KB

AdvisoryCISAAlert.md

File metadata and controls

43 lines (34 loc) · 1.47 KB

AdvisoryCISAAlert

Properties

Name Type Description Notes
affected_products str [optional]
alert_id str [optional]
archived bool [optional]
cve List[str] [optional]
cveexploited_itw bool [optional]
cvss str [optional]
date_added str [optional]
icsa bool [optional]
icsma bool [optional]
mitigations str [optional]
release_date str [optional]
title str [optional]
updated_at str [optional]
url str [optional]
vendor str [optional]

Example

from vulncheck_sdk.models.advisory_cisa_alert import AdvisoryCISAAlert

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

# convert the object into a dict
advisory_cisa_alert_dict = advisory_cisa_alert_instance.to_dict()
# create an instance of AdvisoryCISAAlert from a dict
advisory_cisa_alert_from_dict = AdvisoryCISAAlert.from_dict(advisory_cisa_alert_dict)

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