# CreditBalanceDepositTransactionInput

Represents the request payload for creating a transaction of type CREDIT_BALANCE_DEPOSIT

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The amount of the deposit to Credit Balance | [optional] [default to undefined]
**bookingDate** | **string** | The booking date of the repayment (as Organization Time) | [optional] [default to undefined]
**entryDate** | **string** | The entry date of the repayment (as Organization Time) | [optional] [default to undefined]
**notes** | **string** | Extra notes about the deposit to Credit Balance transaction. Notes can have at most 255 characters in length. | [optional] [default to undefined]
**originalCurrencyCode** | **string** | The currency code for the deposit to Credit Balance transaction | [optional] [default to undefined]
**parentLoanTransactionKey** | **string** | EncodedKey of the Parent Loan transaction originated this Deposit to Credit Balance transaction | [optional] [default to undefined]
**transactionDetails** | [**LoanTransactionDetailsInput**](LoanTransactionDetailsInput.md) |  | [optional] [default to undefined]

## Example

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

const instance: CreditBalanceDepositTransactionInput = {
    amount,
    bookingDate,
    entryDate,
    notes,
    originalCurrencyCode,
    parentLoanTransactionKey,
    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)
