Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 945 Bytes

File metadata and controls

30 lines (21 loc) · 945 Bytes

ErrorPage

Properties

Name Type Description Notes
page_content str [optional]
content_security_policy_setting ContentSecurityPolicySetting [optional]

Example

from okta.models.error_page import ErrorPage

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

# convert the object into a dict
error_page_dict = error_page_instance.to_dict()
# create an instance of ErrorPage from a dict
error_page_from_dict = ErrorPage.from_dict(error_page_dict)

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