# LoanTransaction

Represents the action performed on a loan account after which the account\'s amount changes its value.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountBalances** | [**TransactionBalances**](TransactionBalances.md) |  | [optional] [default to undefined]
**adjustmentTransactionKey** | **string** | The key of the loan transaction where the adjustment for the transaction was made (if any adjustment was involved). | [optional] [default to undefined]
**affectedAmounts** | [**LoanAffectedAmounts**](LoanAffectedAmounts.md) |  | [optional] [default to undefined]
**amount** | **number** | The amount that was added or removed on the loan account. | [optional] [default to undefined]
**bookingDate** | **string** | The date when the corresponding journal entry is booked. | [optional] [default to undefined]
**branchKey** | **string** | The branch where the transaction was performed. | [optional] [default to undefined]
**cardTransaction** | [**CardTransaction**](CardTransaction.md) |  | [optional] [default to undefined]
**centreKey** | **string** | The center where the transaction was performed. | [optional] [default to undefined]
**creationDate** | **string** | The date when this loan transaction was created. | [optional] [default to undefined]
**currency** | [**Currency**](Currency.md) |  | [optional] [default to undefined]
**customPaymentAmounts** | [**Array&lt;CustomPaymentAmount&gt;**](CustomPaymentAmount.md) | The list of custom amounts which the user has paid as part of this transaction. | [optional] [default to undefined]
**encodedKey** | **string** | The encoded key of the loan transaction, which is auto generated, and must be unique. | [optional] [default to undefined]
**externalId** | **string** | The external ID of the loan transaction, it is customizable, and must be unique. | [optional] [default to undefined]
**feeIncludedInPmt** | **boolean** |  | [optional] [default to undefined]
**fees** | [**Array&lt;Fee&gt;**](Fee.md) | The amounts that have been applied or paid as part of this transaction and involved predefined fees. | [optional] [default to undefined]
**id** | **string** | The ID of the loan transaction, can be generated and customized, and must be unique. | [optional] [default to undefined]
**installmentEncodedKey** | **string** | The specific installment encoded key associated to the loan transaction. | [optional] [default to undefined]
**lateFeeIncludedInPmt** | **boolean** |  | [optional] [default to undefined]
**lateFeePerInstallment** | **{ [key: string]: number; }** | The late fees associated per installment for the loan transaction. | [optional] [default to undefined]
**linkedPrincipalOverpaymentTransactionKey** | **string** | The specific principal overpayment transaction key associated to the loan transaction. | [optional] [default to undefined]
**migrationEventKey** | **string** | The migration event encoded key associated with the loan account. If the account was imported, track which \&#39;migration event\&#39; it came from. | [optional] [default to undefined]
**notes** | **string** | The notes or description for the loan transaction. | [optional] [default to undefined]
**originalAmount** | **number** | The amount that was posted in a foreign currency. This amount was converted using the exchange rate available at entry date and set into the amount field. | [optional] [default to undefined]
**originalCurrencyCode** | **string** | The currency in which this transaction was posted. The amounts are stored in the base currency, but the user may enter it in a foreign currency. | [optional] [default to undefined]
**originalTransactionKey** | **string** | The encoded key 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 loan account. | [optional] [default to undefined]
**parentLoanTransactionKey** | **string** | The key of the parent loan transaction. | [optional] [default to undefined]
**prepaymentRecalculationMethod** | **string** | The prepayment recalculation method types. | [optional] [default to undefined]
**taxes** | [**Taxes**](Taxes.md) |  | [optional] [default to undefined]
**terms** | [**LoanTerms**](LoanTerms.md) |  | [optional] [default to undefined]
**tillKey** | **string** | The till key associated with the 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 loan transaction. | [optional] [default to undefined]
**userKey** | **string** | The user that performed the transaction. | [optional] [default to undefined]
**valueDate** | **string** | The date of the entry in the organization time format and timezone. | [optional] [default to undefined]

## Example

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

const instance: LoanTransaction = {
    accountBalances,
    adjustmentTransactionKey,
    affectedAmounts,
    amount,
    bookingDate,
    branchKey,
    cardTransaction,
    centreKey,
    creationDate,
    currency,
    customPaymentAmounts,
    encodedKey,
    externalId,
    feeIncludedInPmt,
    fees,
    id,
    installmentEncodedKey,
    lateFeeIncludedInPmt,
    lateFeePerInstallment,
    linkedPrincipalOverpaymentTransactionKey,
    migrationEventKey,
    notes,
    originalAmount,
    originalCurrencyCode,
    originalTransactionKey,
    parentAccountKey,
    parentLoanTransactionKey,
    prepaymentRecalculationMethod,
    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)
