| Name | Type | Description | Notes |
|---|---|---|---|
| page_content | str | [optional] | |
| content_security_policy_setting | ContentSecurityPolicySetting | [optional] |
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)