Package com.stripe.param
Class TokenCreateParams.Account
- java.lang.Object
-
- com.stripe.param.TokenCreateParams.Account
-
- Enclosing class:
- TokenCreateParams
public static class TokenCreateParams.Account extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classTokenCreateParams.Account.Builderstatic classTokenCreateParams.Account.BusinessTypestatic classTokenCreateParams.Account.Companystatic classTokenCreateParams.Account.Individual
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TokenCreateParams.Account.Builderbuilder()TokenCreateParams.Account.BusinessTypegetBusinessType()The business type.TokenCreateParams.Account.CompanygetCompany()Information about the company or business.java.util.Map<java.lang.String,java.lang.Object>getExtraParams()Map of extra parameters for custom features not available in this client library.TokenCreateParams.Account.IndividualgetIndividual()Information about the person represented by the account.java.lang.BooleangetTosShownAndAccepted()Whether the user described by the data in the token has been shown the Stripe Connected Account Agreement.
-
-
-
Method Detail
-
builder
public static TokenCreateParams.Account.Builder builder()
-
getBusinessType
public TokenCreateParams.Account.BusinessType getBusinessType()
The business type.
-
getCompany
public TokenCreateParams.Account.Company getCompany()
Information about the company or business.
-
getExtraParams
public java.util.Map<java.lang.String,java.lang.Object> getExtraParams()
Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's@SerializedNamevalue. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance.
-
getIndividual
public TokenCreateParams.Account.Individual getIndividual()
Information about the person represented by the account.
-
getTosShownAndAccepted
public java.lang.Boolean getTosShownAndAccepted()
Whether the user described by the data in the token has been shown the Stripe Connected Account Agreement. When creating an account token to create a new Connect account, this value must betrue.
-
-