Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

IdpDiscoveryPolicyRule

Properties

Name Type Description Notes
actions IdpPolicyRuleAction [optional]
conditions IdpDiscoveryPolicyRuleCondition [optional]

Example

from okta.models.idp_discovery_policy_rule import IdpDiscoveryPolicyRule

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

# convert the object into a dict
idp_discovery_policy_rule_dict = idp_discovery_policy_rule_instance.to_dict()
# create an instance of IdpDiscoveryPolicyRule from a dict
idp_discovery_policy_rule_from_dict = IdpDiscoveryPolicyRule.from_dict(idp_discovery_policy_rule_dict)

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