| Name |
Type |
Description |
Notes |
| name |
str |
Name of the Action |
[optional] |
| value |
str |
The unique identifier of the action. This should be used when defining actions for a User Mapping. |
[optional] |
from onelogin.models.rule_action import RuleAction
# TODO update the JSON string below
json = "{}"
# create an instance of RuleAction from a JSON string
rule_action_instance = RuleAction.from_json(json)
# print the JSON string representation of the object
print RuleAction.to_json()
# convert the object into a dict
rule_action_dict = rule_action_instance.to_dict()
# create an instance of RuleAction from a dict
rule_action_form_dict = rule_action.from_dict(rule_action_dict)
[Back to Model list] [Back to API list] [Back to README]