Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.09 KB

AdvisoryRThreat.md

File metadata and controls

33 lines (24 loc) · 1.09 KB

AdvisoryRThreat

Properties

Name Type Description Notes
var_date str [optional]
date_specified bool [optional]
description AdvisoryIVal [optional]
product_id List[str] [optional]
type int diff [optional]

Example

from vulncheck_sdk.models.advisory_r_threat import AdvisoryRThreat

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

# convert the object into a dict
advisory_r_threat_dict = advisory_r_threat_instance.to_dict()
# create an instance of AdvisoryRThreat from a dict
advisory_r_threat_from_dict = AdvisoryRThreat.from_dict(advisory_r_threat_dict)

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