Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

PageRootEmbedded

Properties

Name Type Description Notes
default CustomizablePage [optional]
customized CustomizablePage [optional]
customized_url str [optional]
preview CustomizablePage [optional]
preview_url str [optional]

Example

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)

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