public abstract static class AccountParam.Builder
extends java.lang.Object
AccountParam.Builder abstract class allows the user to create and return an
AccountParam object. For example, | Modifier and Type | Method and Description |
|---|---|
abstract AccountParam |
build()
Builds the
AccountParam object that is used to wrap key properties related to the
user account. |
abstract AccountParam.Builder |
city(java.lang.String city)
|
abstract AccountParam.Builder |
country(java.lang.String country)
Returns the
AccountParam.Builder for the AccountParam.country() component of the
AccountParam object. |
abstract AccountParam.Builder |
email(java.lang.String email)
|
abstract AccountParam.Builder |
extra(com.google.gson.JsonElement extra) |
abstract AccountParam.Builder |
firstName(java.lang.String firstName)
Returns the
AccountParam.Builder for the AccountParam.firstName() component of the
AccountParam object. |
abstract AccountParam.Builder |
lastName(java.lang.String lastName)
Returns the
AccountParam.Builder for the AccountParam.lastName() component of the
AccountParam object. |
abstract AccountParam.Builder |
state(java.lang.String state)
|
abstract AccountParam.Builder |
street1(java.lang.String street1)
Returns the
AccountParam.Builder for the AccountParam.street1() component of the
AccountParam object. |
abstract AccountParam.Builder |
street2(java.lang.String street2)
Returns the
AccountParam.Builder for the AccountParam.street2() component of the
AccountParam object. |
abstract AccountParam.Builder |
zip(java.lang.String zip)
|
public abstract AccountParam.Builder city(java.lang.String city)
city - the user's city of residenceAccountParam.Builder for the AccountParam.city() component of the
AccountParam object.public abstract AccountParam.Builder country(java.lang.String country)
AccountParam.Builder for the AccountParam.country() component of the
AccountParam object.country - the user's country of residenceAccountParam.Builder for the AccountParam.country() component of the
AccountParam object.public abstract AccountParam.Builder email(java.lang.String email)
email - the user's email addressAccountParam.Builder for the AccountParam.email() component of the
AccountParam object.public abstract AccountParam.Builder firstName(java.lang.String firstName)
AccountParam.Builder for the AccountParam.firstName() component of the
AccountParam object.firstName - the user's first nameAccountParam.Builder for the AccountParam.firstName() component of the
AccountParam object.public abstract AccountParam.Builder lastName(java.lang.String lastName)
AccountParam.Builder for the AccountParam.lastName() component of the
AccountParam object.lastName - the user's last nameAccountParam.Builder for the AccountParam.lastName() component of the
AccountParam object.public abstract AccountParam.Builder state(java.lang.String state)
state - the user's state of residenceAccountParam.Builder for the AccountParam.state() component of the
AccountParam object.public abstract AccountParam.Builder street1(java.lang.String street1)
AccountParam.Builder for the AccountParam.street1() component of the
AccountParam object.street1 - the user's primary addressAccountParam.Builder for the AccountParam.street1() component of the
AccountParam object.public abstract AccountParam.Builder street2(java.lang.String street2)
AccountParam.Builder for the AccountParam.street2() component of the
AccountParam object.street2 - the user's secondary address. This may include information such as
apartment number and/or floor numberAccountParam.Builder for the AccountParam.street2() component of the
AccountParam object.public abstract AccountParam.Builder zip(java.lang.String zip)
zip - the user's ZIP codeAccountParam.Builder for the AccountParam.zip() component of the
AccountParam object.public abstract AccountParam.Builder extra(com.google.gson.JsonElement extra)
public abstract AccountParam build()
AccountParam object that is used to wrap key properties related to the
user account.AccountParam object that is used to wrap key properties related to
the user account.