pub struct CreateAccountSettings {
pub bacs_debit_payments: Option<BacsDebitPaymentsSpecs>,
pub branding: Option<BrandingSettingsSpecs>,
pub card_issuing: Option<CardIssuingSettingsSpecs>,
pub card_payments: Option<CardPaymentsSettingsSpecs>,
pub invoices: Option<CreateAccountSettingsInvoices>,
pub payments: Option<PaymentsSettingsSpecs>,
pub payouts: Option<CreateAccountSettingsPayouts>,
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.
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<CreateAccountSettingsInvoices>
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<CreateAccountSettingsPayouts>
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 CreateAccountSettings
impl Clone for CreateAccountSettings
Source§fn clone(&self) -> CreateAccountSettings
fn clone(&self) -> CreateAccountSettings
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 CreateAccountSettings
impl Debug for CreateAccountSettings
Source§impl Default for CreateAccountSettings
impl Default for CreateAccountSettings
Auto Trait Implementations§
impl Freeze for CreateAccountSettings
impl RefUnwindSafe for CreateAccountSettings
impl Send for CreateAccountSettings
impl Sync for CreateAccountSettings
impl Unpin for CreateAccountSettings
impl UnwindSafe for CreateAccountSettings
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