Struct stripe::generated::checkout::checkout_session::CheckoutCustomerBalancePaymentMethodOptions
source · pub struct CheckoutCustomerBalancePaymentMethodOptions {
pub bank_transfer: Option<CheckoutCustomerBalanceBankTransferPaymentMethodOptions>,
pub funding_type: Option<CheckoutCustomerBalancePaymentMethodOptionsFundingType>,
pub setup_future_usage: Option<CheckoutCustomerBalancePaymentMethodOptionsSetupFutureUsage>,
}Fields§
§bank_transfer: Option<CheckoutCustomerBalanceBankTransferPaymentMethodOptions>§funding_type: Option<CheckoutCustomerBalancePaymentMethodOptionsFundingType>The funding method type to be used when there are not enough funds in the customer balance.
Permitted values include: bank_transfer.
setup_future_usage: Option<CheckoutCustomerBalancePaymentMethodOptionsSetupFutureUsage>Indicates that you intend to make future payments with this PaymentIntent’s payment method.
Providing this parameter will attach the payment method to the PaymentIntent’s Customer, if present, after the PaymentIntent is confirmed and any required actions from the user are complete.
If no Customer was provided, the payment method can still be attached to a Customer after the transaction completes. When processing card payments, Stripe also uses setup_future_usage to dynamically optimize your payment flow and comply with regional legislation and network rules, such as SCA.
Trait Implementations§
source§impl Clone for CheckoutCustomerBalancePaymentMethodOptions
impl Clone for CheckoutCustomerBalancePaymentMethodOptions
source§fn clone(&self) -> CheckoutCustomerBalancePaymentMethodOptions
fn clone(&self) -> CheckoutCustomerBalancePaymentMethodOptions
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 CheckoutCustomerBalancePaymentMethodOptions
impl Default for CheckoutCustomerBalancePaymentMethodOptions
source§fn default() -> CheckoutCustomerBalancePaymentMethodOptions
fn default() -> CheckoutCustomerBalancePaymentMethodOptions
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CheckoutCustomerBalancePaymentMethodOptions
impl<'de> Deserialize<'de> for CheckoutCustomerBalancePaymentMethodOptions
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