Name | Type | Description | Notes |
---|---|---|---|
children | List[ApiNodes] | [optional] | |
cpe_match | List[ApiCPEMatch] | [optional] | |
operator | str | [optional] |
from vulncheck_sdk.models.api_nodes import ApiNodes
# TODO update the JSON string below
json = "{}"
# create an instance of ApiNodes from a JSON string
api_nodes_instance = ApiNodes.from_json(json)
# print the JSON string representation of the object
print(ApiNodes.to_json())
# convert the object into a dict
api_nodes_dict = api_nodes_instance.to_dict()
# create an instance of ApiNodes from a dict
api_nodes_from_dict = ApiNodes.from_dict(api_nodes_dict)