Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

OpalQueryResultNode

A matched entity from an OpalQuery result.

Properties

Name Type Description Notes
id UUID The entity's unique identifier.
name str The display name of the entity.
entity_type str The top-level entity type.
entity_item_type EntityItemTypeEnum

Example

from opal_security.models.opal_query_result_node import OpalQueryResultNode

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

# convert the object into a dict
opal_query_result_node_dict = opal_query_result_node_instance.to_dict()
# create an instance of OpalQueryResultNode from a dict
opal_query_result_node_from_dict = OpalQueryResultNode.from_dict(opal_query_result_node_dict)

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