Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.08 KB

File metadata and controls

32 lines (23 loc) · 1.08 KB

PageRootLinks

Properties

Name Type Description Notes
var_self HrefObjectSelfLink [optional]
default HrefObject [optional]
customized HrefObject [optional]
preview HrefObject [optional]

Example

from okta.models.page_root_links import PageRootLinks

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

# convert the object into a dict
page_root_links_dict = page_root_links_instance.to_dict()
# create an instance of PageRootLinks from a dict
page_root_links_from_dict = PageRootLinks.from_dict(page_root_links_dict)

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