Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Atoti Python SDK
property Hierarchy.folder: str | None
>>> table = session.create_table("Example", data_types={"Product": "String"}) >>> cube = session.create_cube(table) >>> hierarchy = cube.hierarchies["Product"]
>>> print(hierarchy.folder) None
>>> hierarchy.folder = "my folder" >>> print(hierarchy.folder) my folder
\
>>> hierarchy.folder = r"some\sub\folder" >>> print(hierarchy.folder) some\sub\folder
>>> del hierarchy.folder >>> print(hierarchy.folder) None
Was this page helpful?