Package com.stripe.model
Class Account.BusinessProfile
- java.lang.Object
-
- com.stripe.model.StripeObject
-
- com.stripe.model.Account.BusinessProfile
-
- All Implemented Interfaces:
StripeObjectInterface
- Enclosing class:
- Account
public static class Account.BusinessProfile extends StripeObject
-
-
Field Summary
-
Fields inherited from class com.stripe.model.StripeObject
PRETTY_PRINT_GSON
-
-
Constructor Summary
Constructors Constructor Description BusinessProfile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetMcc()java.lang.StringgetName()The customer-facing business name.java.lang.StringgetProductDescription()Internal-only description of the product sold or service provided by the business.AddressgetSupportAddress()A publicly available mailing address for sending support issues to.java.lang.StringgetSupportEmail()A publicly available email address for sending support issues to.java.lang.StringgetSupportPhone()A publicly available phone number to call with support issues.java.lang.StringgetSupportUrl()A publicly available website for handling support issues.java.lang.StringgetUrl()The business's publicly available website.inthashCode()voidsetMcc(java.lang.String mcc)voidsetName(java.lang.String name)The customer-facing business name.voidsetProductDescription(java.lang.String productDescription)Internal-only description of the product sold or service provided by the business.voidsetSupportAddress(Address supportAddress)A publicly available mailing address for sending support issues to.voidsetSupportEmail(java.lang.String supportEmail)A publicly available email address for sending support issues to.voidsetSupportPhone(java.lang.String supportPhone)A publicly available phone number to call with support issues.voidsetSupportUrl(java.lang.String supportUrl)A publicly available website for handling support issues.voidsetUrl(java.lang.String url)The business's publicly available website.-
Methods inherited from class com.stripe.model.StripeObject
equals, getLastResponse, getRawJsonObject, setLastResponse, toJson, toString
-
-
-
-
Method Detail
-
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 or service provided by the business. It's used by Stripe for risk and underwriting purposes.
-
getSupportAddress
public Address 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.
-
setMcc
public void setMcc(java.lang.String mcc)
The merchant category code for the account. MCCs are used to classify businesses based on the goods or services they provide.
-
setName
public void setName(java.lang.String name)
The customer-facing business name.
-
setProductDescription
public void setProductDescription(java.lang.String productDescription)
Internal-only description of the product sold or service provided by the business. It's used by Stripe for risk and underwriting purposes.
-
setSupportAddress
public void setSupportAddress(Address supportAddress)
A publicly available mailing address for sending support issues to.
-
setSupportEmail
public void setSupportEmail(java.lang.String supportEmail)
A publicly available email address for sending support issues to.
-
setSupportPhone
public void setSupportPhone(java.lang.String supportPhone)
A publicly available phone number to call with support issues.
-
setSupportUrl
public void setSupportUrl(java.lang.String supportUrl)
A publicly available website for handling support issues.
-
setUrl
public void setUrl(java.lang.String url)
The business's publicly available website.
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-