# WithdrawalRedrawTransactionInput

Represents the request payload for creating a transaction of type WITHDRAWAL_REDRAW

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount to be withdrawn from redraw balance | [default to undefined]
**bookingDate** | **string** | The booking date of the withdrawal transaction (as Organization Time) | [optional] [default to undefined]
**externalId** | **string** | The external id of the withdrawal transaction, customizable, unique | [optional] [default to undefined]
**notes** | **string** | Extra notes about the withdrawal transaction. Notes can have at most 255 characters in length. | [optional] [default to undefined]
**originalCurrencyCode** | **string** | The currency code for the transaction | [optional] [default to undefined]
**transactionDetails** | [**LoanTransactionDetailsInput**](LoanTransactionDetailsInput.md) |  | [optional] [default to undefined]
**valueDate** | **string** | The value date of the withdrawal transaction (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: WithdrawalRedrawTransactionInput = {
    amount,
    bookingDate,
    externalId,
    notes,
    originalCurrencyCode,
    transactionDetails,
    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)
