pub struct UpdateAccountSettings {
pub bacs_debit_payments: Option<BacsDebitPaymentsSpecs>,
pub branding: Option<BrandingSettingsSpecs>,
pub card_issuing: Option<CardIssuingSettingsSpecs>,
pub card_payments: Option<CardPaymentsSettingsSpecs>,
pub invoices: Option<UpdateAccountSettingsInvoices>,
pub payments: Option<PaymentsSettingsSpecs>,
pub payouts: Option<UpdateAccountSettingsPayouts>,
pub treasury: Option<TreasurySettingsSpecs>,
}
Expand description
Options for customizing how the account functions within Stripe.
Fields§
§bacs_debit_payments: Option<BacsDebitPaymentsSpecs>
Settings specific to Bacs Direct Debit payments.
branding: Option<BrandingSettingsSpecs>
Settings used to apply the account’s branding to email receipts, invoices, Checkout, and other products.
card_issuing: Option<CardIssuingSettingsSpecs>
Settings specific to the account’s use of the Card Issuing product.
card_payments: Option<CardPaymentsSettingsSpecs>
Settings specific to card charging on the account.
invoices: Option<UpdateAccountSettingsInvoices>
Settings specific to the account’s use of Invoices.
payments: Option<PaymentsSettingsSpecs>
Settings that apply across payment methods for charging on the account.
payouts: Option<UpdateAccountSettingsPayouts>
Settings specific to the account’s payouts.
treasury: Option<TreasurySettingsSpecs>
Settings specific to the account’s Treasury FinancialAccounts.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateAccountSettings
impl Clone for UpdateAccountSettings
Source§fn clone(&self) -> UpdateAccountSettings
fn clone(&self) -> UpdateAccountSettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for UpdateAccountSettings
impl Debug for UpdateAccountSettings
Source§impl Default for UpdateAccountSettings
impl Default for UpdateAccountSettings
Auto Trait Implementations§
impl Freeze for UpdateAccountSettings
impl RefUnwindSafe for UpdateAccountSettings
impl Send for UpdateAccountSettings
impl Sync for UpdateAccountSettings
impl Unpin for UpdateAccountSettings
impl UnwindSafe for UpdateAccountSettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more