Array of scopes that the condition includes
| Name | Type | Description | Notes |
|---|---|---|---|
| include | List[str] | [optional] |
from okta.models.o_auth2_scopes_mediation_policy_rule_condition import OAuth2ScopesMediationPolicyRuleCondition
# TODO update the JSON string below
json = "{}"
# create an instance of OAuth2ScopesMediationPolicyRuleCondition from a JSON string
o_auth2_scopes_mediation_policy_rule_condition_instance = OAuth2ScopesMediationPolicyRuleCondition.from_json(json)
# print the JSON string representation of the object
print(OAuth2ScopesMediationPolicyRuleCondition.to_json())
# convert the object into a dict
o_auth2_scopes_mediation_policy_rule_condition_dict = o_auth2_scopes_mediation_policy_rule_condition_instance.to_dict()
# create an instance of OAuth2ScopesMediationPolicyRuleCondition from a dict
o_auth2_scopes_mediation_policy_rule_condition_from_dict = OAuth2ScopesMediationPolicyRuleCondition.from_dict(o_auth2_scopes_mediation_policy_rule_condition_dict)