Skip to content

Commit

Permalink
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
  • Loading branch information
meotchwilliams committed Nov 5, 2024
1 parent 1694ab5 commit c6558a9
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit c6558a9

Please sign in to comment.