pub struct UpdateSubscriptionPaymentSettings {
pub payment_method_options: Option<UpdateSubscriptionPaymentSettingsPaymentMethodOptions>,
pub payment_method_types: Option<Vec<UpdateSubscriptionPaymentSettingsPaymentMethodTypes>>,
pub save_default_payment_method: Option<UpdateSubscriptionPaymentSettingsSaveDefaultPaymentMethod>,
}
Expand description
Payment settings to pass to invoices created by the subscription.
Fields§
§payment_method_options: Option<UpdateSubscriptionPaymentSettingsPaymentMethodOptions>
Payment-method-specific configuration to provide to invoices created by the subscription.
payment_method_types: Option<Vec<UpdateSubscriptionPaymentSettingsPaymentMethodTypes>>
The list of payment method types (e.g. card) to provide to the invoice’s PaymentIntent. If not set, Stripe attempts to automatically determine the types to use by looking at the invoice’s default payment method, the subscription’s default payment method, the customer’s default payment method, and your invoice template settings. Should not be specified with payment_method_configuration.
save_default_payment_method: Option<UpdateSubscriptionPaymentSettingsSaveDefaultPaymentMethod>
Configure whether Stripe updates subscription.default_payment_method
when payment succeeds.
Defaults to off
if unspecified.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateSubscriptionPaymentSettings
impl Clone for UpdateSubscriptionPaymentSettings
Source§fn clone(&self) -> UpdateSubscriptionPaymentSettings
fn clone(&self) -> UpdateSubscriptionPaymentSettings
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 UpdateSubscriptionPaymentSettings
impl RefUnwindSafe for UpdateSubscriptionPaymentSettings
impl Send for UpdateSubscriptionPaymentSettings
impl Sync for UpdateSubscriptionPaymentSettings
impl Unpin for UpdateSubscriptionPaymentSettings
impl UnwindSafe for UpdateSubscriptionPaymentSettings
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