Credit Card Configuration

This section provides settings related to credit card functionality in the Kartik-Banking system. Configure limits per account type, interest rates, and collection behavior. These settings apply to Fleeca accounts only (Swiss Bank support is currently not included).

Config.CreditCardsSetting = {
    ['fleeca'] = {
        ["shared"] = {
            ['enabled'] = true,
            ['defaultLimit'] = 5000
        },
        ["company"] = {
            ['enabled'] = true,
            ['defaultLimit'] = 5000
        },
        ["personal"] = {
            ['enabled'] = true,
            ['defaultLimit'] = 5000
        },
    }

    -- not added for swiss banks for now 
}

Config.CreditCard = {
    collectionPeriod = 30, --  every 30 days from account
    interestRate = 0.15,
    minimumPaymentRate = 0.15
}

Last updated