Sha256: e3ccb0c7a1e8f249bb2300aaa69a9c39663cefca71fd9691a6df8ea5fc056d3c

Contents?: true

Size: 1.32 KB

Versions: 5

Compression:

Stored size: 1.32 KB

Contents

# MoneyKit::TransactionImportData

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **account_id** | **String** | Your internal ID for the account this transaction belongs to.  The `account_id` **must** match         one of the IDs provided in the `accounts` list. |  |
| **transaction_id** | **String** | Your internal ID for this transaction.  If supplied, this ID will be returned as the         `original_id` of the transaction in future requests. | [optional] |
| **amount** | **String** | The amount of this transaction, denominated in account currency.  Use positive numbers         for credits (deposits), and negative numbers of debits (withdrawals). |  |
| **date** | **Date** |  |  |
| **description** | **String** | A description of this transaction. | [optional] |
| **type** | **String** | A type or category for this transaction.  Does not need to match MoneyKit types,         but see <a href=/pages/categories>Transaction Categories</a> if you want to match our current schema. | [optional] |

## Example

```ruby
require 'moneykit'

instance = MoneyKit::TransactionImportData.new(
  account_id: 74583934,
  transaction_id: null,
  amount: 384.05,
  date: null,
  description: Regina's Mulberry,
  type: food_and_drinks.restaurants
)
```

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
moneykit-0.1.15 docs/TransactionImportData.md
moneykit-0.1.14 docs/TransactionImportData.md
moneykit-0.1.13 docs/TransactionImportData.md
moneykit-0.1.12 docs/TransactionImportData.md
moneykit-0.1.11 docs/TransactionImportData.md