| Name | Type | Description | Notes |
|---|---|---|---|
| page_content | str | [optional] | |
| content_security_policy_setting | ContentSecurityPolicySetting | [optional] | |
| widget_customizations | SignInPageAllOfWidgetCustomizations | [optional] | |
| widget_version | str | The version specified as a Semantic Version. | [optional] |
from okta.models.sign_in_page import SignInPage
# TODO update the JSON string below
json = "{}"
# create an instance of SignInPage from a JSON string
sign_in_page_instance = SignInPage.from_json(json)
# print the JSON string representation of the object
print(SignInPage.to_json())
# convert the object into a dict
sign_in_page_dict = sign_in_page_instance.to_dict()
# create an instance of SignInPage from a dict
sign_in_page_from_dict = SignInPage.from_dict(sign_in_page_dict)