# LoanTransactionDetails

Represents the loan transaction details.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**internalTransfer** | **boolean** | Whether the transaction was transferred between loans or deposit accounts | [optional] [default to undefined]
**targetDepositAccountKey** | **string** | In case of a transaction to a deposit account this represent the deposit account key to which the transaction was made. | [optional] [default to undefined]
**transactionChannelId** | **string** | The ID of the transaction channel associated with the transaction details. | [optional] [default to undefined]
**transactionChannelKey** | **string** | The encoded key of the transaction channel associated with the transaction details. | [optional] [default to undefined]

## Example

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

const instance: LoanTransactionDetails = {
    encodedKey,
    internalTransfer,
    targetDepositAccountKey,
    transactionChannelId,
    transactionChannelKey,
};
```

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