Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 980 Bytes

AdvisorySiemensCWE.md

File metadata and controls

30 lines (21 loc) · 980 Bytes

AdvisorySiemensCWE

Properties

Name Type Description Notes
id str [optional]
name str [optional]

Example

from vulncheck_sdk.models.advisory_siemens_cwe import AdvisorySiemensCWE

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

# convert the object into a dict
advisory_siemens_cwe_dict = advisory_siemens_cwe_instance.to_dict()
# create an instance of AdvisorySiemensCWE from a dict
advisory_siemens_cwe_from_dict = AdvisorySiemensCWE.from_dict(advisory_siemens_cwe_dict)

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