stripe 15.1.0 → 15.2.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.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +34 -6
  3. data/CONTRIBUTING.md +25 -0
  4. data/OPENAPI_VERSION +1 -1
  5. data/README.md +10 -7
  6. data/VERSION +1 -1
  7. data/lib/stripe/api_version.rb +1 -1
  8. data/lib/stripe/resources/account.rb +47 -20
  9. data/lib/stripe/resources/account_session.rb +111 -7
  10. data/lib/stripe/resources/apple_pay_domain.rb +1 -2
  11. data/lib/stripe/resources/balance.rb +42 -0
  12. data/lib/stripe/resources/balance_transaction.rb +2 -0
  13. data/lib/stripe/resources/bank_account.rb +2 -2
  14. data/lib/stripe/resources/billing_portal/session.rb +1 -1
  15. data/lib/stripe/resources/capability.rb +1 -1
  16. data/lib/stripe/resources/charge.rb +13 -5
  17. data/lib/stripe/resources/checkout/session.rb +20 -4
  18. data/lib/stripe/resources/confirmation_token.rb +33 -87
  19. data/lib/stripe/resources/country_spec.rb +1 -1
  20. data/lib/stripe/resources/coupon.rb +1 -2
  21. data/lib/stripe/resources/credit_note.rb +12 -9
  22. data/lib/stripe/resources/customer.rb +2 -4
  23. data/lib/stripe/resources/customer_session.rb +3 -3
  24. data/lib/stripe/resources/dispute.rb +2 -2
  25. data/lib/stripe/resources/event.rb +1 -1
  26. data/lib/stripe/resources/file.rb +1 -1
  27. data/lib/stripe/resources/identity/verification_report.rb +6 -0
  28. data/lib/stripe/resources/identity/verification_session.rb +17 -11
  29. data/lib/stripe/resources/invoice.rb +114 -27
  30. data/lib/stripe/resources/invoice_item.rb +2 -3
  31. data/lib/stripe/resources/invoice_line_item.rb +1 -1
  32. data/lib/stripe/resources/invoice_payment.rb +9 -2
  33. data/lib/stripe/resources/issuing/authorization.rb +8 -8
  34. data/lib/stripe/resources/issuing/card.rb +1 -1
  35. data/lib/stripe/resources/issuing/dispute.rb +3 -3
  36. data/lib/stripe/resources/payment_intent.rb +196 -302
  37. data/lib/stripe/resources/payment_method.rb +46 -103
  38. data/lib/stripe/resources/payment_method_configuration.rb +297 -2
  39. data/lib/stripe/resources/payment_method_domain.rb +2 -2
  40. data/lib/stripe/resources/payout.rb +4 -4
  41. data/lib/stripe/resources/person.rb +2 -2
  42. data/lib/stripe/resources/plan.rb +2 -3
  43. data/lib/stripe/resources/price.rb +1 -1
  44. data/lib/stripe/resources/product.rb +1 -2
  45. data/lib/stripe/resources/radar/value_list.rb +1 -2
  46. data/lib/stripe/resources/radar/value_list_item.rb +1 -2
  47. data/lib/stripe/resources/refund.rb +6 -1
  48. data/lib/stripe/resources/reversal.rb +1 -1
  49. data/lib/stripe/resources/review.rb +1 -1
  50. data/lib/stripe/resources/setup_intent.rb +111 -281
  51. data/lib/stripe/resources/source.rb +1 -1
  52. data/lib/stripe/resources/subscription.rb +89 -29
  53. data/lib/stripe/resources/subscription_item.rb +33 -0
  54. data/lib/stripe/resources/subscription_schedule.rb +119 -4
  55. data/lib/stripe/resources/tax/calculation.rb +4 -0
  56. data/lib/stripe/resources/tax/calculation_line_item.rb +2 -0
  57. data/lib/stripe/resources/tax/registration.rb +1 -1
  58. data/lib/stripe/resources/tax_id.rb +1 -2
  59. data/lib/stripe/resources/tax_rate.rb +2 -2
  60. data/lib/stripe/resources/terminal/configuration.rb +1 -2
  61. data/lib/stripe/resources/terminal/location.rb +2 -3
  62. data/lib/stripe/resources/terminal/reader.rb +275 -3
  63. data/lib/stripe/resources/test_helpers/test_clock.rb +1 -2
  64. data/lib/stripe/resources/token.rb +2 -2
  65. data/lib/stripe/resources/transfer.rb +1 -1
  66. data/lib/stripe/resources/webhook_endpoint.rb +1 -2
  67. data/lib/stripe/services/account_external_account_service.rb +2 -3
  68. data/lib/stripe/services/account_login_link_service.rb +1 -1
  69. data/lib/stripe/services/account_person_service.rb +1 -2
  70. data/lib/stripe/services/account_service.rb +38 -13
  71. data/lib/stripe/services/account_session_service.rb +75 -7
  72. data/lib/stripe/services/apple_pay_domain_service.rb +1 -2
  73. data/lib/stripe/services/balance_service.rb +1 -1
  74. data/lib/stripe/services/charge_service.rb +4 -4
  75. data/lib/stripe/services/checkout/session_service.rb +11 -3
  76. data/lib/stripe/services/coupon_service.rb +1 -2
  77. data/lib/stripe/services/credit_note_service.rb +7 -8
  78. data/lib/stripe/services/customer_balance_transaction_service.rb +3 -3
  79. data/lib/stripe/services/customer_cash_balance_transaction_service.rb +2 -2
  80. data/lib/stripe/services/customer_payment_source_service.rb +1 -1
  81. data/lib/stripe/services/customer_service.rb +3 -5
  82. data/lib/stripe/services/customer_tax_id_service.rb +1 -2
  83. data/lib/stripe/services/dispute_service.rb +1 -1
  84. data/lib/stripe/services/file_service.rb +1 -1
  85. data/lib/stripe/services/identity/verification_session_service.rb +5 -5
  86. data/lib/stripe/services/invoice_item_service.rb +1 -2
  87. data/lib/stripe/services/invoice_service.rb +92 -23
  88. data/lib/stripe/services/issuing/authorization_service.rb +4 -4
  89. data/lib/stripe/services/issuing/card_service.rb +1 -1
  90. data/lib/stripe/services/issuing/dispute_service.rb +2 -2
  91. data/lib/stripe/services/payment_intent_service.rb +176 -292
  92. data/lib/stripe/services/payment_method_configuration_service.rb +212 -2
  93. data/lib/stripe/services/payment_method_domain_service.rb +1 -1
  94. data/lib/stripe/services/payment_method_service.rb +43 -100
  95. data/lib/stripe/services/payout_service.rb +2 -2
  96. data/lib/stripe/services/plan_service.rb +2 -3
  97. data/lib/stripe/services/price_service.rb +2 -2
  98. data/lib/stripe/services/product_feature_service.rb +1 -2
  99. data/lib/stripe/services/product_service.rb +2 -3
  100. data/lib/stripe/services/promotion_code_service.rb +1 -1
  101. data/lib/stripe/services/radar/early_fraud_warning_service.rb +1 -1
  102. data/lib/stripe/services/radar/value_list_item_service.rb +1 -2
  103. data/lib/stripe/services/radar/value_list_service.rb +1 -2
  104. data/lib/stripe/services/setup_intent_service.rb +110 -280
  105. data/lib/stripe/services/source_service.rb +1 -1
  106. data/lib/stripe/services/subscription_item_service.rb +26 -0
  107. data/lib/stripe/services/subscription_schedule_service.rb +93 -3
  108. data/lib/stripe/services/subscription_service.rb +77 -26
  109. data/lib/stripe/services/tax/calculation_service.rb +4 -0
  110. data/lib/stripe/services/tax/registration_service.rb +1 -1
  111. data/lib/stripe/services/tax_id_service.rb +1 -2
  112. data/lib/stripe/services/terminal/configuration_service.rb +1 -2
  113. data/lib/stripe/services/terminal/location_service.rb +2 -3
  114. data/lib/stripe/services/terminal/reader_service.rb +106 -2
  115. data/lib/stripe/services/test_helpers/confirmation_token_service.rb +33 -87
  116. data/lib/stripe/services/test_helpers/terminal/reader_service.rb +43 -0
  117. data/lib/stripe/services/test_helpers/test_clock_service.rb +1 -2
  118. data/lib/stripe/services/token_service.rb +1 -1
  119. data/lib/stripe/services/transfer_service.rb +1 -1
  120. data/lib/stripe/services/v2/billing/meter_event_session_service.rb +1 -2
  121. data/lib/stripe/services/v2/core/event_destination_service.rb +4 -10
  122. data/lib/stripe/services/v2/core/event_service.rb +1 -2
  123. data/lib/stripe/services/webhook_endpoint_service.rb +1 -2
  124. data/lib/stripe/version.rb +1 -1
  125. data/rbi/stripe/resources/account.rbi +46 -23
  126. data/rbi/stripe/resources/account_session.rbi +131 -12
  127. data/rbi/stripe/resources/apple_pay_domain.rbi +1 -3
  128. data/rbi/stripe/resources/balance.rbi +55 -0
  129. data/rbi/stripe/resources/balance_transaction.rbi +3 -0
  130. data/rbi/stripe/resources/bank_account.rbi +2 -2
  131. data/rbi/stripe/resources/billing/alert.rbi +2 -2
  132. data/rbi/stripe/resources/billing_portal/session.rbi +1 -1
  133. data/rbi/stripe/resources/capability.rbi +1 -1
  134. data/rbi/stripe/resources/charge.rbi +17 -5
  135. data/rbi/stripe/resources/checkout/session.rbi +22 -6
  136. data/rbi/stripe/resources/confirmation_token.rbi +33 -99
  137. data/rbi/stripe/resources/country_spec.rbi +1 -1
  138. data/rbi/stripe/resources/coupon.rbi +1 -3
  139. data/rbi/stripe/resources/credit_note.rbi +14 -9
  140. data/rbi/stripe/resources/customer.rbi +2 -6
  141. data/rbi/stripe/resources/customer_session.rbi +3 -3
  142. data/rbi/stripe/resources/dispute.rbi +2 -2
  143. data/rbi/stripe/resources/event.rbi +1 -1
  144. data/rbi/stripe/resources/file.rbi +1 -1
  145. data/rbi/stripe/resources/identity/verification_report.rbi +9 -0
  146. data/rbi/stripe/resources/identity/verification_session.rbi +20 -11
  147. data/rbi/stripe/resources/invoice.rbi +109 -33
  148. data/rbi/stripe/resources/invoice_item.rbi +2 -4
  149. data/rbi/stripe/resources/invoice_line_item.rbi +1 -1
  150. data/rbi/stripe/resources/invoice_payment.rbi +9 -2
  151. data/rbi/stripe/resources/issuing/authorization.rbi +8 -8
  152. data/rbi/stripe/resources/issuing/card.rbi +1 -1
  153. data/rbi/stripe/resources/issuing/dispute.rbi +3 -3
  154. data/rbi/stripe/resources/payment_intent.rbi +201 -349
  155. data/rbi/stripe/resources/payment_method.rbi +46 -116
  156. data/rbi/stripe/resources/payment_method_configuration.rbi +334 -4
  157. data/rbi/stripe/resources/payment_method_domain.rbi +2 -2
  158. data/rbi/stripe/resources/payout.rbi +4 -4
  159. data/rbi/stripe/resources/person.rbi +2 -2
  160. data/rbi/stripe/resources/plan.rbi +2 -4
  161. data/rbi/stripe/resources/price.rbi +1 -1
  162. data/rbi/stripe/resources/product.rbi +1 -3
  163. data/rbi/stripe/resources/radar/value_list.rbi +1 -3
  164. data/rbi/stripe/resources/radar/value_list_item.rbi +1 -3
  165. data/rbi/stripe/resources/refund.rbi +5 -1
  166. data/rbi/stripe/resources/reversal.rbi +1 -1
  167. data/rbi/stripe/resources/review.rbi +1 -1
  168. data/rbi/stripe/resources/setup_intent.rbi +111 -325
  169. data/rbi/stripe/resources/source.rbi +1 -1
  170. data/rbi/stripe/resources/subscription.rbi +99 -36
  171. data/rbi/stripe/resources/subscription_item.rbi +36 -2
  172. data/rbi/stripe/resources/subscription_schedule.rbi +138 -10
  173. data/rbi/stripe/resources/tax/calculation.rbi +5 -1
  174. data/rbi/stripe/resources/tax/calculation_line_item.rbi +3 -0
  175. data/rbi/stripe/resources/tax/registration.rbi +1 -1
  176. data/rbi/stripe/resources/tax_id.rbi +1 -3
  177. data/rbi/stripe/resources/tax_rate.rbi +2 -2
  178. data/rbi/stripe/resources/terminal/configuration.rbi +1 -3
  179. data/rbi/stripe/resources/terminal/location.rbi +2 -4
  180. data/rbi/stripe/resources/terminal/reader.rbi +265 -5
  181. data/rbi/stripe/resources/test_helpers/test_clock.rbi +1 -3
  182. data/rbi/stripe/resources/token.rbi +2 -2
  183. data/rbi/stripe/resources/transfer.rbi +1 -1
  184. data/rbi/stripe/resources/webhook_endpoint.rbi +1 -3
  185. data/rbi/stripe/services/account_external_account_service.rbi +2 -4
  186. data/rbi/stripe/services/account_login_link_service.rbi +1 -1
  187. data/rbi/stripe/services/account_person_service.rbi +1 -3
  188. data/rbi/stripe/services/account_service.rbi +40 -16
  189. data/rbi/stripe/services/account_session_service.rbi +86 -12
  190. data/rbi/stripe/services/apple_pay_domain_service.rbi +1 -3
  191. data/rbi/stripe/services/balance_service.rbi +1 -1
  192. data/rbi/stripe/services/billing/alert_service.rbi +2 -2
  193. data/rbi/stripe/services/charge_service.rbi +4 -4
  194. data/rbi/stripe/services/checkout/session_service.rbi +12 -5
  195. data/rbi/stripe/services/coupon_service.rbi +1 -3
  196. data/rbi/stripe/services/credit_note_service.rbi +7 -8
  197. data/rbi/stripe/services/customer_balance_transaction_service.rbi +3 -3
  198. data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +2 -2
  199. data/rbi/stripe/services/customer_payment_source_service.rbi +1 -1
  200. data/rbi/stripe/services/customer_service.rbi +3 -7
  201. data/rbi/stripe/services/customer_tax_id_service.rbi +1 -3
  202. data/rbi/stripe/services/dispute_service.rbi +1 -1
  203. data/rbi/stripe/services/file_service.rbi +1 -1
  204. data/rbi/stripe/services/identity/verification_session_service.rbi +5 -5
  205. data/rbi/stripe/services/invoice_item_service.rbi +1 -3
  206. data/rbi/stripe/services/invoice_service.rbi +90 -29
  207. data/rbi/stripe/services/issuing/authorization_service.rbi +4 -4
  208. data/rbi/stripe/services/issuing/card_service.rbi +1 -1
  209. data/rbi/stripe/services/issuing/dispute_service.rbi +2 -2
  210. data/rbi/stripe/services/payment_intent_service.rbi +179 -339
  211. data/rbi/stripe/services/payment_method_configuration_service.rbi +236 -4
  212. data/rbi/stripe/services/payment_method_domain_service.rbi +1 -1
  213. data/rbi/stripe/services/payment_method_service.rbi +43 -113
  214. data/rbi/stripe/services/payout_service.rbi +2 -2
  215. data/rbi/stripe/services/plan_service.rbi +2 -4
  216. data/rbi/stripe/services/price_service.rbi +2 -2
  217. data/rbi/stripe/services/product_feature_service.rbi +1 -3
  218. data/rbi/stripe/services/product_service.rbi +2 -4
  219. data/rbi/stripe/services/promotion_code_service.rbi +1 -1
  220. data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +1 -1
  221. data/rbi/stripe/services/radar/value_list_item_service.rbi +1 -3
  222. data/rbi/stripe/services/radar/value_list_service.rbi +1 -3
  223. data/rbi/stripe/services/setup_intent_service.rbi +110 -324
  224. data/rbi/stripe/services/source_service.rbi +1 -1
  225. data/rbi/stripe/services/subscription_item_service.rbi +28 -2
  226. data/rbi/stripe/services/subscription_schedule_service.rbi +107 -9
  227. data/rbi/stripe/services/subscription_service.rbi +85 -33
  228. data/rbi/stripe/services/tax/calculation_service.rbi +5 -1
  229. data/rbi/stripe/services/tax/registration_service.rbi +1 -1
  230. data/rbi/stripe/services/tax_id_service.rbi +1 -3
  231. data/rbi/stripe/services/terminal/configuration_service.rbi +1 -3
  232. data/rbi/stripe/services/terminal/location_service.rbi +2 -4
  233. data/rbi/stripe/services/terminal/reader_service.rbi +115 -4
  234. data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +33 -99
  235. data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +31 -0
  236. data/rbi/stripe/services/test_helpers/test_clock_service.rbi +1 -3
  237. data/rbi/stripe/services/token_service.rbi +1 -1
  238. data/rbi/stripe/services/transfer_service.rbi +1 -1
  239. data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +1 -3
  240. data/rbi/stripe/services/v2/core/event_destination_service.rbi +4 -12
  241. data/rbi/stripe/services/v2/core/event_service.rbi +1 -3
  242. data/rbi/stripe/services/webhook_endpoint_service.rbi +1 -3
  243. metadata +3 -2
