Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 931 Bytes

File metadata and controls

30 lines (21 loc) · 931 Bytes

PageLayout

Hierarchical description of the page layout.

Properties

Name Type Description Notes
blocks List[PageLayoutComponents] [optional]

Example

from igvf_client.models.page_layout import PageLayout

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

# convert the object into a dict
page_layout_dict = page_layout_instance.to_dict()
# create an instance of PageLayout from a dict
page_layout_from_dict = PageLayout.from_dict(page_layout_dict)

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