| Name |
Type |
Description |
Notes |
| type |
str |
|
[optional] |
| value |
str |
|
[optional] |
from okta.models.group_rule_expression import GroupRuleExpression
# TODO update the JSON string below
json = "{}"
# create an instance of GroupRuleExpression from a JSON string
group_rule_expression_instance = GroupRuleExpression.from_json(json)
# print the JSON string representation of the object
print(GroupRuleExpression.to_json())
# convert the object into a dict
group_rule_expression_dict = group_rule_expression_instance.to_dict()
# create an instance of GroupRuleExpression from a dict
group_rule_expression_from_dict = GroupRuleExpression.from_dict(group_rule_expression_dict)
[Back to Model list] [Back to API list] [Back to README]