Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.36 KB

RuleActionStore.md

File metadata and controls

33 lines (24 loc) · 1.36 KB

RuleActionStore

Properties

Name Type Description Notes
active bool If the action is active. Defaults to true. [optional] [default to True]
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
value str The accompanying value the action will set, change or update. Can be empty, but for some types this value is mandatory.

Example

from firefly_iii_client.models.rule_action_store import RuleActionStore

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

# convert the object into a dict
rule_action_store_dict = rule_action_store_instance.to_dict()
# create an instance of RuleActionStore from a dict
rule_action_store_form_dict = rule_action_store.from_dict(rule_action_store_dict)

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