diff --git a/app/Enums/TransactionTypeEnum.php b/app/Enums/TransactionTypeEnum.php new file mode 100644 index 0000000000..2276768e5e --- /dev/null +++ b/app/Enums/TransactionTypeEnum.php @@ -0,0 +1,36 @@ +. + */ + +namespace FireflyIII\Enums; + +/** + * Class TransactionTypeEnum + */ +enum TransactionTypeEnum: string +{ + case DEPOSIT = 'Deposit'; + case INVALID = 'Invalid'; + case LIABILITY_CREDIT = 'Liability credit'; + case OPENING_BALANCE = 'Opening balance'; + case RECONCILIATION = 'Reconciliation'; + case TRANSFER = 'Transfer'; + case WITHDRAWAL = 'Withdrawal'; +} \ No newline at end of file