pub struct CreateSetupIntentPaymentMethodOptionsUsBankAccount {
pub financial_connections: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections>,
pub mandate_options: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountMandateOptions>,
pub networks: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountNetworks>,
pub verification_method: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountVerificationMethod>,
}
Expand description
If this is a us_bank_account
SetupIntent, this sub-hash contains details about the US bank account payment method options.
Fields§
§financial_connections: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountFinancialConnections>
Additional fields for Financial Connections Session creation
mandate_options: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountMandateOptions>
Additional fields for Mandate creation
networks: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountNetworks>
Additional fields for network related functions
verification_method: Option<CreateSetupIntentPaymentMethodOptionsUsBankAccountVerificationMethod>
Bank account verification method.
Implementations§
Trait Implementations§
Source§impl Clone for CreateSetupIntentPaymentMethodOptionsUsBankAccount
impl Clone for CreateSetupIntentPaymentMethodOptionsUsBankAccount
Source§fn clone(&self) -> CreateSetupIntentPaymentMethodOptionsUsBankAccount
fn clone(&self) -> CreateSetupIntentPaymentMethodOptionsUsBankAccount
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 moreAuto Trait Implementations§
impl Freeze for CreateSetupIntentPaymentMethodOptionsUsBankAccount
impl RefUnwindSafe for CreateSetupIntentPaymentMethodOptionsUsBankAccount
impl Send for CreateSetupIntentPaymentMethodOptionsUsBankAccount
impl Sync for CreateSetupIntentPaymentMethodOptionsUsBankAccount
impl Unpin for CreateSetupIntentPaymentMethodOptionsUsBankAccount
impl UnwindSafe for CreateSetupIntentPaymentMethodOptionsUsBankAccount
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