-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathRecipient.java
More file actions
91 lines (73 loc) · 1.65 KB
/
Recipient.java
File metadata and controls
91 lines (73 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.riskified.models;
import com.riskified.validations.*;
import java.util.Date;
public class Recipient implements IValidated {
String email;
String phone;
SocialDetails social;
private String accountNumber;
private String routingNumber;
private Date createdAt;
private Date updatedAt;
private boolean selfRecipient;
private Wallet wallet;
public Recipient() {
}
public void validate(Validation validationType)
throws FieldBadFormatException {
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public SocialDetails getSocial() {
return social;
}
public void setSocial(SocialDetails social) {
this.social = social;
}
public String getAccountNumber() {
return accountNumber;
}
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
public String getRoutingNumber() {
return routingNumber;
}
public void setRoutingNumber(String routingNumber) {
this.routingNumber = routingNumber;
}
public Date getCreatedAt() {
return createdAt;
}
public void setCreatedAt(Date createdAt) {
this.createdAt = createdAt;
}
public Date getUpdatedAt(){
return updatedAt;
}
public void setUpdatedAt(Date updatedAt){
this.updatedAt = updatedAt;
}
public boolean isSelfRecipient() {
return selfRecipient;
}
public void setSelfRecipient(boolean selfRecipient) {
this.selfRecipient = selfRecipient;
}
public Wallet getWallet(){
return wallet;
}
public void setWallet(Wallet wallet){
this.wallet = wallet;
}
}