Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1021 Bytes

AdvisoryCWENode.md

File metadata and controls

32 lines (23 loc) · 1021 Bytes

AdvisoryCWENode

Properties

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

Example

from vulncheck_sdk.models.advisory_cwe_node import AdvisoryCWENode

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

# convert the object into a dict
advisory_cwe_node_dict = advisory_cwe_node_instance.to_dict()
# create an instance of AdvisoryCWENode from a dict
advisory_cwe_node_from_dict = AdvisoryCWENode.from_dict(advisory_cwe_node_dict)

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