Initial commit

This is definitely not functional yet.

Signed-off-by: Jacob Kiers <code@kiers.eu>
This commit is contained in:
2024-10-04 20:27:23 +02:00
commit f0b8df90b9
582 changed files with 43994 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# RecurrenceTransactionStore
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **String** | |
**amount** | **String** | Amount of the transaction. |
**foreign_amount** | Option<**String**> | Foreign amount of the transaction. | [optional]
**currency_id** | Option<**String**> | Submit either a currency_id or a currency_code. | [optional]
**currency_code** | Option<**String**> | Submit either a currency_id or a currency_code. | [optional]
**foreign_currency_id** | Option<**String**> | Submit either a foreign_currency_id or a foreign_currency_code, or neither. | [optional]
**foreign_currency_code** | Option<**String**> | Submit either a foreign_currency_id or a foreign_currency_code, or neither. | [optional]
**budget_id** | Option<**String**> | The budget ID for this transaction. | [optional]
**category_id** | Option<**String**> | Category ID for this transaction. | [optional]
**source_id** | **String** | ID of the source account. |
**destination_id** | **String** | ID of the destination account. |
**tags** | Option<**Vec<String>**> | Array of tags. | [optional]
**piggy_bank_id** | Option<**String**> | Optional. | [optional]
**bill_id** | Option<**String**> | Optional. | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)