# FeeLoanTransactionInput

Represents the request payload for creating a transaction of type FEE_APPLIED

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**amount** | **number** | The fee amount to be applied on the account | [optional] [default to undefined]
**bookingDate** | **string** | The date when the fee transaction is logged into accounting (as Organization Time) | [optional] [default to undefined]
**externalId** | **string** | The external id of the repayment transaction, customizable, unique | [optional] [default to undefined]
**feeCapitalisation** | **boolean** | This flag indicates whether the fee should be capitalised or not | [optional] [default to undefined]
**firstRepaymentDate** | **string** | The date of the first repayment for the loan account (as Organization Time) | [optional] [default to undefined]
**installmentNumber** | **number** | The installment number on which the fee will be applied | [optional] [default to undefined]
**notes** | **string** | Extra notes about the current transaction | [optional] [default to undefined]
**predefinedFeeKey** | **string** | The encodedKey of the predefined fee that defines the current fee | [optional] [default to undefined]
**valueDate** | **string** | The date when to apply the fee (as Organization Time) | [optional] [default to undefined]

## Example

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

const instance: FeeLoanTransactionInput = {
    amount,
    bookingDate,
    externalId,
    feeCapitalisation,
    firstRepaymentDate,
    installmentNumber,
    notes,
    predefinedFeeKey,
    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)
