Package com.stripe.param
Class AccountCreateParams.BusinessProfile
- java.lang.Object
-
- com.stripe.param.AccountCreateParams.BusinessProfile
-
- Enclosing class:
- AccountCreateParams
public static class AccountCreateParams.BusinessProfile extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AccountCreateParams.BusinessProfile.Builder
static class
AccountCreateParams.BusinessProfile.SupportAddress
-
Method Summary
Modifier and Type Method Description static AccountCreateParams.BusinessProfile.Builder
builder()
java.util.Map<java.lang.String,java.lang.Object>
getExtraParams()
Map of extra parameters for custom features not available in this client library.java.lang.String
getMcc()
java.lang.String
getName()
The customer-facing business name.java.lang.String
getProductDescription()
Internal-only description of the product sold by, or service provided by, the business.AccountCreateParams.BusinessProfile.SupportAddress
getSupportAddress()
A publicly available mailing address for sending support issues to.java.lang.String
getSupportEmail()
A publicly available email address for sending support issues to.java.lang.String
getSupportPhone()
A publicly available phone number to call with support issues.java.lang.String
getSupportUrl()
A publicly available website for handling support issues.java.lang.String
getUrl()
The business's publicly available website.
-
-
-
Method Detail
-
builder
public static AccountCreateParams.BusinessProfile.Builder builder()
-
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@SerializedName
value. 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.
-
getMcc
public java.lang.String getMcc()
The merchant category code for the account. MCCs are used to classify businesses based on the goods or services they provide.
-
getName
public java.lang.String getName()
The customer-facing business name.
-
getProductDescription
public java.lang.String getProductDescription()
Internal-only description of the product sold by, or service provided by, the business. Used by Stripe for risk and underwriting purposes.
-
getSupportAddress
public AccountCreateParams.BusinessProfile.SupportAddress getSupportAddress()
A publicly available mailing address for sending support issues to.
-
getSupportEmail
public java.lang.String getSupportEmail()
A publicly available email address for sending support issues to.
-
getSupportPhone
public java.lang.String getSupportPhone()
A publicly available phone number to call with support issues.
-
getSupportUrl
public java.lang.String getSupportUrl()
A publicly available website for handling support issues.
-
getUrl
public java.lang.String getUrl()
The business's publicly available website.
-
-