Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 967 Bytes

File metadata and controls

29 lines (20 loc) · 967 Bytes

GroupRuleAction

Properties

Name Type Description Notes
assign_user_to_groups GroupRuleGroupAssignment [optional]

Example

from okta.models.group_rule_action import GroupRuleAction

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

# convert the object into a dict
group_rule_action_dict = group_rule_action_instance.to_dict()
# create an instance of GroupRuleAction from a dict
group_rule_action_from_dict = GroupRuleAction.from_dict(group_rule_action_dict)

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