Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.18 KB

File metadata and controls

32 lines (22 loc) · 1.18 KB

OrgCAPTCHASettings

Properties

Name Type Description Notes
captcha_id str The unique key of the associated CAPTCHA instance [optional]
enabled_pages List[EnabledPagesType] An array of pages that have CAPTCHA enabled [optional]
links OrgCAPTCHASettingsLinks [optional]

Example

from okta.models.org_captcha_settings import OrgCAPTCHASettings

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

# convert the object into a dict
org_captcha_settings_dict = org_captcha_settings_instance.to_dict()
# create an instance of OrgCAPTCHASettings from a dict
org_captcha_settings_from_dict = OrgCAPTCHASettings.from_dict(org_captcha_settings_dict)

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