Hierarchy Node Entity in the JSON data
Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] | |
name | str | ||
category | str | ||
resource_filters | List[HierarchyNodeResourceFilters] | [optional] | |
resource_filter_expression | str | [optional] | |
is_shared | bool | is this node a shared node or not. | [optional] [default to False] |
attribution_details | HierarchyNodeAttributionDetails | [optional] | |
state | HierarchyNodeState | The state of the hierarchy node. | |
sql_filter | str | [optional] |
from onelens_backend_client.models.hierarchy_node_entity_dto import HierarchyNodeEntityDTO
# TODO update the JSON string below
json = "{}"
# create an instance of HierarchyNodeEntityDTO from a JSON string
hierarchy_node_entity_dto_instance = HierarchyNodeEntityDTO.from_json(json)
# print the JSON string representation of the object
print(HierarchyNodeEntityDTO.to_json())
# convert the object into a dict
hierarchy_node_entity_dto_dict = hierarchy_node_entity_dto_instance.to_dict()
# create an instance of HierarchyNodeEntityDTO from a dict
hierarchy_node_entity_dto_form_dict = hierarchy_node_entity_dto.from_dict(hierarchy_node_entity_dto_dict)