Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 913 Bytes

File metadata and controls

29 lines (20 loc) · 913 Bytes

CustomizablePage

Properties

Name Type Description Notes
page_content str [optional]

Example

from okta.models.customizable_page import CustomizablePage

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

# convert the object into a dict
customizable_page_dict = customizable_page_instance.to_dict()
# create an instance of CustomizablePage from a dict
customizable_page_from_dict = CustomizablePage.from_dict(customizable_page_dict)

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