Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.28 KB

GetHierarchyResponse.md

File metadata and controls

34 lines (25 loc) · 1.28 KB

GetHierarchyResponse

get hierarchy response

Properties

Name Type Description Notes
id str The unique identifier of the hierarchy.
data object The data of the hierarchy.
version int The version of the hierarchy.
state HierarchyState The state of the hierarchy.
type HierarchyType The type of the hierarchy.

Example

from onelens_backend_client.models.get_hierarchy_response import GetHierarchyResponse

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

# convert the object into a dict
get_hierarchy_response_dict = get_hierarchy_response_instance.to_dict()
# create an instance of GetHierarchyResponse from a dict
get_hierarchy_response_form_dict = get_hierarchy_response.from_dict(get_hierarchy_response_dict)

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