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
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ public class BankWirePaymentDetails implements IPaymentDetails {
private String accountNumber;
private String routingNumber;
private String token;
private Date storedPaymentCreatedAt;
private Date storedPaymentUpdatedAt;

public BankWirePaymentDetails(String accountNumber, String routingNumber) {
this.accountNumber = accountNumber;
Expand Down Expand Up @@ -36,6 +38,22 @@ public void setToken(String token){
this.token = token;
}

public Date getStoredPaymentCreatedAt(){
return self.storedPaymentCreatedAt;
}

public void setStoredPaymentCreatedAt(Date storedPaymentCreatedAt){
this.token = storedPaymentCreatedAt;
}

public Date getStoredPaymentUpdateddAt(){
return self.storedPaymentUpdatedAt;
}

public void setStoredPaymentUpdateddAt(Date storedPaymentUpdatedAt){
this.token = storedPaymentUpdatedAt;
}

public void validate(Validation validationType) throws FieldBadFormatException {
if (validationType == Validation.ALL) {
Validate.notNullOrEmpty(this, this.accountNumber, "Bank Account Number");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class Recipient implements IValidated {
private Date createdAt;
private Date updatedAt;
private boolean selfRecipient;
private String walletId;

public Recipient() {
}
Expand Down Expand Up @@ -79,4 +80,12 @@ public boolean isSelfRecipient() {
public void setSelfRecipient(boolean selfRecipient) {
this.selfRecipient = selfRecipient;
}

public String getWalletId(){
return self.walletId;
}

public void setWalletId(String walletId){
self.walletId = walletId
}
}