go-firefly3/model_rule_action_keyword.go
2024-04-10 12:14:55 +03:00

40 lines
2.6 KiB
Go

/*
* Firefly III API v2.0.12
*
* This is the documentation of the Firefly III API. You can find accompanying documentation on the website of Firefly III itself (see below). Please report any bugs or issues. You may use the \"Authorize\" button to try the API below. This file was last generated on 2024-03-16T05:34:43+00:00 Please keep in mind that the demo site does not accept requests from curl, colly, wget, etc. You must use a browser or a tool like Postman to make requests. Too many script kiddies out there, sorry about that.
*
* API version: 2.0.12
* Contact: james@firefly-iii.org
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package firefly3
// RuleActionKeyword : The type of thing this action will do. A limited set is possible.
type RuleActionKeyword string
// List of RuleActionKeyword
const (
USER_ACTION_RuleActionKeyword RuleActionKeyword = "user_action"
SET_CATEGORY_RuleActionKeyword RuleActionKeyword = "set_category"
CLEAR_CATEGORY_RuleActionKeyword RuleActionKeyword = "clear_category"
SET_BUDGET_RuleActionKeyword RuleActionKeyword = "set_budget"
CLEAR_BUDGET_RuleActionKeyword RuleActionKeyword = "clear_budget"
ADD_TAG_RuleActionKeyword RuleActionKeyword = "add_tag"
REMOVE_TAG_RuleActionKeyword RuleActionKeyword = "remove_tag"
REMOVE_ALL_TAGS_RuleActionKeyword RuleActionKeyword = "remove_all_tags"
SET_DESCRIPTION_RuleActionKeyword RuleActionKeyword = "set_description"
APPEND_DESCRIPTION_RuleActionKeyword RuleActionKeyword = "append_description"
PREPEND_DESCRIPTION_RuleActionKeyword RuleActionKeyword = "prepend_description"
SET_SOURCE_ACCOUNT_RuleActionKeyword RuleActionKeyword = "set_source_account"
SET_DESTINATION_ACCOUNT_RuleActionKeyword RuleActionKeyword = "set_destination_account"
SET_NOTES_RuleActionKeyword RuleActionKeyword = "set_notes"
APPEND_NOTES_RuleActionKeyword RuleActionKeyword = "append_notes"
PREPEND_NOTES_RuleActionKeyword RuleActionKeyword = "prepend_notes"
CLEAR_NOTES_RuleActionKeyword RuleActionKeyword = "clear_notes"
LINK_TO_BILL_RuleActionKeyword RuleActionKeyword = "link_to_bill"
CONVERT_WITHDRAWAL_RuleActionKeyword RuleActionKeyword = "convert_withdrawal"
CONVERT_DEPOSIT_RuleActionKeyword RuleActionKeyword = "convert_deposit"
CONVERT_TRANSFER_RuleActionKeyword RuleActionKeyword = "convert_transfer"
DELETE_TRANSACTION_RuleActionKeyword RuleActionKeyword = "delete_transaction"
)