update a branch node response
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| parent_id | 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] | |
| id | str | The unique identifier of the hierarchy node. | |
| state | HierarchyNodeState | The state of the hierarchy node. | |
| sql_filter | str | [optional] |
from onelens_backend_client.models.update_hierarchy_node_response import UpdateHierarchyNodeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateHierarchyNodeResponse from a JSON string
update_hierarchy_node_response_instance = UpdateHierarchyNodeResponse.from_json(json)
# print the JSON string representation of the object
print(UpdateHierarchyNodeResponse.to_json())
# convert the object into a dict
update_hierarchy_node_response_dict = update_hierarchy_node_response_instance.to_dict()
# create an instance of UpdateHierarchyNodeResponse from a dict
update_hierarchy_node_response_form_dict = update_hierarchy_node_response.from_dict(update_hierarchy_node_response_dict)