@@ -474,6 +474,25 @@ module Stripe
474
474
  sig { returns(DisplayPreference) }
475
475
  attr_reader :display_preference
476
476
  end
477
+ class KakaoPay < Stripe::StripeObject
478
+ class DisplayPreference < Stripe::StripeObject
479
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
480
+ sig { returns(T.nilable(T::Boolean)) }
481
+ attr_reader :overridable
482
+ # The account's display preference.
483
+ sig { returns(String) }
484
+ attr_reader :preference
485
+ # The effective display preference value.
486
+ sig { returns(String) }
487
+ attr_reader :value
488
+ end
489
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
490
+ sig { returns(T::Boolean) }
491
+ attr_reader :available
492
+ # Attribute for field display_preference
493
+ sig { returns(DisplayPreference) }
494
+ attr_reader :display_preference
495
+ end
477
496
  class Klarna < Stripe::StripeObject
478
497
  class DisplayPreference < Stripe::StripeObject
479
498
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
@@ -512,6 +531,25 @@ module Stripe
512
531
  sig { returns(DisplayPreference) }
513
532
  attr_reader :display_preference
514
533
  end
534
+ class KrCard < Stripe::StripeObject
535
+ class DisplayPreference < Stripe::StripeObject
536
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
537
+ sig { returns(T.nilable(T::Boolean)) }
538
+ attr_reader :overridable
539
+ # The account's display preference.
540
+ sig { returns(String) }
541
+ attr_reader :preference
542
+ # The effective display preference value.
543
+ sig { returns(String) }
544
+ attr_reader :value
545
+ end
546
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
547
+ sig { returns(T::Boolean) }
548
+ attr_reader :available
549
+ # Attribute for field display_preference
550
+ sig { returns(DisplayPreference) }
551
+ attr_reader :display_preference
552
+ end
515
553
  class Link < Stripe::StripeObject
