/* tslint:disable */ /* eslint-disable */ /** * loanproducts * 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. */ /** * Tax settings for a specific Predefined fee that overrides the tax settings of Loan Product */ export interface FeeTaxSettings { /** * Marks a specific fee as non-taxable (taxes are not calculated for it).Feature is in the Early Stage. To be enabled by request. */ taxableCalculationMethod?: FeeTaxSettingsTaxableCalculationMethodEnum; } export const FeeTaxSettingsTaxableCalculationMethodEnum = { Default: 'DEFAULT', NonTaxable: 'NON_TAXABLE', CustomTax: 'CUSTOM_TAX', } as const; export type FeeTaxSettingsTaxableCalculationMethodEnum = (typeof FeeTaxSettingsTaxableCalculationMethodEnum)[keyof typeof FeeTaxSettingsTaxableCalculationMethodEnum];