# LoanProductPredefinedFeeConfiguration

Represents the configuration for a predefined fee for loan product.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountingRules** | [**Array&lt;LoanProductGLAccountingRuleConfiguration&gt;**](LoanProductGLAccountingRuleConfiguration.md) | A list of accounting rules defined for this fee. | [optional] [default to undefined]
**amortizationSettings** | [**FeeAmortizationConfiguration**](FeeAmortizationConfiguration.md) |  | [optional] [default to undefined]
**amount** | **number** | The amount of the fee. | [optional] [default to undefined]
**amountCalculationFunctionName** | **string** | External function | [optional] [default to undefined]
**amountCalculationMethod** | **string** | Defines the fee amount calculation method of loan product | [optional] [default to undefined]
**feeApplication** | **string** | The fee application type of loan product | [optional] [default to undefined]
**id** | **string** | The id of the fee. | [optional] [default to undefined]
**name** | **string** | The name of the fee. | [optional] [default to undefined]
**percentageAmount** | **number** | The amount of the fee in percents applied to percentSource | [optional] [default to undefined]
**state** | **string** | The current fee state of loan product | [optional] [default to undefined]
**taxSettings** | [**TaxConfiguration**](TaxConfiguration.md) |  | [optional] [default to undefined]
**trigger** | **string** | The event that will trigger a fee. | [optional] [default to undefined]

## Example

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

const instance: LoanProductPredefinedFeeConfiguration = {
    accountingRules,
    amortizationSettings,
    amount,
    amountCalculationFunctionName,
    amountCalculationMethod,
    feeApplication,
    id,
    name,
    percentageAmount,
    state,
    taxSettings,
    trigger,
};
```

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