Name |
Type |
Description |
Notes |
name |
str |
|
[optional] |
version |
str |
|
[optional] |
from vulncheck_sdk.models.advisory_siemens_engine import AdvisorySiemensEngine
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisorySiemensEngine from a JSON string
advisory_siemens_engine_instance = AdvisorySiemensEngine.from_json(json)
# print the JSON string representation of the object
print(AdvisorySiemensEngine.to_json())
# convert the object into a dict
advisory_siemens_engine_dict = advisory_siemens_engine_instance.to_dict()
# create an instance of AdvisorySiemensEngine from a dict
advisory_siemens_engine_from_dict = AdvisorySiemensEngine.from_dict(advisory_siemens_engine_dict)
[Back to Model list] [Back to API list] [Back to README]