-
public final class Contact
This represents the required given name field and optional fields that can be passed in as part of the verification process. The more fields you supply, the greater the chance the verification will be successful.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
Contact.Builder
-
Field Summary
Fields Modifier and Type Field Description private final String
given_name
private final String
family_name
private final String
email
private final String
phone
private final List<String>
address_lines
private final String
city
private final String
region
private final String
postal_code
private final Country
country_code
-
Method Summary
Modifier and Type Method Description Boolean
equals(Object other)
Integer
hashCode()
final String
getGiven_name()
final String
getFamily_name()
final String
getEmail()
final String
getPhone()
final List<String>
getAddress_lines()
final String
getCity()
final String
getRegion()
final String
getPostal_code()
final Country
getCountry_code()
-
-
Method Detail
-
getGiven_name
final String getGiven_name()
-
getFamily_name
final String getFamily_name()
-
getAddress_lines
final List<String> getAddress_lines()
-
getPostal_code
final String getPostal_code()
-
getCountry_code
final Country getCountry_code()
-
-
-
-