Package com.stripe.param.v2.core
Class AccountUpdateParams.Identity.Builder
java.lang.Object
com.stripe.param.v2.core.AccountUpdateParams.Identity.Builder
- Enclosing class:
- AccountUpdateParams.Identity
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild()
Finalize and obtain parameter instance from this builder.putAllExtraParam
(Map<String, Object> map) Add all map key/value pairs to `extraParams` map.putExtraParam
(String key, Object value) Add a key/value pair to `extraParams` map.setAttestations
(AccountUpdateParams.Identity.Attestations attestations) Attestations from the identity's key people, e.g.setBusinessDetails
(AccountUpdateParams.Identity.BusinessDetails businessDetails) Information about the company or business.The country in which the account holder resides, or in which the business is legally established.setEntityType
(AccountUpdateParams.Identity.EntityType entityType) The entity type.setIndividual
(AccountUpdateParams.Identity.Individual individual) Information about the individual represented by the Account.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
build
Finalize and obtain parameter instance from this builder. -
setAttestations
public AccountUpdateParams.Identity.Builder setAttestations(AccountUpdateParams.Identity.Attestations attestations) Attestations from the identity's key people, e.g. owners, executives, directors. -
setBusinessDetails
public AccountUpdateParams.Identity.Builder setBusinessDetails(AccountUpdateParams.Identity.BusinessDetails businessDetails) Information about the company or business. -
setCountry
public AccountUpdateParams.Identity.Builder setCountry(AccountUpdateParams.Identity.Country country) The country in which the account holder resides, or in which the business is legally established. This should be an ISO 3166-1 alpha-2 country code. -
setEntityType
public AccountUpdateParams.Identity.Builder setEntityType(AccountUpdateParams.Identity.EntityType entityType) The entity type. -
putExtraParam
Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeAccountUpdateParams.Identity.extraParams
for the field documentation. -
putAllExtraParam
Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. SeeAccountUpdateParams.Identity.extraParams
for the field documentation. -
setIndividual
public AccountUpdateParams.Identity.Builder setIndividual(AccountUpdateParams.Identity.Individual individual) Information about the individual represented by the Account. This property isnull
unlessentity_type
is set toindividual
.
-