Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

GroupRuleConditions

Properties

Name Type Description Notes
expression GroupRuleExpression [optional]
people GroupRulePeopleCondition [optional]

Example

from okta.models.group_rule_conditions import GroupRuleConditions

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

# convert the object into a dict
group_rule_conditions_dict = group_rule_conditions_instance.to_dict()
# create an instance of GroupRuleConditions from a dict
group_rule_conditions_from_dict = GroupRuleConditions.from_dict(group_rule_conditions_dict)

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