# TransferDepositTransactionInput

Represents the input for a transfer deposit transaction.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount to transfer from account | [default to undefined]
**encodedKey** | **string** | The encoded key of the entity, generated, globally unique | [optional] [readonly] [default to undefined]
**externalId** | **string** | The external id of the transfer transaction, customizable, unique | [optional] [default to undefined]
**notes** | **string** | Extra notes about this deposit transaction | [optional] [default to undefined]
**paymentDetails** | [**PaymentDetails**](PaymentDetails.md) |  | [optional] [default to undefined]
**paymentOrderId** | **string** | The payment order id of the transfer transaction, customizable | [optional] [default to undefined]
**transferDetails** | [**TransferDetailsInput**](TransferDetailsInput.md) |  | [default to undefined]
**valueDate** | **string** | The entry date of the transfer. If not specified it is considered the current date (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: TransferDepositTransactionInput = {
    amount,
    encodedKey,
    externalId,
    notes,
    paymentDetails,
    paymentOrderId,
    transferDetails,
    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)