516
554
  class DisplayPreference < Stripe::StripeObject
517
555
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
@@ -569,6 +607,25 @@ module Stripe
569
607
  sig { returns(DisplayPreference) }
570
608
  attr_reader :display_preference
571
609
  end
610
+ class NaverPay < Stripe::StripeObject
611
+ class DisplayPreference < Stripe::StripeObject
612
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
613
+ sig { returns(T.nilable(T::Boolean)) }
614
+ attr_reader :overridable
615
+ # The account's display preference.
616
+ sig { returns(String) }
617
+ attr_reader :preference
618
+ # The effective display preference value.
619
+ sig { returns(String) }
620
+ attr_reader :value
621
+ end
622
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
623
+ sig { returns(T::Boolean) }
624
+ attr_reader :available
625
+ # Attribute for field display_preference
626
+ sig { returns(DisplayPreference) }
627
+ attr_reader :display_preference
628
+ end
572
629
  class NzBankAccount < Stripe::StripeObject
573
630
  class DisplayPreference < Stripe::StripeObject
574
631
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
@@ -645,6 +702,25 @@ module Stripe
645
702
  sig { returns(DisplayPreference) }
646
703
  attr_reader :display_preference
647
704
  end
705
+ class Payco < Stripe::StripeObject
706
+ class DisplayPreference < Stripe::StripeObject
707
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
708
+ sig { returns(T.nilable(T::Boolean)) }
709
+ attr_reader :overridable
710
+ # The account's display preference.
711
+ sig { returns(String) }
712
+ attr_reader :preference
713
+ # The effective display preference value.
714
+ sig { returns(String) }
715
+ attr_reader :value
716
+ end
717
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
718
+ sig { returns(T::Boolean) }
719
+ attr_reader :available
720
+ # Attribute for field display_preference
721
+ sig { returns(DisplayPreference) }
722
+ attr_reader :display_preference
723
+ end
648
724
  class Paynow < Stripe::StripeObject
