Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

File metadata and controls

30 lines (21 loc) · 1.18 KB

PolicyRuleAuthContextCondition

Specifies an authentication entry point

Properties

Name Type Description Notes
auth_type PolicyRuleAuthContextType [optional]

Example

from okta.models.policy_rule_auth_context_condition import PolicyRuleAuthContextCondition

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

# convert the object into a dict
policy_rule_auth_context_condition_dict = policy_rule_auth_context_condition_instance.to_dict()
# create an instance of PolicyRuleAuthContextCondition from a dict
policy_rule_auth_context_condition_from_dict = PolicyRuleAuthContextCondition.from_dict(policy_rule_auth_context_condition_dict)

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