File tree Expand file tree Collapse file tree 4 files changed +13
-13
lines changed
src/PeerBerry.API/ResponseModels Expand file tree Collapse file tree 4 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ public class Originator
100100 public bool autoinvestActive { get ; set ; }
101101 public string logoDark { get ; set ; }
102102 public string logoLight { get ; set ; }
103- public float interestRate { get ; set ; }
103+ public decimal interestRate { get ; set ; }
104104 }
105105
106106}
Original file line number Diff line number Diff line change @@ -53,18 +53,18 @@ public class Datum
5353 public string originatorTitle { get ; set ; }
5454 public string dateOfPurchase { get ; set ; }
5555 public string loanType { get ; set ; }
56- public float interest { get ; set ; }
57- public float interestRate { get ; set ; }
58- public float amount { get ; set ; }
56+ public decimal interest { get ; set ; }
57+ public decimal interestRate { get ; set ; }
58+ public decimal amount { get ; set ; }
5959 public string nextPaymentDate { get ; set ; }
6060 public string finalPaymentDate { get ; set ; }
6161 public string estimatedFinalPaymentDate { get ; set ; }
6262 public string finishedAt { get ; set ; }
6363 public float estimatedNextPayment { get ; set ; }
6464 public string lastPaymentDate { get ; set ; }
6565 public int term { get ; set ; }
66- public float receivedPayments { get ; set ; }
67- public float remainingPrincipal { get ; set ; }
66+ public decimal receivedPayments { get ; set ; }
67+ public decimal remainingPrincipal { get ; set ; }
6868 public string status { get ; set ; }
6969 public string currencySign { get ; set ; }
7070 public bool isFinished { get ; set ; }
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ public class Loan
2929 public string termTypeTitle { get ; set ; }
3030 public string status { get ; set ; }
3131 public string statusTitle { get ; set ; }
32- public float interestRate { get ; set ; }
32+ public decimal interestRate { get ; set ; }
3333 public int ? remainingTerm { get ; set ; }
3434 public int ? term { get ; set ; }
3535 public int ? initialTerm { get ; set ; }
36- public int ? loanAmount { get ; set ; }
37- public int ? assignedAmount { get ; set ; }
38- public float ? availableToInvest { get ; set ; }
36+ public decimal ? loanAmount { get ; set ; }
37+ public decimal ? assignedAmount { get ; set ; }
38+ public decimal ? availableToInvest { get ; set ; }
3939 public bool ? allowedToInvest { get ; set ; }
40- public int ? minimumInvestmentAmount { get ; set ; }
41- public float ? investedAmount { get ; set ; }
40+ public decimal ? minimumInvestmentAmount { get ; set ; }
41+ public decimal ? investedAmount { get ; set ; }
4242 public string currencySign { get ; set ; }
4343 public bool ? buyback { get ; set ; }
4444 public bool ? sellback { get ; set ; }
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ public class Category
4242 public int id { get ; set ; }
4343 public string title { get ; set ; }
4444 public string icon { get ; set ; }
45- public float interestRate { get ; set ; }
45+ public decimal interestRate { get ; set ; }
4646 public bool isLoyalty { get ; set ; }
4747 public bool isDefault { get ; set ; }
4848 }
You can’t perform that action at this time.
0 commit comments