649
725
  class DisplayPreference < Stripe::StripeObject
650
726
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
@@ -740,6 +816,25 @@ module Stripe
740
816
  sig { returns(DisplayPreference) }
741
817
  attr_reader :display_preference
742
818
  end
819
+ class SamsungPay < Stripe::StripeObject
820
+ class DisplayPreference < Stripe::StripeObject
821
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
822
+ sig { returns(T.nilable(T::Boolean)) }
823
+ attr_reader :overridable
824
+ # The account's display preference.
825
+ sig { returns(String) }
826
+ attr_reader :preference
827
+ # The effective display preference value.
828
+ sig { returns(String) }
829
+ attr_reader :value
830
+ end
831
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
832
+ sig { returns(T::Boolean) }
833
+ attr_reader :available
834
+ # Attribute for field display_preference
835
+ sig { returns(DisplayPreference) }
836
+ attr_reader :display_preference
837
+ end
743
838
  class Satispay < Stripe::StripeObject
744
839
  class DisplayPreference < Stripe::StripeObject
745
840
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
@@ -976,12 +1071,18 @@ module Stripe
976
1071
  # Attribute for field jcb
977
1072
  sig { returns(Jcb) }
978
1073
  attr_reader :jcb
1074
+ # Attribute for field kakao_pay
1075
+ sig { returns(KakaoPay) }
1076
+ attr_reader :kakao_pay
979
1077
  # Attribute for field klarna
980
1078
  sig { returns(Klarna) }
981
1079
  attr_reader :klarna
982
1080
  # Attribute for field konbini
983
1081
  sig { returns(Konbini) }
984
1082
  attr_reader :konbini
1083
+ # Attribute for field kr_card
1084
+ sig { returns(KrCard) }
1085
+ attr_reader :kr_card
985
1086
  # Attribute for field link
986
1087
  sig { returns(Link) }
987
1088
  attr_reader :link
@@ -997,6 +1098,9 @@ module Stripe
997
1098
  # The configuration's name.
998
1099
  sig { returns(String) }
999
1100
  attr_reader :name
1101
+ # Attribute for field naver_pay
1102
+ sig { returns(NaverPay) }
1103
+ attr_reader :naver_pay
1000
1104
  # Attribute for field nz_bank_account
1001
1105
  sig { returns(NzBankAccount) }
1002
1106
  attr_reader :nz_bank_account
