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
>>> table = session.create_table("Example", data_types={"Product": "String"}) >>> cube = session.create_cube(table) >>> hierarchy = cube.hierarchies["Product"]
>>> hierarchy.folder = r"some\sub\folder" >>> print(hierarchy.folder) some\sub\folder
>>> del hierarchy.folder >>> print(hierarchy.folder) None
Was this page helpful?