pub struct UpdateAccount<'a> {
Show 14 fields pub account_token: Option<&'a str>, pub business_profile: Option<BusinessProfile>, pub business_type: Option<AccountBusinessType>, pub capabilities: Option<UpdateAccountCapabilities>, pub company: Option<CompanyParams>, pub default_currency: Option<Currency>, pub documents: Option<UpdateAccountDocuments>, pub email: Option<&'a str>, pub expand: &'a [&'a str], pub external_account: Option<&'a str>, pub individual: Option<PersonParams>, pub metadata: Option<Metadata>, pub settings: Option<AccountSettingsParams>, pub tos_acceptance: Option<AcceptTos>,
}
Expand description

The parameters for Account::update.

Fields

account_token: Option<&'a str>

An account token, used to securely provide details to the account.

business_profile: Option<BusinessProfile>

Business information about the account.

business_type: Option<AccountBusinessType>

The business type.

capabilities: Option<UpdateAccountCapabilities>

Each key of the dictionary represents a capability, and each capability maps to its settings (e.g.

whether it has been requested or not). Each capability will be inactive until you have provided its specific requirements and Stripe has verified them. An account may have some of its requested capabilities be active and some be inactive.

company: Option<CompanyParams>

Information about the company or business.

This field is available for any business_type.

default_currency: Option<Currency>

Three-letter ISO currency code representing the default currency for the account.

This must be a currency that Stripe supports in the account’s country.

documents: Option<UpdateAccountDocuments>

Documents that may be submitted to satisfy various informational requests.

email: Option<&'a str>

The email address of the account holder.

This is only to make the account easier to identify to you. Stripe only emails Custom accounts with your consent.

expand: &'a [&'a str]

Specifies which fields in the response should be expanded.

external_account: Option<&'a str>

A card or bank account to attach to the account for receiving payouts (you won’t be able to use it for top-ups).

You can provide either a token, like the ones returned by Stripe.js, or a dictionary, as documented in the external_account parameter for bank account creation. By default, providing an external account sets it as the new default external account for its currency, and deletes the old default if one exists. To add additional external accounts without replacing the existing default for the currency, use the bank account or card creation API.

individual: Option<PersonParams>

Information about the person represented by the account.

This field is null unless business_type is set to individual.

metadata: Option<Metadata>

Set of key-value pairs that you can attach to an object.

This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.

settings: Option<AccountSettingsParams>

Options for customizing how the account functions within Stripe.

tos_acceptance: Option<AcceptTos>

Details on the account’s acceptance of the Stripe Services Agreement.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more