Currently not supported
| Name | Type | Description | Notes |
|---|---|---|---|
| exclude | List[str] | Currently not supported | [optional] |
from okta.models.group_rule_group_condition import GroupRuleGroupCondition
# TODO update the JSON string below
json = "{}"
# create an instance of GroupRuleGroupCondition from a JSON string
group_rule_group_condition_instance = GroupRuleGroupCondition.from_json(json)
# print the JSON string representation of the object
print(GroupRuleGroupCondition.to_json())
# convert the object into a dict
group_rule_group_condition_dict = group_rule_group_condition_instance.to_dict()
# create an instance of GroupRuleGroupCondition from a dict
group_rule_group_condition_from_dict = GroupRuleGroupCondition.from_dict(group_rule_group_condition_dict)