Name | Type | Description | Notes |
---|---|---|---|
cpe_match | List[AdvisoryNVD20CVECPEMatch] | [optional] | |
negate | bool | [optional] | |
operator | str | [optional] |
from vulncheck_sdk.models.advisory_nvd20_node import AdvisoryNVD20Node
# TODO update the JSON string below
json = "{}"
# create an instance of AdvisoryNVD20Node from a JSON string
advisory_nvd20_node_instance = AdvisoryNVD20Node.from_json(json)
# print the JSON string representation of the object
print(AdvisoryNVD20Node.to_json())
# convert the object into a dict
advisory_nvd20_node_dict = advisory_nvd20_node_instance.to_dict()
# create an instance of AdvisoryNVD20Node from a dict
advisory_nvd20_node_from_dict = AdvisoryNVD20Node.from_dict(advisory_nvd20_node_dict)