# DepositTransaction

Represents the action performed on an Deposit Account after which the account\'s amount changes its value.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountBalances** | [**DepositTransactionBalances**](DepositTransactionBalances.md) |  | [optional] [default to undefined]
**adjustmentTransactionKey** | **string** | The key of the deposit transaction where the adjustment for this transaction was made (if any adjustment was involved) | [optional] [default to undefined]
**affectedAmounts** | [**DepositAffectedAmounts**](DepositAffectedAmounts.md) |  | [optional] [default to undefined]
**amount** | **number** | How much was added/removed in account | [optional] [default to undefined]
**blockId** | **string** | The block fund id associated with the transaction | [optional] [default to undefined]
**bookingDate** | **string** | The date when corresponding JE is booked (as Organization Time) | [optional] [default to undefined]
**branchKey** | **string** | The branch where the transaction was performed | [optional] [readonly] [default to undefined]
**cardTransaction** | [**CardTransaction**](CardTransaction.md) |  | [optional] [default to undefined]
**centreKey** | **string** | The center where the transaction was performed | [optional] [readonly] [default to undefined]
**creationDate** | **string** | The date when this deposit transaction was created | [optional] [readonly] [default to undefined]
**currencyCode** | **string** | The currency in which this transaction was posted | [optional] [default to undefined]
**customFieldsArchived** | **boolean** | Whether the custom fields of the transaction are archived | [optional] [readonly] [default to undefined]
**encodedKey** | **string** | The encoded key of the deposit transaction, auto generated, unique | [optional] [readonly] [default to undefined]
**externalId** | **string** | The external id of the deposit transaction, customizable, unique | [optional] [default to undefined]
**fees** | [**Array&lt;DepositFee&gt;**](DepositFee.md) | All the amounts that have been applied or paid within this transaction and involved predefined fees | [optional] [readonly] [default to undefined]
**holdExternalReferenceId** | **string** | The external id of an account authorization hold | [optional] [default to undefined]
**id** | **string** | The id of the deposit transaction, auto generated, unique | [optional] [default to undefined]
**interestAccruedAmounts** | [**DepositInterestAccruedAmounts**](DepositInterestAccruedAmounts.md) |  | [optional] [default to undefined]
**migrationEventKey** | **string** | The migration event encoded key associated with this deposit account. If this account was imported, track which \&#39;migration event\&#39; they came from | [optional] [default to undefined]
**notes** | **string** | Extra notes about this deposit transaction | [optional] [default to undefined]
**originalTransactionKey** | **string** | The encodedKey of the transaction that was adjusted as part of this one. Available only for adjustment transactions | [optional] [default to undefined]
**parentAccountKey** | **string** | The key of the parent deposit account | [optional] [default to undefined]
**paymentDetails** | [**PaymentDetails**](PaymentDetails.md) |  | [optional] [default to undefined]
**paymentOrderId** | **string** | The payment order id of the deposit transaction, customizable | [optional] [default to undefined]
**taxes** | [**DepositTaxes**](DepositTaxes.md) |  | [optional] [default to undefined]
**terms** | [**DepositTerms**](DepositTerms.md) |  | [optional] [default to undefined]
**tillKey** | **string** | The till key associated with this transaction | [optional] [default to undefined]
**transactionDetails** | [**TransactionDetails**](TransactionDetails.md) |  | [optional] [default to undefined]
**transferDetails** | [**TransferDetails**](TransferDetails.md) |  | [optional] [default to undefined]
**type** | **string** | The type of the deposit transaction | [optional] [default to undefined]
**userKey** | **string** | The person that performed the transaction | [optional] [default to undefined]
**valueDate** | **string** | Date of the entry (eg date of repayment or disbursal, etc.) (as Organization Time) | [optional] [default to undefined]

## Example

```typescript
import { DepositTransaction } from './api';

const instance: DepositTransaction = {
    accountBalances,
    adjustmentTransactionKey,
    affectedAmounts,
    amount,
    blockId,
    bookingDate,
    branchKey,
    cardTransaction,
    centreKey,
    creationDate,
    currencyCode,
    customFieldsArchived,
    encodedKey,
    externalId,
    fees,
    holdExternalReferenceId,
    id,
    interestAccruedAmounts,
    migrationEventKey,
    notes,
    originalTransactionKey,
    parentAccountKey,
    paymentDetails,
    paymentOrderId,
    taxes,
    terms,
    tillKey,
    transactionDetails,
    transferDetails,
    type,
    userKey,
    valueDate,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
