#[non_exhaustive]pub enum CreateCheckoutSessionExcludedPaymentMethodTypes {
Show 54 variants
AcssDebit,
Affirm,
AfterpayClearpay,
Alipay,
Alma,
AmazonPay,
AuBecsDebit,
BacsDebit,
Bancontact,
Billie,
Bizum,
Blik,
Boleto,
Card,
Cashapp,
Crypto,
CustomerBalance,
Eps,
Fpx,
Giropay,
Grabpay,
Ideal,
KakaoPay,
Klarna,
Konbini,
KrCard,
MbWay,
Mobilepay,
Multibanco,
NaverPay,
NzBankAccount,
Oxxo,
P24,
PayByBank,
Payco,
Paynow,
Paypal,
Payto,
Pix,
Promptpay,
RevolutPay,
SamsungPay,
Satispay,
Scalapay,
SepaDebit,
Sofort,
Sunbit,
Swish,
Twint,
Upi,
UsBankAccount,
WechatPay,
Zip,
Unknown(String),
}Expand description
A list of the types of payment methods (e.g., card) that should be excluded from this Checkout Session.
This should only be used when payment methods for this Checkout Session are managed through the Stripe Dashboard.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
AcssDebit
Affirm
AfterpayClearpay
Alipay
Alma
AmazonPay
AuBecsDebit
BacsDebit
Bancontact
Billie
Bizum
Blik
Boleto
Card
Cashapp
Crypto
CustomerBalance
Eps
Fpx
Giropay
Grabpay
Ideal
KakaoPay
Klarna
Konbini
KrCard
MbWay
Mobilepay
Multibanco
NzBankAccount
Oxxo
P24
PayByBank
Payco
Paynow
Paypal
Payto
Pix
Promptpay
RevolutPay
SamsungPay
Satispay
Scalapay
SepaDebit
Sofort
Sunbit
Swish
Twint
Upi
UsBankAccount
WechatPay
Zip
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for CreateCheckoutSessionExcludedPaymentMethodTypes
impl Clone for CreateCheckoutSessionExcludedPaymentMethodTypes
Source§fn clone(&self) -> CreateCheckoutSessionExcludedPaymentMethodTypes
fn clone(&self) -> CreateCheckoutSessionExcludedPaymentMethodTypes
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CreateCheckoutSessionExcludedPaymentMethodTypes
Available on non-crate feature redact-generated-debug only.
impl Debug for CreateCheckoutSessionExcludedPaymentMethodTypes
Available on non-crate feature
redact-generated-debug only.impl Eq for CreateCheckoutSessionExcludedPaymentMethodTypes
impl StructuralPartialEq for CreateCheckoutSessionExcludedPaymentMethodTypes
Auto Trait Implementations§
impl Freeze for CreateCheckoutSessionExcludedPaymentMethodTypes
impl RefUnwindSafe for CreateCheckoutSessionExcludedPaymentMethodTypes
impl Send for CreateCheckoutSessionExcludedPaymentMethodTypes
impl Sync for CreateCheckoutSessionExcludedPaymentMethodTypes
impl Unpin for CreateCheckoutSessionExcludedPaymentMethodTypes
impl UnsafeUnpin for CreateCheckoutSessionExcludedPaymentMethodTypes
impl UnwindSafe for CreateCheckoutSessionExcludedPaymentMethodTypes
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