pub struct CreateAccountBusinessProfile {
pub annual_revenue: Option<AnnualRevenueSpecs>,
pub estimated_worker_count: Option<u64>,
pub mcc: Option<String>,
pub minority_owned_business_designation: Option<Vec<CreateAccountBusinessProfileMinorityOwnedBusinessDesignation>>,
pub monthly_estimated_revenue: Option<MonthlyEstimatedRevenueSpecs>,
pub name: Option<String>,
pub product_description: Option<String>,
pub support_address: Option<CreateAccountBusinessProfileSupportAddress>,
pub support_email: Option<String>,
pub support_phone: Option<String>,
pub support_url: Option<String>,
pub url: Option<String>,
}
Expand description
Business information about the account.
Fields§
§annual_revenue: Option<AnnualRevenueSpecs>
The applicant’s gross annual revenue for its preceding fiscal year.
estimated_worker_count: Option<u64>
An estimated upper bound of employees, contractors, vendors, etc. currently working for the business.
mcc: Option<String>
The merchant category code for the account. MCCs are used to classify businesses based on the goods or services they provide.
minority_owned_business_designation: Option<Vec<CreateAccountBusinessProfileMinorityOwnedBusinessDesignation>>
Whether the business is a minority-owned, women-owned, and/or LGBTQI+ -owned business.
monthly_estimated_revenue: Option<MonthlyEstimatedRevenueSpecs>
An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India.
name: Option<String>
The customer-facing business name.
product_description: Option<String>
Internal-only description of the product sold by, or service provided by, the business. Used by Stripe for risk and underwriting purposes.
support_address: Option<CreateAccountBusinessProfileSupportAddress>
A publicly available mailing address for sending support issues to.
support_email: Option<String>
A publicly available email address for sending support issues to.
support_phone: Option<String>
A publicly available phone number to call with support issues.
support_url: Option<String>
A publicly available website for handling support issues.
url: Option<String>
The business’s publicly available website.
Implementations§
Trait Implementations§
Source§impl Clone for CreateAccountBusinessProfile
impl Clone for CreateAccountBusinessProfile
Source§fn clone(&self) -> CreateAccountBusinessProfile
fn clone(&self) -> CreateAccountBusinessProfile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more