Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .clothesline.yaml
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ public class DestinationAccount extends MdxBase<DestinationAccount> {

private String accountHolder;
private String accountNumber;
private String accountType;
private String accountTypeId;
private String accountTypeSubtype;
private Integer accountTypeNumber;
private String id;
private String nickname;
Expand All @@ -30,6 +32,14 @@ public final void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}

public final String getAccountType() {
return accountType;
}

public final void setAccountType(String accountType) {
this.accountType = accountType;
}

public final String getAccountTypeId() {
return accountTypeId;
}
Expand All @@ -38,6 +48,14 @@ public final void setAccountTypeId(String accountTypeId) {
this.accountTypeId = accountTypeId;
}

public final String getAccountTypeSubtype() {
return accountTypeSubtype;
}

public final void setAccountTypeSubtype(String accountTypeSubtype) {
this.accountTypeSubtype = accountTypeSubtype;
}

public final Integer getAccountTypeNumber() {
return accountTypeNumber;
}
Expand Down