[][src]Struct stripe::BusinessProfile

pub struct BusinessProfile {
    pub mcc: Option<String>,
    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

mcc: Option<String>

The merchant category code for the account.

MCCs are used to classify businesses based on the goods or services they provide.

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

impl Clone for BusinessProfile[src]

impl Debug for BusinessProfile[src]

impl Serialize for BusinessProfile[src]

impl<'de> Deserialize<'de> for BusinessProfile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Same<T> for T

type Output = T

Should always be Self