@@ -1015,6 +1119,9 @@ module Stripe
1015
1119
  # Attribute for field pay_by_bank
1016
1120
  sig { returns(PayByBank) }
1017
1121
  attr_reader :pay_by_bank
1122
+ # Attribute for field payco
1123
+ sig { returns(Payco) }
1124
+ attr_reader :payco
1018
1125
  # Attribute for field paynow
1019
1126
  sig { returns(Paynow) }
1020
1127
  attr_reader :paynow
@@ -1030,6 +1137,9 @@ module Stripe
1030
1137
  # Attribute for field revolut_pay
1031
1138
  sig { returns(RevolutPay) }
1032
1139
  attr_reader :revolut_pay
1140
+ # Attribute for field samsung_pay
1141
+ sig { returns(SamsungPay) }
1142
+ attr_reader :samsung_pay
1033
1143
  # Attribute for field satispay
1034
1144
  sig { returns(Satispay) }
1035
1145
  attr_reader :satispay
@@ -1532,6 +1642,24 @@ module Stripe
1532
1642
  }
1533
1643
  def initialize(display_preference: nil); end
1534
1644
  end
1645
+ class KakaoPay < Stripe::RequestParams
1646
+ class DisplayPreference < Stripe::RequestParams
1647
+ # The account's preference for whether or not to display this payment method.
1648
+ sig { returns(T.nilable(String)) }
1649
+ attr_accessor :preference
1650
+ sig { params(preference: T.nilable(String)).void }
1651
+ def initialize(preference: nil); end
1652
+ end
1653
+ # Whether or not the payment method should be displayed.
1654
+ sig {
1655
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KakaoPay::DisplayPreference))
1656
+ }
1657
+ attr_accessor :display_preference
1658
+ sig {
1659
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KakaoPay::DisplayPreference)).void
1660
+ }
1661
+ def initialize(display_preference: nil); end
1662
+ end
1535
1663
  class Klarna < Stripe::RequestParams
1536
1664
  class DisplayPreference < Stripe::RequestParams
1537
1665
  # The account's preference for whether or not to display this payment method.
@@ -1568,6 +1696,24 @@ module Stripe
1568
1696
  }
1569
1697
  def initialize(display_preference: nil); end
1570
1698
  end
1699
+ class KrCard < Stripe::RequestParams
1700
+ class DisplayPreference < Stripe::RequestParams
1701
+ # The account's preference for whether or not to display this payment method.
1702
+ sig { returns(T.nilable(String)) }
1703
+ attr_accessor :preference
1704
+ sig { params(preference: T.nilable(String)).void }
1705
+ def initialize(preference: nil); end
1706
+ end
1707
+ # Whether or not the payment method should be displayed.
1708
+ sig {
1709
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KrCard::DisplayPreference))
1710
+ }
1711
+ attr_accessor :display_preference
1712
+ sig {
1713
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KrCard::DisplayPreference)).void
1714
+ }
1715
+ def initialize(display_preference: nil); end
1716
+ end
1571
1717
  class Link < Stripe::RequestParams
1572
1718
  class DisplayPreference < Stripe::RequestParams
1573
1719
  # The account's preference for whether or not to display this payment method.
@@ -1622,6 +1768,24 @@ module Stripe
1622
1768
  }
1623
1769
  def initialize(display_preference: nil); end
1624
1770
  end
1771
+ class NaverPay < Stripe::RequestParams
1772
+ class DisplayPreference < Stripe::RequestParams
1773
+ # The account's preference for whether or not to display this payment method.
1774
+ sig { returns(T.nilable(String)) }
1775
+ attr_accessor :preference
1776
+ sig { params(preference: T.nilable(String)).void }
1777
+ def initialize(preference: nil); end
1778
+ end
1779
+ # Whether or not the payment method should be displayed.
1780
+ sig {
1781
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NaverPay::DisplayPreference))
1782
+ }
1783
+ attr_accessor :display_preference
1784
+ sig {
1785
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NaverPay::DisplayPreference)).void
1786
+ }
1787
+ def initialize(display_preference: nil); end
1788
+ end
1625
1789
  class NzBankAccount < Stripe::RequestParams
1626
1790
  class DisplayPreference < Stripe::RequestParams
1627
1791
  # The account's preference for whether or not to display this payment method.
@@ -1694,6 +1858,24 @@ module Stripe
1694
1858
  }
1695
1859
  def initialize(display_preference: nil); end
1696
1860
  end
1861
+ class Payco < Stripe::RequestParams
1862
+ class DisplayPreference < Stripe::RequestParams
1863
+ # The account's preference for whether or not to display this payment method.
1864
+ sig { returns(T.nilable(String)) }
1865
+ attr_accessor :preference
1866
+ sig { params(preference: T.nilable(String)).void }
1867
+ def initialize(preference: nil); end
1868
+ end
1869
+ # Whether or not the payment method should be displayed.
1870
+ sig {
1871
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Payco::DisplayPreference))
1872
+ }
1873
+ attr_accessor :display_preference
1874
+ sig {
1875
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Payco::DisplayPreference)).void
1876
+ }
1877
+ def initialize(display_preference: nil); end
1878
+ end
1697
1879
  class Paynow < Stripe::RequestParams
1698
1880
  class DisplayPreference < Stripe::RequestParams
1699
1881
  # The account's preference for whether or not to display this payment method.
@@ -1784,6 +1966,24 @@ module Stripe
1784
1966
  }
1785
1967
  def initialize(display_preference: nil); end
1786
1968
  end
1969
+ class SamsungPay < Stripe::RequestParams
1970
+ class DisplayPreference < Stripe::RequestParams
1971
+ # The account's preference for whether or not to display this payment method.
1972
+ sig { returns(T.nilable(String)) }
1973
+ attr_accessor :preference
1974
+ sig { params(preference: T.nilable(String)).void }
1975
+ def initialize(preference: nil); end
1976
+ end
1977
+ # Whether or not the payment method should be displayed.
1978
+ sig {
1979
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::SamsungPay::DisplayPreference))
1980
+ }
1981
+ attr_accessor :display_preference
1982
+ sig {
1983
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::SamsungPay::DisplayPreference)).void
1984
+ }
1985
+ def initialize(display_preference: nil); end
1986
+ end
1787
1987
  class Satispay < Stripe::RequestParams
