Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.67 KB

RuleTrigger.md

File metadata and controls

37 lines (28 loc) · 1.67 KB

RuleTrigger

Properties

Name Type Description Notes
active bool If the trigger is active. Defaults to true. [optional] [default to True]
created_at datetime [optional] [readonly]
id str [optional] [readonly]
order int Order of the trigger [optional] [readonly]
prohibited bool If 'prohibited' is true, this rule trigger will be negated. 'Description is' will become 'Description is NOT' etc. [optional] [default to False]
stop_processing bool When true, other triggers will not be checked if this trigger was triggered. Defaults to false. [optional] [default to False]
type RuleTriggerKeyword
updated_at datetime [optional] [readonly]
value str The accompanying value the trigger responds to. This value is often mandatory, but this depends on the trigger.

Example

from firefly_iii_client.models.rule_trigger import RuleTrigger

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

# convert the object into a dict
rule_trigger_dict = rule_trigger_instance.to_dict()
# create an instance of RuleTrigger from a dict
rule_trigger_form_dict = rule_trigger.from_dict(rule_trigger_dict)

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