Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.21 KB

File metadata and controls

30 lines (21 loc) · 1.21 KB

ProfileEnrollmentPolicyRule

Properties

Name Type Description Notes
actions ProfileEnrollmentPolicyRuleActions [optional]
conditions str Policy rule conditions aren't supported for this policy type [optional]

Example

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)

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