1788
1988
  class DisplayPreference < Stripe::RequestParams
1789
1989
  # The account's preference for whether or not to display this payment method.
@@ -1948,7 +2148,7 @@ module Stripe
1948
2148
  # Amazon Pay is a wallet payment method that lets your customers check out the same way as on Amazon.
1949
2149
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AmazonPay)) }
1950
2150
  attr_accessor :amazon_pay
1951
- # 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.
2151
+ # 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.
1952
2152
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::ApplePay)) }
1953
2153
  attr_accessor :apple_pay
1954
2154
  # Apple Pay Later, a payment method for customers to buy now and pay later, gives your customers a way to split purchases into four installments across six weeks.
@@ -2012,12 +2212,18 @@ module Stripe
2012
2212
  # 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.
2013
2213
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Jcb)) }
2014
2214
  attr_accessor :jcb
2215
+ # Kakao Pay is a popular local wallet available in South Korea.
2216
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KakaoPay)) }
2217
+ attr_accessor :kakao_pay
2015
2218
  # 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.
2016
2219
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Klarna)) }
2017
2220
  attr_accessor :klarna
2018
2221
  # 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.
2019
2222
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Konbini)) }
2020
2223
  attr_accessor :konbini
2224
+ # Korean cards let users pay using locally issued cards from South Korea.
2225
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KrCard)) }
2226
+ attr_accessor :kr_card
2021
2227
  # [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.
2022
2228
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Link)) }
2023
2229
  attr_accessor :link
@@ -2030,6 +2236,9 @@ module Stripe
2030
2236
  # Configuration name.
2031
2237
  sig { returns(T.nilable(String)) }
2032
2238
  attr_accessor :name
2239
+ # Naver Pay is a popular local wallet available in South Korea.
2240
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NaverPay)) }
2241
+ attr_accessor :naver_pay
2033
2242
  # 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.
2034
2243
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NzBankAccount)) }
2035
2244
  attr_accessor :nz_bank_account
@@ -2045,6 +2254,9 @@ module Stripe
2045
2254
  # Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
2046
2255
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank)) }
2047
2256
  attr_accessor :pay_by_bank
2257
+ # PAYCO is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
2258
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Payco)) }
2259
+ attr_accessor :payco
2048
2260
  # 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.
2049
2261
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Paynow)) }
2050
2262
  attr_accessor :paynow
@@ -2060,6 +2272,9 @@ module Stripe
2060
2272
  # Revolut Pay, developed by Revolut, a global finance app, is a digital wallet payment method. Revolut Pay uses the customer’s stored balance or cards to fund the payment, and offers the option for non-Revolut customers to save their details after their first purchase.
2061
2273
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::RevolutPay)) }
2062
2274
  attr_accessor :revolut_pay
2275
+ # Samsung Pay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
2276
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::SamsungPay)) }
2277
+ attr_accessor :samsung_pay
2063
2278
  # 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.
2064
2279
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Satispay)) }
2065
2280
  attr_accessor :satispay
@@ -2085,7 +2300,7 @@ module Stripe
2085
2300
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Zip)) }
2086
2301
  attr_accessor :zip
2087
2302
  sig {
2088
- params(acss_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AcssDebit), affirm: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Jcb), klarna: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Konbini), link: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Multibanco), name: T.nilable(String), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::P24), parent: T.nilable(String), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank), paynow: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Paypal), pix: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Pix), promptpay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::RevolutPay), satispay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Zip)).void
2303
+ params(acss_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AcssDebit), affirm: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Jcb), kakao_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KakaoPay), klarna: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Konbini), kr_card: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::KrCard), link: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Multibanco), name: T.nilable(String), naver_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NaverPay), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::P24), parent: T.nilable(String), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::PayByBank), payco: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Payco), paynow: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Paypal), pix: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Pix), promptpay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::RevolutPay), samsung_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::SamsungPay), satispay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfiguration::CreateParams::Zip)).void
2089
2304
  }
2090
2305
  def initialize(
2091
2306
  acss_debit: nil,
@@ -2114,22 +2329,27 @@ module Stripe
2114
2329
  grabpay: nil,
2115
2330
  ideal: nil,
2116
2331
  jcb: nil,
2332
+ kakao_pay: nil,
2117
2333
  klarna: nil,
2118
2334
  konbini: nil,
2335
+ kr_card: nil,
2119
2336
  link: nil,
2120
2337
  mobilepay: nil,
2121
2338
  multibanco: nil,
2122
2339
  name: nil,
2340
+ naver_pay: nil,
2123
2341
  nz_bank_account: nil,
2124
2342
  oxxo: nil,
2125
2343
  p24: nil,
2126
2344
  parent: nil,
2127
2345
  pay_by_bank: nil,
2346
+ payco: nil,
2128
2347
  paynow: nil,
2129
2348
  paypal: nil,
2130
2349
  pix: nil,
2131
2350
  promptpay: nil,
2132
2351
  revolut_pay: nil,
2352
+ samsung_pay: nil,
2133
2353
  satispay: nil,
2134
2354
  sepa_debit: nil,
2135
2355
  sofort: nil,
@@ -2591,6 +2811,24 @@ module Stripe
2591
2811
  }
2592
2812
  def initialize(display_preference: nil); end
2593
2813
  end
2814
+ class KakaoPay < Stripe::RequestParams
2815
+ class DisplayPreference < Stripe::RequestParams
2816
+ # The account's preference for whether or not to display this payment method.
2817
+ sig { returns(T.nilable(String)) }
2818
+ attr_accessor :preference
2819
+ sig { params(preference: T.nilable(String)).void }
2820
+ def initialize(preference: nil); end
2821
+ end
2822
+ # Whether or not the payment method should be displayed.
2823
+ sig {
2824
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KakaoPay::DisplayPreference))
2825
+ }
2826
+ attr_accessor :display_preference
2827
+ sig {
2828
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KakaoPay::DisplayPreference)).void
2829
+ }
2830
+ def initialize(display_preference: nil); end
2831
+ end
2594
2832
  class Klarna < Stripe::RequestParams
