Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

CreateHierarchyRootNodeRequest.md

File metadata and controls

31 lines (22 loc) · 1.17 KB

CreateHierarchyRootNodeRequest

create a root node request

Properties

Name Type Description Notes
name str
tenant_id str The id of the tenant.

Example

from onelens_backend_client.models.create_hierarchy_root_node_request import CreateHierarchyRootNodeRequest

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

# convert the object into a dict
create_hierarchy_root_node_request_dict = create_hierarchy_root_node_request_instance.to_dict()
# create an instance of CreateHierarchyRootNodeRequest from a dict
create_hierarchy_root_node_request_form_dict = create_hierarchy_root_node_request.from_dict(create_hierarchy_root_node_request_dict)

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