Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.16 KB

File metadata and controls

30 lines (21 loc) · 1.16 KB

CreateHierarchyRootNodeAPIRequest

create root node api request

Properties

Name Type Description Notes
name str

Example

from onelens_backend_client.models.create_hierarchy_root_node_api_request import CreateHierarchyRootNodeAPIRequest

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

# convert the object into a dict
create_hierarchy_root_node_api_request_dict = create_hierarchy_root_node_api_request_instance.to_dict()
# create an instance of CreateHierarchyRootNodeAPIRequest from a dict
create_hierarchy_root_node_api_request_form_dict = create_hierarchy_root_node_api_request.from_dict(create_hierarchy_root_node_api_request_dict)

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