Specifies an authentication entry point
| Name | Type | Description | Notes |
|---|---|---|---|
| auth_type | PolicyRuleAuthContextType | [optional] |
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)