Name |
Type |
Description |
Notes |
active |
bool |
If the action is active. Defaults to true. |
[optional] [default to True] |
created_at |
datetime |
|
[optional] [readonly] |
id |
str |
|
[optional] [readonly] |
order |
int |
Order of the action |
[optional] |
stop_processing |
bool |
When true, other actions will not be fired after this action has fired. Defaults to false. |
[optional] [default to False] |
type |
RuleActionKeyword |
|
|
updated_at |
datetime |
|
[optional] [readonly] |
value |
str |
The accompanying value the action will set, change or update. Can be empty, but for some types this value is mandatory. |
|
from firefly_iii_client.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]