| Name | Type | Description | Notes |
|---|---|---|---|
| embedded | PageRootEmbedded | [optional] | |
| links | PageRootLinks | [optional] |
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)