Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.37 KB

File metadata and controls

30 lines (21 loc) · 1.37 KB

MultifactorEnrollmentPolicySettings

Properties

Name Type Description Notes
authenticators List[MultifactorEnrollmentPolicyAuthenticatorSettings] [optional]
type MultifactorEnrollmentPolicySettingsType [optional]

Example

from okta.models.multifactor_enrollment_policy_settings import MultifactorEnrollmentPolicySettings

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

# convert the object into a dict
multifactor_enrollment_policy_settings_dict = multifactor_enrollment_policy_settings_instance.to_dict()
# create an instance of MultifactorEnrollmentPolicySettings from a dict
multifactor_enrollment_policy_settings_from_dict = MultifactorEnrollmentPolicySettings.from_dict(multifactor_enrollment_policy_settings_dict)

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