Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: restore interest_paid_previous_year and interest_paid_ytd
Browse files Browse the repository at this point in the history
remove unused account details fields has_daily_deposit_limit_current, has_daily_deposit_limit_total, has_monthly_deposit_limit_current, has_monthly_deposit_limit_total, has_next_payment, has_principal_balance and has_statement_balance
meotchwilliams committed Nov 5, 2024
1 parent 1694ab5 commit 20f1d03
Showing 2 changed files with 20 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -43,6 +43,10 @@ public class Account extends MdxBase<Account> {
private BigDecimal holdTotal;
@XmlElement(name = "id")
private String id;
@XmlElement(name = "interest_paid_previous_year")
private Double interestPaidPreviousYear;
@XmlElement(name = "interest_paid_ytd")
private Double interestPaidYtd;
@XmlElement(name = "interest_rate")
private Double interestRate;
@XmlElement(name = "is_closed")
@@ -277,6 +281,22 @@ public final void setInsuredStatus(String insuredStatus) {
this.federalInsuranceStatus = insuredStatus;
}

public final Double getInterestPaidPreviousYear() {
return interestPaidPreviousYear;
}

public final void setInterestPaidPreviousYear(Double newInterestPaidPreviousYear) {
this.interestPaidPreviousYear = newInterestPaidPreviousYear;
}

public final Double getInterestPaidYtd() {
return interestPaidYtd;
}

public final void setInterestPaidYtd(Double newInterestPaidYtd) {
this.interestPaidYtd = newInterestPaidYtd;
}

public final Double getInterestRate() {
return interestRate;
}
Original file line number Diff line number Diff line change
@@ -17,8 +17,6 @@ public class CoreFields extends MdxBase<CoreFields> {
private Boolean hasCashSurrenderValue;
private Boolean hasCreditLimit;
private Boolean hasCurrencyCode;
private Boolean hasDailyDepositLimitCurrent;
private Boolean hasDailyDepositLimitTotal;
private Boolean hasDayPaymentIsDue;
private Boolean hasDeathBenefit;
private Boolean hasMonthlyTransferLimit;
@@ -38,10 +36,7 @@ public class CoreFields extends MdxBase<CoreFields> {
private Boolean hasMinimumBalance;
private Boolean hasMinimumPayment;
private Boolean hasMonthlyTransferCount;
private Boolean hasMonthlyDepositLimitCurrent;
private Boolean hasMonthlyDepositLimitTotal;
private Boolean hasName;
private Boolean hasNextPayment;
private Boolean hasNickname;
private Boolean hasOriginalBalance;
private Boolean hasPastDueAmount;
@@ -52,10 +47,8 @@ public class CoreFields extends MdxBase<CoreFields> {
private Boolean hasPendingBalance;
private Boolean hasPendingTransactionsTotal;
private Boolean hasPremiumAmount;
private Boolean hasPrincipalBalance;
private Boolean hasRoutingNumber;
private Boolean hasStartedDate;
private Boolean hasStatementBalance;
private Boolean hasStatementClosedOn;
private Boolean hasStatementLateCharges;
private Boolean hasSubtype;

0 comments on commit 20f1d03

Please sign in to comment.