/* tslint:disable */ /* eslint-disable */ /** * loans * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The custom predefined fees, they may be used as the expected predefined fees that will be applied on the disbursement. */ export interface CustomPredefinedFee { /** * The amount of the custom fee. */ amount?: number; /** * The encoded key of the custom predefined fee, auto generated, unique. */ encodedKey?: string; /** * The percentage of the custom fee. */ percentage?: number; /** * The encoded key of the predefined fee */ predefinedFeeEncodedKey?: string; }