pub struct AccountBusinessProfile {
pub annual_revenue: Option<AccountAnnualRevenue>,
pub estimated_worker_count: Option<u64>,
pub mcc: Option<String>,
pub minority_owned_business_designation: Option<Vec<AccountBusinessProfileMinorityOwnedBusinessDesignation>>,
pub monthly_estimated_revenue: Option<AccountMonthlyEstimatedRevenue>,
pub name: Option<String>,
pub product_description: Option<String>,
pub support_address: Option<Address>,
pub support_email: Option<String>,
pub support_phone: Option<String>,
pub support_url: Option<String>,
pub url: Option<String>,
}
Fields§
§annual_revenue: Option<AccountAnnualRevenue>
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<AccountBusinessProfileMinorityOwnedBusinessDesignation>>
Whether the business is a minority-owned, women-owned, and/or LGBTQI+-owned business.
monthly_estimated_revenue: Option<AccountMonthlyEstimatedRevenue>
§name: Option<String>
The customer-facing business name.
product_description: Option<String>
Internal-only description of the product sold or service provided by the business. It’s used by Stripe for risk and underwriting purposes.
support_address: Option<Address>
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.
Trait Implementations§
Source§impl Clone for AccountBusinessProfile
impl Clone for AccountBusinessProfile
Source§fn clone(&self) -> AccountBusinessProfile
fn clone(&self) -> AccountBusinessProfile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more