# DepositTransactionBulkableInputDTO

Represents the request payload for creating a deposit transactions when sent in bulk.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountId** | **string** | The id of the account | [default to undefined]
**amount** | **number** | The amount that was added to an account | [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]

## Example

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

const instance: DepositTransactionBulkableInputDTO = {
    accountId,
    amount,
    externalId,
    holdExternalReferenceId,
    notes,
    paymentDetails,
    paymentOrderId,
    skipMaximumBalanceValidation,
    transactionDetails,
};
```

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