
com.riskified.models.Recipient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riskified-sdk Show documentation
Show all versions of riskified-sdk Show documentation
Risikified rest api SDK for java
The newest version!
package com.riskified.models;
import com.riskified.validations.*;
public class Recipient implements IValidated {
String email;
String phone;
SocialDetails social;
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy