| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | App Rule ID | [optional] |
| name | str | Rule Name | [optional] |
| match | str | Indicates how conditions should be matched. | [optional] |
| enabled | bool | Indicates if the rule is enabled or not. | [optional] |
| position | int | Indicates the order of the rule. When `null` this will default to last position. | [optional] |
| conditions | List[Condition] | An array of conditions that the user must meet in order for the rule to be applied. | [optional] |
| actions | List[ActionObj] | [optional] |
from onelogin.models.app_rule import AppRule
# TODO update the JSON string below
json = "{}"
# create an instance of AppRule from a JSON string
app_rule_instance = AppRule.from_json(json)
# print the JSON string representation of the object
print AppRule.to_json()
# convert the object into a dict
app_rule_dict = app_rule_instance.to_dict()
# create an instance of AppRule from a dict
app_rule_form_dict = app_rule.from_dict(app_rule_dict)