Name |
Type |
Description |
Notes |
desc |
str |
|
[optional] |
id |
str |
|
[optional] |
from vulncheck_sdk.models.advisory_curl_cwe import AdvisoryCurlCWE
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryCurlCWE from a JSON string
advisory_curl_cwe_instance = AdvisoryCurlCWE.from_json(json)
# print the JSON string representation of the object
print(AdvisoryCurlCWE.to_json())
# convert the object into a dict
advisory_curl_cwe_dict = advisory_curl_cwe_instance.to_dict()
# create an instance of AdvisoryCurlCWE from a dict
advisory_curl_cwe_from_dict = AdvisoryCurlCWE.from_dict(advisory_curl_cwe_dict)
[Back to Model list] [Back to API list] [Back to README]