| Name | Type | Description | Notes |
|---|---|---|---|
| default | CustomizablePage | [optional] | |
| customized | CustomizablePage | [optional] | |
| customized_url | str | [optional] | |
| preview | CustomizablePage | [optional] | |
| preview_url | str | [optional] |
from okta.models.page_root_embedded import PageRootEmbedded
# TODO update the JSON string below
json = "{}"
# create an instance of PageRootEmbedded from a JSON string
page_root_embedded_instance = PageRootEmbedded.from_json(json)
# print the JSON string representation of the object
print(PageRootEmbedded.to_json())
# convert the object into a dict
page_root_embedded_dict = page_root_embedded_instance.to_dict()
# create an instance of PageRootEmbedded from a dict
page_root_embedded_from_dict = PageRootEmbedded.from_dict(page_root_embedded_dict)