type DepositMonthly = {
    maximum_allowed_credit_balance: number;
    maximum_transactions_amount_per_month: number;
    remaining_transactions_amount_per_month: number;
    maximum_transactions_count_per_month: number;
    remaining_transactions_count_per_month: number;
};
export type { DepositMonthly };
