Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.11 KB

AdvisoryBDUSoft.md

File metadata and controls

34 lines (25 loc) · 1.11 KB

AdvisoryBDUSoft

Properties

Name Type Description Notes
name str [optional]
platform str [optional]
text str [optional]
types AdvisoryBDUTypes [optional]
vendor str [optional]
version str [optional]

Example

from vulncheck_sdk.models.advisory_bdu_soft import AdvisoryBDUSoft

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

# convert the object into a dict
advisory_bdu_soft_dict = advisory_bdu_soft_instance.to_dict()
# create an instance of AdvisoryBDUSoft from a dict
advisory_bdu_soft_from_dict = AdvisoryBDUSoft.from_dict(advisory_bdu_soft_dict)

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