Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.69 KB

File metadata and controls

35 lines (26 loc) · 1.69 KB

ProfileEnrollmentPolicyRuleAction

Properties

Name Type Description Notes
access str [optional]
activation_requirements ProfileEnrollmentPolicyRuleActivationRequirement [optional]
pre_registration_inline_hooks List[PreRegistrationInlineHook] [optional]
profile_attributes List[ProfileEnrollmentPolicyRuleProfileAttribute] [optional]
target_group_ids List[str] [optional]
unknown_user_action str [optional]
progressive_profiling_action str [optional]

Example

from okta.models.profile_enrollment_policy_rule_action import ProfileEnrollmentPolicyRuleAction

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

# convert the object into a dict
profile_enrollment_policy_rule_action_dict = profile_enrollment_policy_rule_action_instance.to_dict()
# create an instance of ProfileEnrollmentPolicyRuleAction from a dict
profile_enrollment_policy_rule_action_from_dict = ProfileEnrollmentPolicyRuleAction.from_dict(profile_enrollment_policy_rule_action_dict)

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