banks2ff/firefly-iii-api/docs/Rule.md
Jacob Kiers f0b8df90b9 Initial commit
This is definitely not functional yet.

Signed-off-by: Jacob Kiers <code@kiers.eu>
2024-10-04 20:31:39 +02:00

1.5 KiB

Rule

Properties

Name Type Description Notes
created_at Option<String> [optional][readonly]
updated_at Option<String> [optional][readonly]
title String
description Option<String> [optional]
rule_group_id String ID of the rule group under which the rule must be stored. Either this field or rule_group_title is mandatory.
rule_group_title Option<String> Title of the rule group under which the rule must be stored. Either this field or rule_group_id is mandatory. [optional]
order Option<i32> [optional][readonly]
trigger models::RuleTriggerType
active Option<bool> Whether or not the rule is even active. Default is true. [optional][default to true]
strict Option<bool> If the rule is set to be strict, ALL triggers must hit in order for the rule to fire. Otherwise, just one is enough. Default value is true. [optional]
stop_processing Option<bool> If this value is true and the rule is triggered, other rules after this one in the group will be skipped. Default value is false. [optional][default to false]
triggers Vecmodels::RuleTrigger
actions Vecmodels::RuleAction

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