2595
2833
  class DisplayPreference < Stripe::RequestParams
2596
2834
  # The account's preference for whether or not to display this payment method.
@@ -2627,6 +2865,24 @@ module Stripe
2627
2865
  }
2628
2866
  def initialize(display_preference: nil); end
2629
2867
  end
2868
+ class KrCard < Stripe::RequestParams
2869
+ class DisplayPreference < Stripe::RequestParams
2870
+ # The account's preference for whether or not to display this payment method.
2871
+ sig { returns(T.nilable(String)) }
2872
+ attr_accessor :preference
2873
+ sig { params(preference: T.nilable(String)).void }
2874
+ def initialize(preference: nil); end
2875
+ end
2876
+ # Whether or not the payment method should be displayed.
2877
+ sig {
2878
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KrCard::DisplayPreference))
2879
+ }
2880
+ attr_accessor :display_preference
2881
+ sig {
2882
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KrCard::DisplayPreference)).void
2883
+ }
2884
+ def initialize(display_preference: nil); end
2885
+ end
2630
2886
  class Link < Stripe::RequestParams
2631
2887
  class DisplayPreference < Stripe::RequestParams
2632
2888
  # The account's preference for whether or not to display this payment method.
@@ -2681,6 +2937,24 @@ module Stripe
2681
2937
  }
2682
2938
  def initialize(display_preference: nil); end
2683
2939
  end
2940
+ class NaverPay < Stripe::RequestParams
2941
+ class DisplayPreference < Stripe::RequestParams
2942
+ # The account's preference for whether or not to display this payment method.
2943
+ sig { returns(T.nilable(String)) }
2944
+ attr_accessor :preference
2945
+ sig { params(preference: T.nilable(String)).void }
2946
+ def initialize(preference: nil); end
2947
+ end
2948
+ # Whether or not the payment method should be displayed.
2949
+ sig {
2950
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NaverPay::DisplayPreference))
2951
+ }
2952
+ attr_accessor :display_preference
2953
+ sig {
2954
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NaverPay::DisplayPreference)).void
2955
+ }
2956
+ def initialize(display_preference: nil); end
2957
+ end
2684
2958
  class NzBankAccount < Stripe::RequestParams
2685
2959
  class DisplayPreference < Stripe::RequestParams
2686
2960
  # The account's preference for whether or not to display this payment method.
@@ -2753,6 +3027,24 @@ module Stripe
2753
3027
  }
2754
3028
  def initialize(display_preference: nil); end
2755
3029
  end
3030
+ class Payco < Stripe::RequestParams
3031
+ class DisplayPreference < Stripe::RequestParams
3032
+ # The account's preference for whether or not to display this payment method.
3033
+ sig { returns(T.nilable(String)) }
3034
+ attr_accessor :preference
3035
+ sig { params(preference: T.nilable(String)).void }
3036
+ def initialize(preference: nil); end
3037
+ end
3038
+ # Whether or not the payment method should be displayed.
3039
+ sig {
3040
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Payco::DisplayPreference))
3041
+ }
3042
+ attr_accessor :display_preference
3043
+ sig {
3044
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Payco::DisplayPreference)).void
3045
+ }
3046
+ def initialize(display_preference: nil); end
3047
+ end
2756
3048
  class Paynow < Stripe::RequestParams
2757
3049
  class DisplayPreference < Stripe::RequestParams
2758
3050
  # The account's preference for whether or not to display this payment method.
@@ -2843,6 +3135,24 @@ module Stripe
2843
3135
  }
2844
3136
  def initialize(display_preference: nil); end
2845
3137
  end
3138
+ class SamsungPay < Stripe::RequestParams
3139
+ class DisplayPreference < Stripe::RequestParams
3140
+ # The account's preference for whether or not to display this payment method.
3141
+ sig { returns(T.nilable(String)) }
3142
+ attr_accessor :preference
3143
+ sig { params(preference: T.nilable(String)).void }
3144
+ def initialize(preference: nil); end
3145
+ end
3146
+ # Whether or not the payment method should be displayed.
3147
+ sig {
3148
+ returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::SamsungPay::DisplayPreference))
3149
+ }
3150
+ attr_accessor :display_preference
3151
+ sig {
3152
+ params(display_preference: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::SamsungPay::DisplayPreference)).void
3153
+ }
3154
+ def initialize(display_preference: nil); end
3155
+ end
2846
3156
  class Satispay < Stripe::RequestParams
2847
3157
  class DisplayPreference < Stripe::RequestParams
2848
3158
  # The account's preference for whether or not to display this payment method.
@@ -3010,7 +3320,7 @@ module Stripe
3010
3320
  # Amazon Pay is a wallet payment method that lets your customers check out the same way as on Amazon.
3011
3321
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AmazonPay)) }
3012
3322
  attr_accessor :amazon_pay
3013
- # 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.
3323
+ # 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.
3014
3324
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePay)) }
3015
3325
  attr_accessor :apple_pay
3016
3326
  # Apple Pay Later, a payment method for customers to buy now and pay later, gives your customers a way to split purchases into four installments across six weeks.
@@ -3074,12 +3384,18 @@ module Stripe
3074
3384
  # 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.
3075
3385
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Jcb)) }
3076
3386
  attr_accessor :jcb
3387
+ # Kakao Pay is a popular local wallet available in South Korea.
3388
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KakaoPay)) }
3389
+ attr_accessor :kakao_pay
3077
3390
  # 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.
3078
3391
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Klarna)) }
3079
3392
  attr_accessor :klarna
3080
3393
  # 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.
3081
3394
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Konbini)) }
3082
3395
  attr_accessor :konbini
