# DepositTransactionInput

Represents the request payload for creating a transaction of type DEPOSIT.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount that was added to an account | [default to undefined]
**bookingDate** | **string** | The date of Journal Entry (as Organization Time) | [optional] [default to undefined]
**externalId** | **string** | The external id of the deposit 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 deposit transaction, customizable | [optional] [default to undefined]
**skipMaximumBalanceValidation** | **boolean** | Flag indicating that a maximum balance validation should be skipped | [optional] [default to undefined]
**transactionDetails** | [**TransactionDetailsInput**](TransactionDetailsInput.md) |  | [optional] [default to undefined]
**valueDate** | **string** | The entry date of the deposit (as Organization Time) | [optional] [default to undefined]

## Example

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

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