Skip to content

Commit

Permalink
feat: Added insuredStatus field in Account
Browse files Browse the repository at this point in the history
  • Loading branch information
Sathish Ramesh authored and mattnichols committed Aug 20, 2024
1 parent f0a023f commit 8a845fd
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ public class Account extends MdxBase<Account> {
private String subtype;
@XmlElement(name = "type")
private String type;
@XmlElement(name = "insured_status")
private String insuredStatus;

// --------------------------------------------------------
// Internal Fields
Expand Down Expand Up @@ -605,6 +607,14 @@ public final void setType(String newType) {
this.type = newType;
}

public final String getInsuredStatus() {
return insuredStatus;
}

public final void setInsuredStatus(String insuredStatus) {
this.insuredStatus = insuredStatus;
}

// Internal Fields

public final String getAccountMICRNumber() {
Expand Down

0 comments on commit 8a845fd

Please sign in to comment.