Struct stripe::generated::core::setup_intent::UpdateSetupIntentPaymentMethodDataUsBankAccount    
source · pub struct UpdateSetupIntentPaymentMethodDataUsBankAccount {
    pub account_holder_type: Option<UpdateSetupIntentPaymentMethodDataUsBankAccountAccountHolderType>,
    pub account_number: Option<String>,
    pub account_type: Option<UpdateSetupIntentPaymentMethodDataUsBankAccountAccountType>,
    pub financial_connections_account: Option<String>,
    pub routing_number: Option<String>,
}Fields§
§account_holder_type: Option<UpdateSetupIntentPaymentMethodDataUsBankAccountAccountHolderType>Account holder type: individual or company.
account_number: Option<String>Account number of the bank account.
account_type: Option<UpdateSetupIntentPaymentMethodDataUsBankAccountAccountType>Account type: checkings or savings.
Defaults to checking if omitted.
financial_connections_account: Option<String>The ID of a Financial Connections Account to use as a payment method.
routing_number: Option<String>Routing number of the bank account.
Trait Implementations§
source§impl Clone for UpdateSetupIntentPaymentMethodDataUsBankAccount
 
impl Clone for UpdateSetupIntentPaymentMethodDataUsBankAccount
source§fn clone(&self) -> UpdateSetupIntentPaymentMethodDataUsBankAccount
 
fn clone(&self) -> UpdateSetupIntentPaymentMethodDataUsBankAccount
Returns a copy 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 Default for UpdateSetupIntentPaymentMethodDataUsBankAccount
 
impl Default for UpdateSetupIntentPaymentMethodDataUsBankAccount
source§fn default() -> UpdateSetupIntentPaymentMethodDataUsBankAccount
 
fn default() -> UpdateSetupIntentPaymentMethodDataUsBankAccount
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UpdateSetupIntentPaymentMethodDataUsBankAccount
 
impl<'de> Deserialize<'de> for UpdateSetupIntentPaymentMethodDataUsBankAccount
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateSetupIntentPaymentMethodDataUsBankAccount
impl RefUnwindSafe for UpdateSetupIntentPaymentMethodDataUsBankAccount
impl Send for UpdateSetupIntentPaymentMethodDataUsBankAccount
impl Sync for UpdateSetupIntentPaymentMethodDataUsBankAccount
impl Unpin for UpdateSetupIntentPaymentMethodDataUsBankAccount
impl UnwindSafe for UpdateSetupIntentPaymentMethodDataUsBankAccount
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