File tree Expand file tree Collapse file tree
riskified-sdk/src/main/java/com/riskified/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ public class BankWirePaymentDetails implements IPaymentDetails {
66 private String accountNumber ;
77 private String routingNumber ;
88 private String token ;
9+ private Date storedPaymentCreatedAt ;
10+ private Date storedPaymentUpdatedAt ;
911
1012 public BankWirePaymentDetails (String accountNumber , String routingNumber ) {
1113 this .accountNumber = accountNumber ;
@@ -36,6 +38,22 @@ public void setToken(String token){
3638 this .token = token ;
3739 }
3840
41+ public Date getStoredPaymentCreatedAt (){
42+ return self .storedPaymentCreatedAt ;
43+ }
44+
45+ public void setStoredPaymentCreatedAt (Date storedPaymentCreatedAt ){
46+ this .token = storedPaymentCreatedAt ;
47+ }
48+
49+ public Date getStoredPaymentUpdateddAt (){
50+ return self .storedPaymentUpdatedAt ;
51+ }
52+
53+ public void setStoredPaymentUpdateddAt (Date storedPaymentUpdatedAt ){
54+ this .token = storedPaymentUpdatedAt ;
55+ }
56+
3957 public void validate (Validation validationType ) throws FieldBadFormatException {
4058 if (validationType == Validation .ALL ) {
4159 Validate .notNullOrEmpty (this , this .accountNumber , "Bank Account Number" );
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ public class Recipient implements IValidated {
1414 private Date createdAt ;
1515 private Date updatedAt ;
1616 private boolean selfRecipient ;
17+ private String walletId ;
1718
1819 public Recipient () {
1920 }
@@ -79,4 +80,12 @@ public boolean isSelfRecipient() {
7980 public void setSelfRecipient (boolean selfRecipient ) {
8081 this .selfRecipient = selfRecipient ;
8182 }
83+
84+ public String getWalletId (){
85+ return self .walletId ;
86+ }
87+
88+ public void setWalletId (String walletId ){
89+ self .walletId = walletId
90+ }
8291}
You can’t perform that action at this time.
0 commit comments