Interface: IFeeCalc
Interface representing a fee calculator.
See
Properties
code
• code: string
The code of the fee calculator.
Defined in
src/merchant/merchant.interface.ts:13
fee
• fee: Object
The fee details.
Type declaration
Name | Type | Description |
---|---|---|
flat | number | The flat fee amount. |
max | null | number | The maximum fee amount (nullable). |
min | null | number | The minimum fee amount (nullable). |
percent | string | The percentage fee amount. |
Defined in
src/merchant/merchant.interface.ts:23
name
• name: string
The name of the fee calculator.
Defined in
src/merchant/merchant.interface.ts:18
total_fee
• total_fee: Object
The total fee amounts.
Type declaration
Name | Type | Description |
---|---|---|
customer | number | The customer fee amount. |
merchant | number | The merchant fee amount. |