# WithdrawalDepositTransactionInput

Represents the input for a withdrawal transaction.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount to withdraw from account | [default to undefined]
**bookingDate** | **string** | The date of the withdrawal when the transaction is logged into accounting. If not specified it is considered the value date | [optional] [default to undefined]
**externalId** | **string** | The external id of the withdrawal transaction, customizable, unique | [optional] [default to undefined]
**holdExternalReferenceId** | **string** | The external id of an account authorization hold | [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 withdrawal transaction, customizable | [optional] [default to undefined]
**transactionDetails** | [**TransactionDetailsInput**](TransactionDetailsInput.md) |  | [optional] [default to undefined]
**valueDate** | **string** | The entry date of the withdrawal. If not specified it is considered the current date (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: WithdrawalDepositTransactionInput = {
    amount,
    bookingDate,
    externalId,
    holdExternalReferenceId,
    notes,
    paymentDetails,
    paymentOrderId,
    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)
