# DepositProductPredefinedFeeConfiguration

Represents the configuration for a predefined fee.

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**accountingRules** | [**Array&lt;DepositGLAccountingRuleConfiguration&gt;**](DepositGLAccountingRuleConfiguration.md) | A list of accounting rules defined for this fee. | [optional] [default to undefined]
**active** | **boolean** | Indicates if the fee is active. | [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** | Shows the amount calculation method of a fee | [optional] [default to undefined]
**applyDateMethod** | **string** | Shows when a fee should be applied; to be used with monthly deposit fees. | [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]
**trigger** | **string** | Shows the event that will trigger a fee. | [optional] [default to undefined]

## Example

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

const instance: DepositProductPredefinedFeeConfiguration = {
    accountingRules,
    active,
    amount,
    amountCalculationFunctionName,
    amountCalculationMethod,
    applyDateMethod,
    id,
    name,
    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)
