pub struct InvoicesPaymentSettings {
pub default_mandate: Option<String>,
pub payment_method_options: Option<InvoicesPaymentMethodOptions>,
pub payment_method_types: Option<Vec<InvoicesPaymentSettingsPaymentMethodTypes>>,
}
Fields§
§default_mandate: Option<String>
ID of the mandate to be used for this invoice. It must correspond to the payment method used to pay the invoice, including the invoice’s default_payment_method or default_source, if set.
payment_method_options: Option<InvoicesPaymentMethodOptions>
Payment-method-specific configuration to provide to the invoice’s PaymentIntent.
payment_method_types: Option<Vec<InvoicesPaymentSettingsPaymentMethodTypes>>
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.
Trait Implementations§
Source§impl Clone for InvoicesPaymentSettings
impl Clone for InvoicesPaymentSettings
Source§fn clone(&self) -> InvoicesPaymentSettings
fn clone(&self) -> InvoicesPaymentSettings
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 InvoicesPaymentSettings
impl Debug for InvoicesPaymentSettings
Source§impl FromValueOpt for InvoicesPaymentSettings
impl FromValueOpt for InvoicesPaymentSettings
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for InvoicesPaymentSettings
impl RefUnwindSafe for InvoicesPaymentSettings
impl Send for InvoicesPaymentSettings
impl Sync for InvoicesPaymentSettings
impl Unpin for InvoicesPaymentSettings
impl UnwindSafe for InvoicesPaymentSettings
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