Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.91 KB

File metadata and controls

39 lines (30 loc) · 2.91 KB

SwaApplicationSettingsApplication

Properties

Name Type Description Notes
button_field str CSS selector for the Sign-In button in the sign-in form (for SWA apps with the `template_swa` app name definition)
button_selector str CSS selector for the Sign-In button in the sign-in form (for three-field SWA apps with the `template_swa3field` app name definition) [optional]
extra_field_selector str Enter the CSS selector for the extra field (for three-field SWA apps with the `template_swa3field` app name definition). [optional]
extra_field_value str Enter the value for the extra field in the form (for three-field SWA apps with the `template_swa3field` app name definition). [optional]
login_url_regex str A regular expression that further restricts targetURL to the specified regular expression [optional]
password_field str CSS selector for the Password field in the sign-in form (for SWA apps with the `template_swa` app name definition)
password_selector str CSS selector for the Password field in the sign-in form (for three-field SWA apps with the `template_swa3field` app name definition) [optional]
target_url str The URL of the sign-in page for this app (for three-field SWA apps with the `template_swa3field` app name definition) [optional]
url str The URL of the sign-in page for this app (for SWA apps with the `template_swa` app name definition)
username_field str CSS selector for the Username field in the sign-in form (for SWA apps with the `template_swa` app name definition)
user_name_selector str CSS selector for the Username field in the sign-in form (for three-field SWA apps with the `template_swa3field` app name definition) [optional]

Example

from okta.models.swa_application_settings_application import SwaApplicationSettingsApplication

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

# convert the object into a dict
swa_application_settings_application_dict = swa_application_settings_application_instance.to_dict()
# create an instance of SwaApplicationSettingsApplication from a dict
swa_application_settings_application_from_dict = SwaApplicationSettingsApplication.from_dict(swa_application_settings_application_dict)

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