3396
+ # Korean cards let users pay using locally issued cards from South Korea.
3397
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KrCard)) }
3398
+ attr_accessor :kr_card
3083
3399
  # [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.
3084
3400
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Link)) }
3085
3401
  attr_accessor :link
@@ -3092,6 +3408,9 @@ module Stripe
3092
3408
  # Configuration name.
3093
3409
  sig { returns(T.nilable(String)) }
3094
3410
  attr_accessor :name
3411
+ # Naver Pay is a popular local wallet available in South Korea.
3412
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NaverPay)) }
3413
+ attr_accessor :naver_pay
3095
3414
  # 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.
3096
3415
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NzBankAccount)) }
3097
3416
  attr_accessor :nz_bank_account
@@ -3104,6 +3423,9 @@ module Stripe
3104
3423
  # Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
3105
3424
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank)) }
3106
3425
  attr_accessor :pay_by_bank
3426
+ # PAYCO is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
3427
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Payco)) }
3428
+ attr_accessor :payco
3107
3429
  # 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.
3108
3430
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Paynow)) }
3109
3431
  attr_accessor :paynow
@@ -3119,6 +3441,9 @@ module Stripe
3119
3441
  # Revolut Pay, developed by Revolut, a global finance app, is a digital wallet payment method. Revolut Pay uses the customer’s stored balance or cards to fund the payment, and offers the option for non-Revolut customers to save their details after their first purchase.
3120
3442
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::RevolutPay)) }
3121
3443
  attr_accessor :revolut_pay
3444
+ # Samsung Pay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
3445
+ sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::SamsungPay)) }
3446
+ attr_accessor :samsung_pay
3122
3447
  # 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.
3123
3448
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Satispay)) }
3124
3449
  attr_accessor :satispay
@@ -3144,7 +3469,7 @@ module Stripe
3144
3469
  sig { returns(T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Zip)) }
3145
3470
  attr_accessor :zip
3146
3471
  sig {
3147
- params(acss_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AcssDebit), active: T.nilable(T::Boolean), affirm: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Jcb), klarna: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Konbini), link: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Multibanco), name: T.nilable(String), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::P24), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank), paynow: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Paypal), pix: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Pix), promptpay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::RevolutPay), satispay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Zip)).void
3472
+ params(acss_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AcssDebit), active: T.nilable(T::Boolean), affirm: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Affirm), afterpay_clearpay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AfterpayClearpay), alipay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Alipay), alma: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Alma), amazon_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AmazonPay), apple_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePay), apple_pay_later: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::ApplePayLater), au_becs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::AuBecsDebit), bacs_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::BacsDebit), bancontact: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Bancontact), billie: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Billie), blik: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Blik), boleto: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Boleto), card: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Card), cartes_bancaires: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::CartesBancaires), cashapp: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Cashapp), customer_balance: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::CustomerBalance), eps: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Eps), expand: T.nilable(T::Array[String]), fpx: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Fpx), giropay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Giropay), google_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::GooglePay), grabpay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Grabpay), ideal: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Ideal), jcb: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Jcb), kakao_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KakaoPay), klarna: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Klarna), konbini: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Konbini), kr_card: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::KrCard), link: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Link), mobilepay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Mobilepay), multibanco: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Multibanco), name: T.nilable(String), naver_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NaverPay), nz_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::NzBankAccount), oxxo: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Oxxo), p24: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::P24), pay_by_bank: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::PayByBank), payco: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Payco), paynow: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Paynow), paypal: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Paypal), pix: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Pix), promptpay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Promptpay), revolut_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::RevolutPay), samsung_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::SamsungPay), satispay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Satispay), sepa_debit: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::SepaDebit), sofort: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Sofort), swish: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Swish), twint: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Twint), us_bank_account: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::UsBankAccount), wechat_pay: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::WechatPay), zip: T.nilable(::Stripe::PaymentMethodConfiguration::UpdateParams::Zip)).void
3148
3473
  }
3149
3474
  def initialize(
3150
3475
  acss_debit: nil,
@@ -3174,21 +3499,26 @@ module Stripe
3174
3499
  grabpay: nil,
3175
3500
  ideal: nil,
3176
3501
  jcb: nil,
3502
+ kakao_pay: nil,
3177
3503
  klarna: nil,
3178
3504
  konbini: nil,
3505
+ kr_card: nil,
3179
3506
  link: nil,
3180
3507
  mobilepay: nil,
3181
3508
  multibanco: nil,
3182
3509
  name: nil,
3510
+ naver_pay: nil,
3183
3511
  nz_bank_account: nil,
3184
3512
  oxxo: nil,
3185
3513
  p24: nil,
3186
3514
  pay_by_bank: nil,
3515
+ payco: nil,
3187
3516
  paynow: nil,
3188
3517
  paypal: nil,
3189
3518
  pix: nil,
3190
3519
  promptpay: nil,
3191
3520
  revolut_pay: nil,
3521
+ samsung_pay: nil,
3192
3522
  satispay: nil,
3193
3523
  sepa_debit: nil,
3194
3524
  sofort: nil,
@@ -208,7 +208,7 @@ module Stripe
208
208
  #
209
209
  # 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.
210
210
  #
211
- # Related guides: [Payment method domains](https://stripe.com/docs/payments/payment-methods/pmd-registration).
211
+ # Related guides: [Payment method domains](https://docs.stripe.com/docs/payments/payment-methods/pmd-registration).
212
212
  sig {
213
213
  params(params: T.any(::Stripe::PaymentMethodDomain::ValidateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::PaymentMethodDomain)
214
214
  }
@@ -219,7 +219,7 @@ module Stripe
219
219
  #
220
220
  # 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.
221
221
  #
222
- # Related guides: [Payment method domains](https://stripe.com/docs/payments/payment-methods/pmd-registration).
222
+ # Related guides: [Payment method domains](https://docs.stripe.com/docs/payments/payment-methods/pmd-registration).
223
223
  sig {
224
224
  params(payment_method_domain: String, params: T.any(::Stripe::PaymentMethodDomain::ValidateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::PaymentMethodDomain)
225
225
  }