| Name | Type | Description | Notes |
|---|---|---|---|
| actions | ProfileEnrollmentPolicyRuleActions | [optional] | |
| conditions | str | Policy rule conditions aren't supported for this policy type | [optional] |
from okta.models.profile_enrollment_policy_rule import ProfileEnrollmentPolicyRule
# TODO update the JSON string below
json = "{}"
# create an instance of ProfileEnrollmentPolicyRule from a JSON string
profile_enrollment_policy_rule_instance = ProfileEnrollmentPolicyRule.from_json(json)
# print the JSON string representation of the object
print(ProfileEnrollmentPolicyRule.to_json())
# convert the object into a dict
profile_enrollment_policy_rule_dict = profile_enrollment_policy_rule_instance.to_dict()
# create an instance of ProfileEnrollmentPolicyRule from a dict
profile_enrollment_policy_rule_from_dict = ProfileEnrollmentPolicyRule.from_dict(profile_enrollment_policy_rule_dict)