Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.19 KB

File metadata and controls

30 lines (21 loc) · 1.19 KB

MultifactorEnrollmentPolicy

Properties

Name Type Description Notes
conditions PolicyRuleConditions [optional]
settings MultifactorEnrollmentPolicySettings [optional]

Example

from okta.models.multifactor_enrollment_policy import MultifactorEnrollmentPolicy

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

# convert the object into a dict
multifactor_enrollment_policy_dict = multifactor_enrollment_policy_instance.to_dict()
# create an instance of MultifactorEnrollmentPolicy from a dict
multifactor_enrollment_policy_from_dict = MultifactorEnrollmentPolicy.from_dict(multifactor_enrollment_policy_dict)

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