Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 953 Bytes

ApiNodes.md

File metadata and controls

31 lines (22 loc) · 953 Bytes

ApiNodes

Properties

Name Type Description Notes
children List[ApiNodes] [optional]
cpe_match List[ApiCPEMatch] [optional]
operator str [optional]

Example

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)

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