stripe 15.0.0 → 15.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/API_VERSION +1 -0
- data/CHANGELOG.md +129 -44
- data/CONTRIBUTING.md +25 -0
- data/Gemfile +1 -1
- data/OPENAPI_VERSION +1 -1
- data/README.md +28 -55
- data/VERSION +1 -1
- data/lib/stripe/api_operations/nested_resource.rb +35 -35
- data/lib/stripe/api_requestor.rb +1 -1
- data/lib/stripe/api_version.rb +2 -1
- data/lib/stripe/connection_manager.rb +1 -3
- data/lib/stripe/event_types.rb +1 -0
- data/lib/stripe/events/v1_billing_meter_error_report_triggered_event.rb +1 -1
- data/lib/stripe/events/v1_billing_meter_no_meter_found_event.rb +1 -1
- data/lib/stripe/events/v2_core_event_destination_ping_event.rb +21 -0
- data/lib/stripe/oauth.rb +1 -1
- data/lib/stripe/resources/account.rb +198 -28
- data/lib/stripe/resources/account_session.rb +176 -72
- data/lib/stripe/resources/apple_pay_domain.rb +1 -2
- data/lib/stripe/resources/balance.rb +42 -0
- data/lib/stripe/resources/balance_transaction.rb +2 -0
- data/lib/stripe/resources/bank_account.rb +2 -2
- data/lib/stripe/resources/billing_portal/session.rb +3 -3
- data/lib/stripe/resources/capability.rb +1 -1
- data/lib/stripe/resources/charge.rb +43 -20
- data/lib/stripe/resources/checkout/session.rb +120 -19
- data/lib/stripe/resources/confirmation_token.rb +119 -100
- data/lib/stripe/resources/country_spec.rb +1 -1
- data/lib/stripe/resources/coupon.rb +2 -3
- data/lib/stripe/resources/credit_note.rb +21 -18
- data/lib/stripe/resources/customer.rb +4 -6
- data/lib/stripe/resources/customer_session.rb +5 -5
- data/lib/stripe/resources/dispute.rb +2 -2
- data/lib/stripe/resources/event.rb +3 -1
- data/lib/stripe/resources/file.rb +1 -1
- data/lib/stripe/resources/funding_instructions.rb +1 -1
- data/lib/stripe/resources/identity/verification_report.rb +6 -0
- data/lib/stripe/resources/identity/verification_session.rb +51 -11
- data/lib/stripe/resources/invoice.rb +146 -32
- data/lib/stripe/resources/invoice_item.rb +3 -7
- data/lib/stripe/resources/invoice_line_item.rb +1 -1
- data/lib/stripe/resources/invoice_payment.rb +9 -2
- data/lib/stripe/resources/issuing/authorization.rb +8 -8
- data/lib/stripe/resources/issuing/card.rb +1 -1
- data/lib/stripe/resources/issuing/dispute.rb +3 -3
- data/lib/stripe/resources/login_link.rb +2 -1
- data/lib/stripe/resources/mandate.rb +3 -0
- data/lib/stripe/resources/payment_intent.rb +602 -325
- data/lib/stripe/resources/payment_method.rb +76 -117
- data/lib/stripe/resources/payment_method_configuration.rb +356 -2
- data/lib/stripe/resources/payment_method_domain.rb +15 -2
- data/lib/stripe/resources/payout.rb +4 -4
- data/lib/stripe/resources/person.rb +27 -3
- data/lib/stripe/resources/plan.rb +2 -3
- data/lib/stripe/resources/price.rb +1 -1
- data/lib/stripe/resources/product.rb +1 -2
- data/lib/stripe/resources/quote.rb +28 -3
- data/lib/stripe/resources/radar/value_list.rb +1 -2
- data/lib/stripe/resources/radar/value_list_item.rb +1 -2
- data/lib/stripe/resources/refund.rb +8 -1
- data/lib/stripe/resources/reversal.rb +1 -1
- data/lib/stripe/resources/review.rb +1 -1
- data/lib/stripe/resources/setup_attempt.rb +1 -1
- data/lib/stripe/resources/setup_intent.rb +414 -293
- data/lib/stripe/resources/source.rb +1 -1
- data/lib/stripe/resources/subscription.rb +149 -27
- data/lib/stripe/resources/subscription_item.rb +33 -0
- data/lib/stripe/resources/subscription_schedule.rb +141 -4
- data/lib/stripe/resources/tax/calculation.rb +6 -2
- data/lib/stripe/resources/tax/calculation_line_item.rb +2 -0
- data/lib/stripe/resources/tax/registration.rb +261 -1
- data/lib/stripe/resources/tax/transaction.rb +1 -1
- data/lib/stripe/resources/tax_id.rb +3 -4
- data/lib/stripe/resources/tax_rate.rb +2 -2
- data/lib/stripe/resources/terminal/configuration.rb +2 -2
- data/lib/stripe/resources/terminal/location.rb +2 -3
- data/lib/stripe/resources/terminal/reader.rb +426 -6
- data/lib/stripe/resources/test_helpers/test_clock.rb +1 -2
- data/lib/stripe/resources/token.rb +63 -2
- data/lib/stripe/resources/transfer.rb +1 -1
- data/lib/stripe/resources/treasury/financial_account.rb +5 -1
- data/lib/stripe/resources/v2/billing/meter_event.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event_session.rb +2 -2
- data/lib/stripe/resources/v2/event.rb +2 -2
- data/lib/stripe/resources/v2/event_destination.rb +2 -2
- data/lib/stripe/resources/webhook_endpoint.rb +1 -2
- data/lib/stripe/resources.rb +1 -0
- data/lib/stripe/services/account_external_account_service.rb +3 -4
- data/lib/stripe/services/account_login_link_service.rb +1 -1
- data/lib/stripe/services/account_person_service.rb +85 -2
- data/lib/stripe/services/account_service.rb +169 -20
- data/lib/stripe/services/account_session_service.rb +115 -47
- data/lib/stripe/services/apple_pay_domain_service.rb +1 -2
- data/lib/stripe/services/application_fee_service.rb +1 -1
- data/lib/stripe/services/apps_service.rb +1 -1
- data/lib/stripe/services/balance_service.rb +1 -1
- data/lib/stripe/services/billing/meter_service.rb +1 -1
- data/lib/stripe/services/billing_portal/session_service.rb +1 -1
- data/lib/stripe/services/billing_portal_service.rb +1 -1
- data/lib/stripe/services/billing_service.rb +1 -1
- data/lib/stripe/services/charge_service.rb +4 -4
- data/lib/stripe/services/checkout/session_service.rb +94 -15
- data/lib/stripe/services/checkout_service.rb +1 -1
- data/lib/stripe/services/climate_service.rb +1 -1
- data/lib/stripe/services/coupon_service.rb +1 -2
- data/lib/stripe/services/credit_note_preview_lines_service.rb +3 -3
- data/lib/stripe/services/credit_note_service.rb +14 -15
- data/lib/stripe/services/customer_balance_transaction_service.rb +3 -3
- data/lib/stripe/services/customer_cash_balance_transaction_service.rb +2 -2
- data/lib/stripe/services/customer_payment_method_service.rb +1 -1
- data/lib/stripe/services/customer_payment_source_service.rb +1 -1
- data/lib/stripe/services/customer_service.rb +5 -7
- data/lib/stripe/services/customer_session_service.rb +1 -1
- data/lib/stripe/services/customer_tax_id_service.rb +2 -3
- data/lib/stripe/services/dispute_service.rb +1 -1
- data/lib/stripe/services/entitlements_service.rb +1 -1
- data/lib/stripe/services/file_service.rb +1 -1
- data/lib/stripe/services/financial_connections/account_service.rb +1 -1
- data/lib/stripe/services/financial_connections_service.rb +1 -1
- data/lib/stripe/services/forwarding_service.rb +1 -1
- data/lib/stripe/services/identity/verification_session_service.rb +21 -5
- data/lib/stripe/services/identity_service.rb +1 -1
- data/lib/stripe/services/invoice_item_service.rb +1 -2
- data/lib/stripe/services/invoice_service.rb +122 -28
- data/lib/stripe/services/issuing/authorization_service.rb +4 -4
- data/lib/stripe/services/issuing/card_service.rb +1 -1
- data/lib/stripe/services/issuing/dispute_service.rb +2 -2
- data/lib/stripe/services/issuing_service.rb +1 -1
- data/lib/stripe/services/payment_intent_service.rb +563 -313
- data/lib/stripe/services/payment_link_service.rb +1 -1
- data/lib/stripe/services/payment_method_configuration_service.rb +254 -2
- data/lib/stripe/services/payment_method_domain_service.rb +1 -1
- data/lib/stripe/services/payment_method_service.rb +59 -105
- data/lib/stripe/services/payout_service.rb +2 -2
- data/lib/stripe/services/plan_service.rb +2 -3
- data/lib/stripe/services/price_service.rb +2 -2
- data/lib/stripe/services/product_feature_service.rb +1 -2
- data/lib/stripe/services/product_service.rb +3 -4
- data/lib/stripe/services/promotion_code_service.rb +1 -1
- data/lib/stripe/services/quote_service.rb +21 -4
- data/lib/stripe/services/radar/early_fraud_warning_service.rb +1 -1
- data/lib/stripe/services/radar/value_list_item_service.rb +1 -2
- data/lib/stripe/services/radar/value_list_service.rb +1 -2
- data/lib/stripe/services/radar_service.rb +1 -1
- data/lib/stripe/services/reporting_service.rb +1 -1
- data/lib/stripe/services/setup_intent_service.rb +403 -291
- data/lib/stripe/services/sigma_service.rb +1 -1
- data/lib/stripe/services/source_service.rb +2 -2
- data/lib/stripe/services/subscription_item_service.rb +26 -0
- data/lib/stripe/services/subscription_schedule_service.rb +106 -3
- data/lib/stripe/services/subscription_service.rb +121 -26
- data/lib/stripe/services/tax/calculation_service.rb +6 -2
- data/lib/stripe/services/tax/registration_service.rb +170 -1
- data/lib/stripe/services/tax/transaction_service.rb +1 -1
- data/lib/stripe/services/tax_id_service.rb +2 -3
- data/lib/stripe/services/tax_service.rb +1 -1
- data/lib/stripe/services/terminal/configuration_service.rb +1 -2
- data/lib/stripe/services/terminal/location_service.rb +2 -3
- data/lib/stripe/services/terminal/reader_service.rb +196 -2
- data/lib/stripe/services/terminal_service.rb +1 -1
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +90 -91
- data/lib/stripe/services/test_helpers/issuing_service.rb +1 -1
- data/lib/stripe/services/test_helpers/terminal/reader_service.rb +43 -0
- data/lib/stripe/services/test_helpers/terminal_service.rb +1 -1
- data/lib/stripe/services/test_helpers/test_clock_service.rb +1 -2
- data/lib/stripe/services/test_helpers/treasury_service.rb +1 -1
- data/lib/stripe/services/test_helpers_service.rb +1 -1
- data/lib/stripe/services/token_service.rb +62 -1
- data/lib/stripe/services/transfer_service.rb +2 -2
- data/lib/stripe/services/treasury/financial_account_service.rb +6 -2
- data/lib/stripe/services/treasury_service.rb +1 -1
- data/lib/stripe/services/v1_services.rb +1 -1
- data/lib/stripe/services/v2/billing/meter_event_session_service.rb +1 -2
- data/lib/stripe/services/v2/billing_service.rb +3 -3
- data/lib/stripe/services/v2/core/event_destination_service.rb +17 -23
- data/lib/stripe/services/v2/core/event_service.rb +1 -2
- data/lib/stripe/services/v2/core_service.rb +1 -1
- data/lib/stripe/services/v2_services.rb +1 -1
- data/lib/stripe/services/webhook_endpoint_service.rb +1 -2
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +1 -1
- data/rbi/stripe/resources/account.rbi +190 -35
- data/rbi/stripe/resources/account_session.rbi +196 -77
- data/rbi/stripe/resources/apple_pay_domain.rbi +1 -3
- data/rbi/stripe/resources/balance.rbi +55 -0
- data/rbi/stripe/resources/balance_transaction.rbi +3 -0
- data/rbi/stripe/resources/bank_account.rbi +2 -2
- data/rbi/stripe/resources/billing/alert.rbi +2 -2
- data/rbi/stripe/resources/billing_portal/session.rbi +3 -3
- data/rbi/stripe/resources/capability.rbi +1 -1
- data/rbi/stripe/resources/charge.rbi +52 -20
- data/rbi/stripe/resources/checkout/session.rbi +133 -24
- data/rbi/stripe/resources/confirmation_token.rbi +140 -115
- data/rbi/stripe/resources/country_spec.rbi +1 -1
- data/rbi/stripe/resources/coupon.rbi +2 -4
- data/rbi/stripe/resources/credit_note.rbi +23 -18
- data/rbi/stripe/resources/customer.rbi +4 -8
- data/rbi/stripe/resources/customer_session.rbi +5 -5
- data/rbi/stripe/resources/dispute.rbi +2 -2
- data/rbi/stripe/resources/event.rbi +4 -1
- data/rbi/stripe/resources/file.rbi +1 -1
- data/rbi/stripe/resources/identity/verification_report.rbi +9 -0
- data/rbi/stripe/resources/identity/verification_session.rbi +59 -12
- data/rbi/stripe/resources/invoice.rbi +149 -40
- data/rbi/stripe/resources/invoice_item.rbi +3 -8
- data/rbi/stripe/resources/invoice_line_item.rbi +2 -2
- data/rbi/stripe/resources/invoice_payment.rbi +9 -2
- data/rbi/stripe/resources/issuing/authorization.rbi +8 -8
- data/rbi/stripe/resources/issuing/card.rbi +1 -1
- data/rbi/stripe/resources/issuing/dispute.rbi +3 -3
- data/rbi/stripe/resources/login_link.rbi +2 -1
- data/rbi/stripe/resources/mandate.rbi +4 -0
- data/rbi/stripe/resources/payment_intent.rbi +637 -381
- data/rbi/stripe/resources/payment_method.rbi +81 -133
- data/rbi/stripe/resources/payment_method_configuration.rbi +400 -4
- data/rbi/stripe/resources/payment_method_domain.rbi +18 -2
- data/rbi/stripe/resources/payout.rbi +4 -4
- data/rbi/stripe/resources/person.rbi +33 -3
- data/rbi/stripe/resources/plan.rbi +2 -4
- data/rbi/stripe/resources/price.rbi +1 -1
- data/rbi/stripe/resources/product.rbi +1 -3
- data/rbi/stripe/resources/quote.rbi +25 -3
- data/rbi/stripe/resources/radar/value_list.rbi +1 -3
- data/rbi/stripe/resources/radar/value_list_item.rbi +1 -3
- data/rbi/stripe/resources/refund.rbi +8 -1
- data/rbi/stripe/resources/reversal.rbi +1 -1
- data/rbi/stripe/resources/review.rbi +1 -1
- data/rbi/stripe/resources/setup_attempt.rbi +1 -1
- data/rbi/stripe/resources/setup_intent.rbi +464 -346
- data/rbi/stripe/resources/source.rbi +1 -1
- data/rbi/stripe/resources/subscription.rbi +150 -34
- data/rbi/stripe/resources/subscription_item.rbi +36 -2
- data/rbi/stripe/resources/subscription_schedule.rbi +161 -11
- data/rbi/stripe/resources/tax/calculation.rbi +7 -3
- data/rbi/stripe/resources/tax/calculation_line_item.rbi +4 -1
- data/rbi/stripe/resources/tax/registration.rbi +249 -2
- data/rbi/stripe/resources/tax/transaction.rbi +1 -1
- data/rbi/stripe/resources/tax_id.rbi +3 -5
- data/rbi/stripe/resources/tax_rate.rbi +2 -2
- data/rbi/stripe/resources/terminal/configuration.rbi +2 -3
- data/rbi/stripe/resources/terminal/location.rbi +4 -6
- data/rbi/stripe/resources/terminal/reader.rbi +415 -8
- data/rbi/stripe/resources/test_helpers/test_clock.rbi +1 -3
- data/rbi/stripe/resources/token.rbi +70 -4
- data/rbi/stripe/resources/transfer.rbi +1 -1
- data/rbi/stripe/resources/treasury/financial_account.rbi +6 -2
- data/rbi/stripe/resources/v2/billing/meter_event.rbi +3 -3
- data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +3 -3
- data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +3 -3
- data/rbi/stripe/resources/v2/event.rbi +3 -3
- data/rbi/stripe/resources/v2/event_destination.rbi +3 -3
- data/rbi/stripe/resources/webhook_endpoint.rbi +1 -3
- data/rbi/stripe/services/account_external_account_service.rbi +3 -5
- data/rbi/stripe/services/account_login_link_service.rbi +1 -1
- data/rbi/stripe/services/account_person_service.rbi +93 -5
- data/rbi/stripe/services/account_service.rbi +166 -28
- data/rbi/stripe/services/account_session_service.rbi +126 -52
- data/rbi/stripe/services/apple_pay_domain_service.rbi +1 -3
- data/rbi/stripe/services/balance_service.rbi +1 -1
- data/rbi/stripe/services/billing/alert_service.rbi +2 -2
- data/rbi/stripe/services/billing_portal/session_service.rbi +1 -1
- data/rbi/stripe/services/charge_service.rbi +4 -4
- data/rbi/stripe/services/checkout/session_service.rbi +104 -19
- data/rbi/stripe/services/coupon_service.rbi +1 -3
- data/rbi/stripe/services/credit_note_preview_lines_service.rbi +3 -3
- data/rbi/stripe/services/credit_note_service.rbi +13 -14
- data/rbi/stripe/services/customer_balance_transaction_service.rbi +3 -3
- data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +2 -2
- data/rbi/stripe/services/customer_payment_method_service.rbi +1 -1
- data/rbi/stripe/services/customer_payment_source_service.rbi +1 -1
- data/rbi/stripe/services/customer_service.rbi +4 -8
- data/rbi/stripe/services/customer_session_service.rbi +1 -1
- data/rbi/stripe/services/customer_tax_id_service.rbi +2 -4
- data/rbi/stripe/services/dispute_service.rbi +1 -1
- data/rbi/stripe/services/file_service.rbi +1 -1
- data/rbi/stripe/services/identity/verification_session_service.rbi +22 -6
- data/rbi/stripe/services/invoice_item_service.rbi +1 -3
- data/rbi/stripe/services/invoice_service.rbi +126 -35
- data/rbi/stripe/services/issuing/authorization_service.rbi +4 -4
- data/rbi/stripe/services/issuing/card_service.rbi +1 -1
- data/rbi/stripe/services/issuing/dispute_service.rbi +2 -2
- data/rbi/stripe/services/payment_intent_service.rbi +599 -369
- data/rbi/stripe/services/payment_method_configuration_service.rbi +280 -4
- data/rbi/stripe/services/payment_method_domain_service.rbi +1 -1
- data/rbi/stripe/services/payment_method_service.rbi +62 -121
- data/rbi/stripe/services/payout_service.rbi +2 -2
- data/rbi/stripe/services/plan_service.rbi +2 -4
- data/rbi/stripe/services/price_service.rbi +2 -2
- data/rbi/stripe/services/product_feature_service.rbi +1 -3
- data/rbi/stripe/services/product_service.rbi +2 -4
- data/rbi/stripe/services/promotion_code_service.rbi +1 -1
- data/rbi/stripe/services/quote_service.rbi +16 -3
- data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +1 -1
- data/rbi/stripe/services/radar/value_list_item_service.rbi +1 -3
- data/rbi/stripe/services/radar/value_list_service.rbi +1 -3
- data/rbi/stripe/services/setup_intent_service.rbi +457 -344
- data/rbi/stripe/services/source_service.rbi +1 -1
- data/rbi/stripe/services/subscription_item_service.rbi +28 -2
- data/rbi/stripe/services/subscription_schedule_service.rbi +119 -10
- data/rbi/stripe/services/subscription_service.rbi +121 -33
- data/rbi/stripe/services/tax/calculation_service.rbi +6 -2
- data/rbi/stripe/services/tax/registration_service.rbi +171 -2
- data/rbi/stripe/services/tax_id_service.rbi +2 -4
- data/rbi/stripe/services/terminal/configuration_service.rbi +1 -3
- data/rbi/stripe/services/terminal/location_service.rbi +4 -6
- data/rbi/stripe/services/terminal/reader_service.rbi +200 -4
- data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +106 -106
- data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +31 -0
- data/rbi/stripe/services/test_helpers/test_clock_service.rbi +1 -3
- data/rbi/stripe/services/token_service.rbi +71 -3
- data/rbi/stripe/services/transfer_service.rbi +1 -1
- data/rbi/stripe/services/treasury/financial_account_service.rbi +6 -2
- data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +1 -3
- data/rbi/stripe/services/v2/billing_service.rbi +1 -1
- data/rbi/stripe/services/v2/core/event_destination_service.rbi +14 -22
- data/rbi/stripe/services/v2/core/event_service.rbi +1 -3
- data/rbi/stripe/services/webhook_endpoint_service.rbi +1 -3
- metadata +5 -2
@@ -482,6 +482,24 @@ module Stripe
|
|
482
482
|
}
|
483
483
|
def initialize(display_preference: nil); end
|
484
484
|
end
|
485
|
+
class KakaoPay < Stripe::RequestParams
|
486
|
+
class DisplayPreference < Stripe::RequestParams
|
487
|
+
# The account's preference for whether or not to display this payment method.
|
488
|
+
sig { returns(T.nilable(String)) }
|
489
|
+
attr_accessor :preference
|
490
|
+
sig { params(preference: T.nilable(String)).void }
|
491
|
+
def initialize(preference: nil); end
|
492
|
+
end
|
493
|
+
# Whether or not the payment method should be displayed.
|
494
|
+
sig {
|
495
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KakaoPay::DisplayPreference))
|
496
|
+
}
|
497
|
+
attr_accessor :display_preference
|
498
|
+
sig {
|
499
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KakaoPay::DisplayPreference)).void
|
500
|
+
}
|
501
|
+
def initialize(display_preference: nil); end
|
502
|
+
end
|
485
503
|
class Klarna < Stripe::RequestParams
|
486
504
|
class DisplayPreference < Stripe::RequestParams
|
487
505
|
# The account's preference for whether or not to display this payment method.
|
@@ -518,6 +536,24 @@ module Stripe
|
|
518
536
|
}
|
519
537
|
def initialize(display_preference: nil); end
|
520
538
|
end
|
539
|
+
class KrCard < Stripe::RequestParams
|
540
|
+
class DisplayPreference < Stripe::RequestParams
|
541
|
+
# The account's preference for whether or not to display this payment method.
|
542
|
+
sig { returns(T.nilable(String)) }
|
543
|
+
attr_accessor :preference
|
544
|
+
sig { params(preference: T.nilable(String)).void }
|
545
|
+
def initialize(preference: nil); end
|
546
|
+
end
|
547
|
+
# Whether or not the payment method should be displayed.
|
548
|
+
sig {
|
549
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KrCard::DisplayPreference))
|
550
|
+
}
|
551
|
+
attr_accessor :display_preference
|
552
|
+
sig {
|
553
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KrCard::DisplayPreference)).void
|
554
|
+
}
|
555
|
+
def initialize(display_preference: nil); end
|
556
|
+
end
|
521
557
|
class Link < Stripe::RequestParams
|
522
558
|
class DisplayPreference < Stripe::RequestParams
|
523
559
|
# The account's preference for whether or not to display this payment method.
|
@@ -572,6 +608,24 @@ module Stripe
|
|
572
608
|
}
|
573
609
|
def initialize(display_preference: nil); end
|
574
610
|
end
|
611
|
+
class NaverPay < Stripe::RequestParams
|
612
|
+
class DisplayPreference < Stripe::RequestParams
|
613
|
+
# The account's preference for whether or not to display this payment method.
|
614
|
+
sig { returns(T.nilable(String)) }
|
615
|
+
attr_accessor :preference
|
616
|
+
sig { params(preference: T.nilable(String)).void }
|
617
|
+
def initialize(preference: nil); end
|
618
|
+
end
|
619
|
+
# Whether or not the payment method should be displayed.
|
620
|
+
sig {
|
621
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NaverPay::DisplayPreference))
|
622
|
+
}
|
623
|
+
attr_accessor :display_preference
|
624
|
+
sig {
|
625
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NaverPay::DisplayPreference)).void
|
626
|
+
}
|
627
|
+
def initialize(display_preference: nil); end
|
628
|
+
end
|
575
629
|
class NzBankAccount < Stripe::RequestParams
|
576
630
|
class DisplayPreference < Stripe::RequestParams
|
577
631
|
# The account's preference for whether or not to display this payment method.
|
@@ -644,6 +698,24 @@ module Stripe
|
|
644
698
|
}
|
645
699
|
def initialize(display_preference: nil); end
|
646
700
|
end
|
701
|
+
class Payco < Stripe::RequestParams
|
702
|
+
class DisplayPreference < Stripe::RequestParams
|
703
|
+
# The account's preference for whether or not to display this payment method.
|
704
|
+
sig { returns(T.nilable(String)) }
|
705
|
+
attr_accessor :preference
|
706
|
+
sig { params(preference: T.nilable(String)).void }
|
707
|
+
def initialize(preference: nil); end
|
708
|
+
end
|
709
|
+
# Whether or not the payment method should be displayed.
|
710
|
+
sig {
|
711
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Payco::DisplayPreference))
|
712
|
+
}
|
713
|
+
attr_accessor :display_preference
|
714
|
+
sig {
|
715
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Payco::DisplayPreference)).void
|
716
|
+
}
|
717
|
+
def initialize(display_preference: nil); end
|
718
|
+
end
|
647
719
|
class Paynow < Stripe::RequestParams
|
648
720
|
class DisplayPreference < Stripe::RequestParams
|
649
721
|
# The account's preference for whether or not to display this payment method.
|
@@ -680,6 +752,24 @@ module Stripe
|
|
680
752
|
}
|
681
753
|
def initialize(display_preference: nil); end
|
682
754
|
end
|
755
|
+
class Pix < Stripe::RequestParams
|
756
|
+
class DisplayPreference < Stripe::RequestParams
|
757
|
+
# The account's preference for whether or not to display this payment method.
|
758
|
+
sig { returns(T.nilable(String)) }
|
759
|
+
attr_accessor :preference
|
760
|
+
sig { params(preference: T.nilable(String)).void }
|
761
|
+
def initialize(preference: nil); end
|
762
|
+
end
|
763
|
+
# Whether or not the payment method should be displayed.
|
764
|
+
sig {
|
765
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Pix::DisplayPreference))
|
766
|
+
}
|
767
|
+
attr_accessor :display_preference
|
768
|
+
sig {
|
769
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Pix::DisplayPreference)).void
|
770
|
+
}
|
771
|
+
def initialize(display_preference: nil); end
|
772
|
+
end
|
683
773
|
class Promptpay < Stripe::RequestParams
|
684
774
|
class DisplayPreference < Stripe::RequestParams
|
685
775
|
# The account's preference for whether or not to display this payment method.
|
@@ -716,6 +806,24 @@ module Stripe
|
|
716
806
|
}
|
717
807
|
def initialize(display_preference: nil); end
|
718
808
|
end
|
809
|
+
class SamsungPay < Stripe::RequestParams
|
810
|
+
class DisplayPreference < Stripe::RequestParams
|
811
|
+
# The account's preference for whether or not to display this payment method.
|
812
|
+
sig { returns(T.nilable(String)) }
|
813
|
+
attr_accessor :preference
|
814
|
+
sig { params(preference: T.nilable(String)).void }
|
815
|
+
def initialize(preference: nil); end
|
816
|
+
end
|
817
|
+
# Whether or not the payment method should be displayed.
|
818
|
+
sig {
|
819
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::SamsungPay::DisplayPreference))
|
820
|
+
}
|
821
|
+
attr_accessor :display_preference
|
822
|
+
sig {
|
823
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::SamsungPay::DisplayPreference)).void
|
824
|
+
}
|
825
|
+
def initialize(display_preference: nil); end
|
826
|
+
end
|
719
827
|
class Satispay < Stripe::RequestParams
|
720
828
|
class DisplayPreference < Stripe::RequestParams
|
721
829
|
# The account's preference for whether or not to display this payment method.
|
@@ -884,7 +992,7 @@ module Stripe
|
|
884
992
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AmazonPay))
|
885
993
|
}
|
886
994
|
attr_accessor :amazon_pay
|
887
|
-
# Stripe users can accept [Apple Pay](/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
|
995
|
+
# Stripe users can accept [Apple Pay](https://stripe.com/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](https://stripe.com/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
|
888
996
|
sig {
|
889
997
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::ApplePay))
|
890
998
|
}
|
@@ -960,12 +1068,20 @@ module Stripe
|
|
960
1068
|
# JCB is a credit card company based in Japan. JCB is currently available in Japan to businesses approved by JCB, and available to all businesses in Australia, Canada, Hong Kong, Japan, New Zealand, Singapore, Switzerland, United Kingdom, United States, and all countries in the European Economic Area except Iceland. Check this [page](https://support.stripe.com/questions/accepting-japan-credit-bureau-%28jcb%29-payments) for more details.
|
961
1069
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Jcb)) }
|
962
1070
|
attr_accessor :jcb
|
1071
|
+
# Kakao Pay is a popular local wallet available in South Korea.
|
1072
|
+
sig {
|
1073
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KakaoPay))
|
1074
|
+
}
|
1075
|
+
attr_accessor :kakao_pay
|
963
1076
|
# Klarna gives customers a range of [payment options](https://stripe.com/docs/payments/klarna#payment-options) during checkout. Available payment options vary depending on the customer's billing address and the transaction amount. These payment options make it convenient for customers to purchase items in all price ranges. Check this [page](https://stripe.com/docs/payments/klarna) for more details.
|
964
1077
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Klarna)) }
|
965
1078
|
attr_accessor :klarna
|
966
1079
|
# Konbini allows customers in Japan to pay for bills and online purchases at convenience stores with cash. Check this [page](https://stripe.com/docs/payments/konbini) for more details.
|
967
1080
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Konbini)) }
|
968
1081
|
attr_accessor :konbini
|
1082
|
+
# Korean cards let users pay using locally issued cards from South Korea.
|
1083
|
+
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KrCard)) }
|
1084
|
+
attr_accessor :kr_card
|
969
1085
|
# [Link](https://stripe.com/docs/payments/link) is a payment method network. With Link, users save their payment details once, then reuse that information to pay with one click for any business on the network.
|
970
1086
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Link)) }
|
971
1087
|
attr_accessor :link
|
@@ -982,6 +1098,11 @@ module Stripe
|
|
982
1098
|
# Configuration name.
|
983
1099
|
sig { returns(T.nilable(String)) }
|
984
1100
|
attr_accessor :name
|
1101
|
+
# Naver Pay is a popular local wallet available in South Korea.
|
1102
|
+
sig {
|
1103
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NaverPay))
|
1104
|
+
}
|
1105
|
+
attr_accessor :naver_pay
|
985
1106
|
# Stripe users in New Zealand can accept Bulk Electronic Clearing System (BECS) direct debit payments from customers with a New Zeland bank account. Check this [page](https://stripe.com/docs/payments/nz-bank-account) for more details.
|
986
1107
|
sig {
|
987
1108
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NzBankAccount))
|
@@ -1001,12 +1122,18 @@ module Stripe
|
|
1001
1122
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::PayByBank))
|
1002
1123
|
}
|
1003
1124
|
attr_accessor :pay_by_bank
|
1125
|
+
# PAYCO is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
|
1126
|
+
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Payco)) }
|
1127
|
+
attr_accessor :payco
|
1004
1128
|
# PayNow is a Singapore-based payment method that allows customers to make a payment using their preferred app from participating banks and participating non-bank financial institutions. Check this [page](https://stripe.com/docs/payments/paynow) for more details.
|
1005
1129
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Paynow)) }
|
1006
1130
|
attr_accessor :paynow
|
1007
1131
|
# PayPal, a digital wallet popular with customers in Europe, allows your customers worldwide to pay using their PayPal account. Check this [page](https://stripe.com/docs/payments/paypal) for more details.
|
1008
1132
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Paypal)) }
|
1009
1133
|
attr_accessor :paypal
|
1134
|
+
# Pix is a payment method popular in Brazil. When paying with Pix, customers authenticate and approve payments by scanning a QR code in their preferred banking app. Check this [page](https://docs.stripe.com/payments/pix) for more details.
|
1135
|
+
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Pix)) }
|
1136
|
+
attr_accessor :pix
|
1010
1137
|
# PromptPay is a Thailand-based payment method that allows customers to make a payment using their preferred app from participating banks. Check this [page](https://stripe.com/docs/payments/promptpay) for more details.
|
1011
1138
|
sig {
|
1012
1139
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Promptpay))
|
@@ -1017,6 +1144,11 @@ module Stripe
|
|
1017
1144
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::RevolutPay))
|
1018
1145
|
}
|
1019
1146
|
attr_accessor :revolut_pay
|
1147
|
+
# Samsung Pay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
|
1148
|
+
sig {
|
1149
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::SamsungPay))
|
1150
|
+
}
|
1151
|
+
attr_accessor :samsung_pay
|
1020
1152
|
# Satispay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage) payment method where customers are required to [authenticate](/payments/payment-methods#customer-actions) their payment. Customers pay by being redirected from your website or app, authorizing the payment with Satispay, then returning to your website or app. You get [immediate notification](/payments/payment-methods#payment-notification) of whether the payment succeeded or failed.
|
1021
1153
|
sig {
|
1022
1154
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Satispay))
|
@@ -1050,7 +1182,7 @@ module Stripe
|
|
1050
1182
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Zip)) }
|
1051
1183
|
attr_accessor :zip
|
1052
1184
|
sig {
|
1053
|
-
params(acss_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AcssDebit), affirm: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Jcb), klarna: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Konbini), link: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Multibanco), name: T.nilable(String), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::P24), parent: T.nilable(String), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::PayByBank), paynow: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Paypal), promptpay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::RevolutPay), satispay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Zip)).void
|
1185
|
+
params(acss_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AcssDebit), affirm: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Jcb), kakao_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KakaoPay), klarna: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Konbini), kr_card: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::KrCard), link: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Multibanco), name: T.nilable(String), naver_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NaverPay), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::P24), parent: T.nilable(String), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::PayByBank), payco: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Payco), paynow: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Paypal), pix: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Pix), promptpay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::RevolutPay), samsung_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::SamsungPay), satispay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfigurationService::CreateParams::Zip)).void
|
1054
1186
|
}
|
1055
1187
|
def initialize(
|
1056
1188
|
acss_debit: nil,
|
@@ -1079,21 +1211,27 @@ module Stripe
|
|
1079
1211
|
grabpay: nil,
|
1080
1212
|
ideal: nil,
|
1081
1213
|
jcb: nil,
|
1214
|
+
kakao_pay: nil,
|
1082
1215
|
klarna: nil,
|
1083
1216
|
konbini: nil,
|
1217
|
+
kr_card: nil,
|
1084
1218
|
link: nil,
|
1085
1219
|
mobilepay: nil,
|
1086
1220
|
multibanco: nil,
|
1087
1221
|
name: nil,
|
1222
|
+
naver_pay: nil,
|
1088
1223
|
nz_bank_account: nil,
|
1089
1224
|
oxxo: nil,
|
1090
1225
|
p24: nil,
|
1091
1226
|
parent: nil,
|
1092
1227
|
pay_by_bank: nil,
|
1228
|
+
payco: nil,
|
1093
1229
|
paynow: nil,
|
1094
1230
|
paypal: nil,
|
1231
|
+
pix: nil,
|
1095
1232
|
promptpay: nil,
|
1096
1233
|
revolut_pay: nil,
|
1234
|
+
samsung_pay: nil,
|
1097
1235
|
satispay: nil,
|
1098
1236
|
sepa_debit: nil,
|
1099
1237
|
sofort: nil,
|
@@ -1562,6 +1700,24 @@ module Stripe
|
|
1562
1700
|
}
|
1563
1701
|
def initialize(display_preference: nil); end
|
1564
1702
|
end
|
1703
|
+
class KakaoPay < Stripe::RequestParams
|
1704
|
+
class DisplayPreference < Stripe::RequestParams
|
1705
|
+
# The account's preference for whether or not to display this payment method.
|
1706
|
+
sig { returns(T.nilable(String)) }
|
1707
|
+
attr_accessor :preference
|
1708
|
+
sig { params(preference: T.nilable(String)).void }
|
1709
|
+
def initialize(preference: nil); end
|
1710
|
+
end
|
1711
|
+
# Whether or not the payment method should be displayed.
|
1712
|
+
sig {
|
1713
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KakaoPay::DisplayPreference))
|
1714
|
+
}
|
1715
|
+
attr_accessor :display_preference
|
1716
|
+
sig {
|
1717
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KakaoPay::DisplayPreference)).void
|
1718
|
+
}
|
1719
|
+
def initialize(display_preference: nil); end
|
1720
|
+
end
|
1565
1721
|
class Klarna < Stripe::RequestParams
|
1566
1722
|
class DisplayPreference < Stripe::RequestParams
|
1567
1723
|
# The account's preference for whether or not to display this payment method.
|
@@ -1598,6 +1754,24 @@ module Stripe
|
|
1598
1754
|
}
|
1599
1755
|
def initialize(display_preference: nil); end
|
1600
1756
|
end
|
1757
|
+
class KrCard < Stripe::RequestParams
|
1758
|
+
class DisplayPreference < Stripe::RequestParams
|
1759
|
+
# The account's preference for whether or not to display this payment method.
|
1760
|
+
sig { returns(T.nilable(String)) }
|
1761
|
+
attr_accessor :preference
|
1762
|
+
sig { params(preference: T.nilable(String)).void }
|
1763
|
+
def initialize(preference: nil); end
|
1764
|
+
end
|
1765
|
+
# Whether or not the payment method should be displayed.
|
1766
|
+
sig {
|
1767
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KrCard::DisplayPreference))
|
1768
|
+
}
|
1769
|
+
attr_accessor :display_preference
|
1770
|
+
sig {
|
1771
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KrCard::DisplayPreference)).void
|
1772
|
+
}
|
1773
|
+
def initialize(display_preference: nil); end
|
1774
|
+
end
|
1601
1775
|
class Link < Stripe::RequestParams
|
1602
1776
|
class DisplayPreference < Stripe::RequestParams
|
1603
1777
|
# The account's preference for whether or not to display this payment method.
|
@@ -1652,6 +1826,24 @@ module Stripe
|
|
1652
1826
|
}
|
1653
1827
|
def initialize(display_preference: nil); end
|
1654
1828
|
end
|
1829
|
+
class NaverPay < Stripe::RequestParams
|
1830
|
+
class DisplayPreference < Stripe::RequestParams
|
1831
|
+
# The account's preference for whether or not to display this payment method.
|
1832
|
+
sig { returns(T.nilable(String)) }
|
1833
|
+
attr_accessor :preference
|
1834
|
+
sig { params(preference: T.nilable(String)).void }
|
1835
|
+
def initialize(preference: nil); end
|
1836
|
+
end
|
1837
|
+
# Whether or not the payment method should be displayed.
|
1838
|
+
sig {
|
1839
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NaverPay::DisplayPreference))
|
1840
|
+
}
|
1841
|
+
attr_accessor :display_preference
|
1842
|
+
sig {
|
1843
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NaverPay::DisplayPreference)).void
|
1844
|
+
}
|
1845
|
+
def initialize(display_preference: nil); end
|
1846
|
+
end
|
1655
1847
|
class NzBankAccount < Stripe::RequestParams
|
1656
1848
|
class DisplayPreference < Stripe::RequestParams
|
1657
1849
|
# The account's preference for whether or not to display this payment method.
|
@@ -1724,6 +1916,24 @@ module Stripe
|
|
1724
1916
|
}
|
1725
1917
|
def initialize(display_preference: nil); end
|
1726
1918
|
end
|
1919
|
+
class Payco < Stripe::RequestParams
|
1920
|
+
class DisplayPreference < Stripe::RequestParams
|
1921
|
+
# The account's preference for whether or not to display this payment method.
|
1922
|
+
sig { returns(T.nilable(String)) }
|
1923
|
+
attr_accessor :preference
|
1924
|
+
sig { params(preference: T.nilable(String)).void }
|
1925
|
+
def initialize(preference: nil); end
|
1926
|
+
end
|
1927
|
+
# Whether or not the payment method should be displayed.
|
1928
|
+
sig {
|
1929
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Payco::DisplayPreference))
|
1930
|
+
}
|
1931
|
+
attr_accessor :display_preference
|
1932
|
+
sig {
|
1933
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Payco::DisplayPreference)).void
|
1934
|
+
}
|
1935
|
+
def initialize(display_preference: nil); end
|
1936
|
+
end
|
1727
1937
|
class Paynow < Stripe::RequestParams
|
1728
1938
|
class DisplayPreference < Stripe::RequestParams
|
1729
1939
|
# The account's preference for whether or not to display this payment method.
|
@@ -1760,6 +1970,24 @@ module Stripe
|
|
1760
1970
|
}
|
1761
1971
|
def initialize(display_preference: nil); end
|
1762
1972
|
end
|
1973
|
+
class Pix < Stripe::RequestParams
|
1974
|
+
class DisplayPreference < Stripe::RequestParams
|
1975
|
+
# The account's preference for whether or not to display this payment method.
|
1976
|
+
sig { returns(T.nilable(String)) }
|
1977
|
+
attr_accessor :preference
|
1978
|
+
sig { params(preference: T.nilable(String)).void }
|
1979
|
+
def initialize(preference: nil); end
|
1980
|
+
end
|
1981
|
+
# Whether or not the payment method should be displayed.
|
1982
|
+
sig {
|
1983
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Pix::DisplayPreference))
|
1984
|
+
}
|
1985
|
+
attr_accessor :display_preference
|
1986
|
+
sig {
|
1987
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Pix::DisplayPreference)).void
|
1988
|
+
}
|
1989
|
+
def initialize(display_preference: nil); end
|
1990
|
+
end
|
1763
1991
|
class Promptpay < Stripe::RequestParams
|
1764
1992
|
class DisplayPreference < Stripe::RequestParams
|
1765
1993
|
# The account's preference for whether or not to display this payment method.
|
@@ -1796,6 +2024,24 @@ module Stripe
|
|
1796
2024
|
}
|
1797
2025
|
def initialize(display_preference: nil); end
|
1798
2026
|
end
|
2027
|
+
class SamsungPay < Stripe::RequestParams
|
2028
|
+
class DisplayPreference < Stripe::RequestParams
|
2029
|
+
# The account's preference for whether or not to display this payment method.
|
2030
|
+
sig { returns(T.nilable(String)) }
|
2031
|
+
attr_accessor :preference
|
2032
|
+
sig { params(preference: T.nilable(String)).void }
|
2033
|
+
def initialize(preference: nil); end
|
2034
|
+
end
|
2035
|
+
# Whether or not the payment method should be displayed.
|
2036
|
+
sig {
|
2037
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::SamsungPay::DisplayPreference))
|
2038
|
+
}
|
2039
|
+
attr_accessor :display_preference
|
2040
|
+
sig {
|
2041
|
+
params(display_preference: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::SamsungPay::DisplayPreference)).void
|
2042
|
+
}
|
2043
|
+
def initialize(display_preference: nil); end
|
2044
|
+
end
|
1799
2045
|
class Satispay < Stripe::RequestParams
|
1800
2046
|
class DisplayPreference < Stripe::RequestParams
|
1801
2047
|
# The account's preference for whether or not to display this payment method.
|
@@ -1967,7 +2213,7 @@ module Stripe
|
|
1967
2213
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AmazonPay))
|
1968
2214
|
}
|
1969
2215
|
attr_accessor :amazon_pay
|
1970
|
-
# Stripe users can accept [Apple Pay](/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
|
2216
|
+
# Stripe users can accept [Apple Pay](https://stripe.com/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](https://stripe.com/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
|
1971
2217
|
sig {
|
1972
2218
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::ApplePay))
|
1973
2219
|
}
|
@@ -2043,12 +2289,20 @@ module Stripe
|
|
2043
2289
|
# JCB is a credit card company based in Japan. JCB is currently available in Japan to businesses approved by JCB, and available to all businesses in Australia, Canada, Hong Kong, Japan, New Zealand, Singapore, Switzerland, United Kingdom, United States, and all countries in the European Economic Area except Iceland. Check this [page](https://support.stripe.com/questions/accepting-japan-credit-bureau-%28jcb%29-payments) for more details.
|
2044
2290
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Jcb)) }
|
2045
2291
|
attr_accessor :jcb
|
2292
|
+
# Kakao Pay is a popular local wallet available in South Korea.
|
2293
|
+
sig {
|
2294
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KakaoPay))
|
2295
|
+
}
|
2296
|
+
attr_accessor :kakao_pay
|
2046
2297
|
# Klarna gives customers a range of [payment options](https://stripe.com/docs/payments/klarna#payment-options) during checkout. Available payment options vary depending on the customer's billing address and the transaction amount. These payment options make it convenient for customers to purchase items in all price ranges. Check this [page](https://stripe.com/docs/payments/klarna) for more details.
|
2047
2298
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Klarna)) }
|
2048
2299
|
attr_accessor :klarna
|
2049
2300
|
# Konbini allows customers in Japan to pay for bills and online purchases at convenience stores with cash. Check this [page](https://stripe.com/docs/payments/konbini) for more details.
|
2050
2301
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Konbini)) }
|
2051
2302
|
attr_accessor :konbini
|
2303
|
+
# Korean cards let users pay using locally issued cards from South Korea.
|
2304
|
+
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KrCard)) }
|
2305
|
+
attr_accessor :kr_card
|
2052
2306
|
# [Link](https://stripe.com/docs/payments/link) is a payment method network. With Link, users save their payment details once, then reuse that information to pay with one click for any business on the network.
|
2053
2307
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Link)) }
|
2054
2308
|
attr_accessor :link
|
@@ -2065,6 +2319,11 @@ module Stripe
|
|
2065
2319
|
# Configuration name.
|
2066
2320
|
sig { returns(T.nilable(String)) }
|
2067
2321
|
attr_accessor :name
|
2322
|
+
# Naver Pay is a popular local wallet available in South Korea.
|
2323
|
+
sig {
|
2324
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NaverPay))
|
2325
|
+
}
|
2326
|
+
attr_accessor :naver_pay
|
2068
2327
|
# Stripe users in New Zealand can accept Bulk Electronic Clearing System (BECS) direct debit payments from customers with a New Zeland bank account. Check this [page](https://stripe.com/docs/payments/nz-bank-account) for more details.
|
2069
2328
|
sig {
|
2070
2329
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NzBankAccount))
|
@@ -2081,12 +2340,18 @@ module Stripe
|
|
2081
2340
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::PayByBank))
|
2082
2341
|
}
|
2083
2342
|
attr_accessor :pay_by_bank
|
2343
|
+
# PAYCO is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
|
2344
|
+
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Payco)) }
|
2345
|
+
attr_accessor :payco
|
2084
2346
|
# PayNow is a Singapore-based payment method that allows customers to make a payment using their preferred app from participating banks and participating non-bank financial institutions. Check this [page](https://stripe.com/docs/payments/paynow) for more details.
|
2085
2347
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Paynow)) }
|
2086
2348
|
attr_accessor :paynow
|
2087
2349
|
# PayPal, a digital wallet popular with customers in Europe, allows your customers worldwide to pay using their PayPal account. Check this [page](https://stripe.com/docs/payments/paypal) for more details.
|
2088
2350
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Paypal)) }
|
2089
2351
|
attr_accessor :paypal
|
2352
|
+
# Pix is a payment method popular in Brazil. When paying with Pix, customers authenticate and approve payments by scanning a QR code in their preferred banking app. Check this [page](https://docs.stripe.com/payments/pix) for more details.
|
2353
|
+
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Pix)) }
|
2354
|
+
attr_accessor :pix
|
2090
2355
|
# PromptPay is a Thailand-based payment method that allows customers to make a payment using their preferred app from participating banks. Check this [page](https://stripe.com/docs/payments/promptpay) for more details.
|
2091
2356
|
sig {
|
2092
2357
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Promptpay))
|
@@ -2097,6 +2362,11 @@ module Stripe
|
|
2097
2362
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::RevolutPay))
|
2098
2363
|
}
|
2099
2364
|
attr_accessor :revolut_pay
|
2365
|
+
# Samsung Pay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
|
2366
|
+
sig {
|
2367
|
+
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::SamsungPay))
|
2368
|
+
}
|
2369
|
+
attr_accessor :samsung_pay
|
2100
2370
|
# Satispay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage) payment method where customers are required to [authenticate](/payments/payment-methods#customer-actions) their payment. Customers pay by being redirected from your website or app, authorizing the payment with Satispay, then returning to your website or app. You get [immediate notification](/payments/payment-methods#payment-notification) of whether the payment succeeded or failed.
|
2101
2371
|
sig {
|
2102
2372
|
returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Satispay))
|
@@ -2130,7 +2400,7 @@ module Stripe
|
|
2130
2400
|
sig { returns(T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Zip)) }
|
2131
2401
|
attr_accessor :zip
|
2132
2402
|
sig {
|
2133
|
-
params(acss_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AcssDebit), active: T.nilable(T::Boolean), affirm: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Jcb), klarna: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Konbini), link: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Multibanco), name: T.nilable(String), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::P24), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::PayByBank), paynow: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Paypal), promptpay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::RevolutPay), satispay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Zip)).void
|
2403
|
+
params(acss_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AcssDebit), active: T.nilable(T::Boolean), affirm: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Jcb), kakao_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KakaoPay), klarna: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Konbini), kr_card: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::KrCard), link: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Multibanco), name: T.nilable(String), naver_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NaverPay), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::P24), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::PayByBank), payco: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Payco), paynow: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Paypal), pix: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Pix), promptpay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::RevolutPay), samsung_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::SamsungPay), satispay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfigurationService::UpdateParams::Zip)).void
|
2134
2404
|
}
|
2135
2405
|
def initialize(
|
2136
2406
|
acss_debit: nil,
|
@@ -2160,20 +2430,26 @@ module Stripe
|
|
2160
2430
|
grabpay: nil,
|
2161
2431
|
ideal: nil,
|
2162
2432
|
jcb: nil,
|
2433
|
+
kakao_pay: nil,
|
2163
2434
|
klarna: nil,
|
2164
2435
|
konbini: nil,
|
2436
|
+
kr_card: nil,
|
2165
2437
|
link: nil,
|
2166
2438
|
mobilepay: nil,
|
2167
2439
|
multibanco: nil,
|
2168
2440
|
name: nil,
|
2441
|
+
naver_pay: nil,
|
2169
2442
|
nz_bank_account: nil,
|
2170
2443
|
oxxo: nil,
|
2171
2444
|
p24: nil,
|
2172
2445
|
pay_by_bank: nil,
|
2446
|
+
payco: nil,
|
2173
2447
|
paynow: nil,
|
2174
2448
|
paypal: nil,
|
2449
|
+
pix: nil,
|
2175
2450
|
promptpay: nil,
|
2176
2451
|
revolut_pay: nil,
|
2452
|
+
samsung_pay: nil,
|
2177
2453
|
satispay: nil,
|
2178
2454
|
sepa_debit: nil,
|
2179
2455
|
sofort: nil,
|
@@ -103,7 +103,7 @@ module Stripe
|
|
103
103
|
#
|
104
104
|
# To activate a payment method on an existing payment method domain, complete the required registration steps specific to the payment method, and then validate the payment method domain with this endpoint.
|
105
105
|
#
|
106
|
-
# Related guides: [Payment method domains](https://stripe.com/docs/payments/payment-methods/pmd-registration).
|
106
|
+
# Related guides: [Payment method domains](https://docs.stripe.com/docs/payments/payment-methods/pmd-registration).
|
107
107
|
sig {
|
108
108
|
params(payment_method_domain: String, params: T.any(::Stripe::PaymentMethodDomainService::ValidateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::PaymentMethodDomain)
|
109
109
|
}
|