Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.31 KB

File metadata and controls

31 lines (22 loc) · 1.31 KB

IdentityProviderPolicyRuleCondition

Specifies the IdP that's used to sign in

Properties

Name Type Description Notes
idp_ids List[str] Specifies the IdP ID [optional]
provider IdentityProviderPolicyProvider [optional]

Example

from okta.models.identity_provider_policy_rule_condition import IdentityProviderPolicyRuleCondition

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

# convert the object into a dict
identity_provider_policy_rule_condition_dict = identity_provider_policy_rule_condition_instance.to_dict()
# create an instance of IdentityProviderPolicyRuleCondition from a dict
identity_provider_policy_rule_condition_from_dict = IdentityProviderPolicyRuleCondition.from_dict(identity_provider_policy_rule_condition_dict)

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