public abstract class AccountParam
extends java.lang.Object
AccountParam abstract class wraps key properties related to the user account.| Modifier and Type | Class and Description |
|---|---|
static class |
AccountParam.Builder
The
AccountParam.Builder abstract class allows the user to create and return an
AccountParam object. |
| Modifier and Type | Method and Description |
|---|---|
static AccountParam.Builder |
builder()
Returns the
AccountParam.Builder object for the AccountParam abstract class. |
abstract java.lang.String |
city()
Returns a String of the user's city.
|
abstract java.lang.String |
country()
Returns a String of the user's country.
|
abstract java.lang.String |
email()
Returns a String of the user's email address.
|
abstract com.google.gson.JsonElement |
extra()
Returns the
JsonObject that contains the extra information. |
abstract java.lang.String |
firstName()
Returns a String of the user's first name.
|
abstract java.lang.String |
lastName()
Returns a String of the user's last name.
|
abstract java.lang.String |
state()
Returns a String of the user's state of residence.
|
abstract java.lang.String |
street1()
Returns a String of the user's primary address.
|
abstract java.lang.String |
street2()
Returns a String of the user's secondary address.
|
abstract java.lang.String |
zip()
Returns a String of the user's ZIP Code.
|
@Nullable public abstract java.lang.String city()
null.@Nullable public abstract java.lang.String country()
null.@Nullable public abstract java.lang.String email()
null if you do not want to
update it. If it has been updated, then re-verification of the email address is required.@Nullable public abstract java.lang.String firstName()
null.@Nullable public abstract java.lang.String lastName()
null.@Nullable public abstract java.lang.String state()
null.@Nullable public abstract java.lang.String street1()
null.@Nullable public abstract java.lang.String street2()
null.@Nullable public abstract java.lang.String zip()
null.@Nullable public abstract com.google.gson.JsonElement extra()
JsonObject that contains the extra information.public static AccountParam.Builder builder()
AccountParam.Builder object for the AccountParam abstract class.AccountParam.Builder object for the AccountParam abstract class.