Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 908 Bytes

File metadata and controls

30 lines (21 loc) · 908 Bytes

PageRoot

Properties

Name Type Description Notes
embedded PageRootEmbedded [optional]
links PageRootLinks [optional]

Example

from okta.models.page_root import PageRoot

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

# convert the object into a dict
page_root_dict = page_root_instance.to_dict()
# create an instance of PageRoot from a dict
page_root_from_dict = PageRoot.from_dict(page_root_dict)

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