Name |
Type |
Description |
Notes |
label |
str |
|
[optional] |
from vulncheck_sdk.models.advisory_siemens_tlp import AdvisorySiemensTLP
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisorySiemensTLP from a JSON string
advisory_siemens_tlp_instance = AdvisorySiemensTLP.from_json(json)
# print the JSON string representation of the object
print(AdvisorySiemensTLP.to_json())
# convert the object into a dict
advisory_siemens_tlp_dict = advisory_siemens_tlp_instance.to_dict()
# create an instance of AdvisorySiemensTLP from a dict
advisory_siemens_tlp_from_dict = AdvisorySiemensTLP.from_dict(advisory_siemens_tlp_dict)
[Back to Model list] [Back to API list] [Back to README]