Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

Hierarchical.md

File metadata and controls

29 lines (20 loc) · 1.06 KB

Hierarchical

if true, use hierarchical objects to represent multiple row (or column) dimensions, otherwise multi-keys get concatenated with a dot-delimiter. If the value is a list, only these levels are kept as separate levels, while remaining levels get concatenated keys

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.hierarchical import Hierarchical

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

# convert the object into a dict
hierarchical_dict = hierarchical_instance.to_dict()
# create an instance of Hierarchical from a dict
hierarchical_form_dict = hierarchical.from_dict(hierarchical_dict)

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