# PaymentMadeTransactionInput

Represents the request payload for creating a transaction of type PAYMENT_MADE

## Properties

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

## Example

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

const instance: PaymentMadeTransactionInput = {
    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)
