We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fee4810 + 1cc0410 commit e0ed305Copy full SHA for e0ed305
1 file changed
riskified-sdk/src/main/java/com/riskified/models/Customer.java
@@ -27,6 +27,7 @@ public class Customer implements IValidated {
27
private Gender gender; // male or female
28
private Address address;
29
private String accountType;
30
+ private Integer linkedAccounts;
31
32
public Customer() {
33
@@ -222,4 +223,10 @@ public String getAccountType() {
222
223
public void setAccountType(String accountType) {
224
this.accountType = accountType;
225
}
226
+
227
+ public Integer getLinkedAccounts() {
228
+ return linkedAccounts;
229
+ }
230
231
+ public void setLinkedAccounts(Integer linkedAccounts) { this.linkedAccounts = linkedAccounts; }
232
0 commit comments