stripe 13.3.0 → 13.4.0.pre.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (743) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1416 -645
  3. data/OPENAPI_VERSION +1 -1
  4. data/VERSION +1 -1
  5. data/lib/stripe/api_operations/request.rb +1 -0
  6. data/lib/stripe/api_requestor.rb +1 -0
  7. data/lib/stripe/object_types.rb +32 -0
  8. data/lib/stripe/request_params.rb +24 -0
  9. data/lib/stripe/request_signing_authenticator.rb +79 -0
  10. data/lib/stripe/resources/account.rb +5071 -0
  11. data/lib/stripe/resources/account_link.rb +54 -0
  12. data/lib/stripe/resources/account_notice.rb +132 -0
  13. data/lib/stripe/resources/account_session.rb +877 -0
  14. data/lib/stripe/resources/apple_pay_domain.rb +63 -0
  15. data/lib/stripe/resources/application.rb +20 -0
  16. data/lib/stripe/resources/application_fee.rb +96 -0
  17. data/lib/stripe/resources/application_fee_refund.rb +17 -0
  18. data/lib/stripe/resources/apps/secret.rb +141 -0
  19. data/lib/stripe/resources/balance.rb +131 -0
  20. data/lib/stripe/resources/balance_transaction.rb +112 -0
  21. data/lib/stripe/resources/bank_account.rb +84 -2
  22. data/lib/stripe/resources/billing/alert.rb +144 -0
  23. data/lib/stripe/resources/billing/alert_triggered.rb +26 -0
  24. data/lib/stripe/resources/billing/credit_balance_summary.rb +77 -0
  25. data/lib/stripe/resources/billing/credit_balance_transaction.rb +116 -0
  26. data/lib/stripe/resources/billing/credit_grant.rb +203 -0
  27. data/lib/stripe/resources/billing/meter.rb +178 -0
  28. data/lib/stripe/resources/billing/meter_error_report.rb +59 -0
  29. data/lib/stripe/resources/billing/meter_event.rb +35 -0
  30. data/lib/stripe/resources/billing/meter_event_adjustment.rb +43 -0
  31. data/lib/stripe/resources/billing/meter_event_summary.rb +15 -0
  32. data/lib/stripe/resources/billing_portal/configuration.rb +562 -0
  33. data/lib/stripe/resources/billing_portal/session.rb +271 -0
  34. data/lib/stripe/resources/capability.rb +84 -0
  35. data/lib/stripe/resources/capital/financing_offer.rb +188 -0
  36. data/lib/stripe/resources/capital/financing_summary.rb +64 -0
  37. data/lib/stripe/resources/capital/financing_transaction.rb +123 -0
  38. data/lib/stripe/resources/card.rb +79 -0
  39. data/lib/stripe/resources/cash_balance.rb +17 -0
  40. data/lib/stripe/resources/charge.rb +3026 -0
  41. data/lib/stripe/resources/checkout/session.rb +3654 -0
  42. data/lib/stripe/resources/climate/order.rb +176 -0
  43. data/lib/stripe/resources/climate/product.rb +56 -0
  44. data/lib/stripe/resources/climate/supplier.rb +54 -0
  45. data/lib/stripe/resources/confirmation_token.rb +1520 -0
  46. data/lib/stripe/resources/connect_collection_transfer.rb +24 -0
  47. data/lib/stripe/resources/country_spec.rb +63 -0
  48. data/lib/stripe/resources/coupon.rb +198 -0
  49. data/lib/stripe/resources/credit_note.rb +660 -0
  50. data/lib/stripe/resources/credit_note_line_item.rb +65 -0
  51. data/lib/stripe/resources/customer.rb +840 -0
  52. data/lib/stripe/resources/customer_balance_transaction.rb +27 -0
  53. data/lib/stripe/resources/customer_cash_balance_transaction.rb +109 -0
  54. data/lib/stripe/resources/customer_session.rb +159 -0
  55. data/lib/stripe/resources/discount.rb +29 -0
  56. data/lib/stripe/resources/dispute.rb +619 -0
  57. data/lib/stripe/resources/entitlements/active_entitlement.rb +46 -0
  58. data/lib/stripe/resources/entitlements/active_entitlement_summary.rb +23 -0
  59. data/lib/stripe/resources/entitlements/feature.rb +90 -0
  60. data/lib/stripe/resources/ephemeral_key.rb +21 -0
  61. data/lib/stripe/resources/event.rb +130 -0
  62. data/lib/stripe/resources/exchange_rate.rb +33 -0
  63. data/lib/stripe/resources/file.rb +111 -0
  64. data/lib/stripe/resources/file_link.rb +112 -0
  65. data/lib/stripe/resources/financial_connections/account.rb +260 -0
  66. data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +27 -0
  67. data/lib/stripe/resources/financial_connections/account_owner.rb +17 -0
  68. data/lib/stripe/resources/financial_connections/account_ownership.rb +9 -0
  69. data/lib/stripe/resources/financial_connections/institution.rb +99 -0
  70. data/lib/stripe/resources/financial_connections/session.rb +159 -0
  71. data/lib/stripe/resources/financial_connections/transaction.rb +101 -0
  72. data/lib/stripe/resources/forwarding/request.rb +165 -0
  73. data/lib/stripe/resources/funding_instructions.rb +308 -0
  74. data/lib/stripe/resources/gift_cards/card.rb +217 -0
  75. data/lib/stripe/resources/gift_cards/transaction.rb +281 -0
  76. data/lib/stripe/resources/identity/verification_report.rb +266 -0
  77. data/lib/stripe/resources/identity/verification_session.rb +361 -0
  78. data/lib/stripe/resources/invoice.rb +8078 -0
  79. data/lib/stripe/resources/invoice_item.rb +445 -0
  80. data/lib/stripe/resources/invoice_line_item.rb +333 -0
  81. data/lib/stripe/resources/invoice_payment.rb +56 -0
  82. data/lib/stripe/resources/invoice_rendering_template.rb +67 -0
  83. data/lib/stripe/resources/issuing/authorization.rb +1117 -2
  84. data/lib/stripe/resources/issuing/card.rb +666 -0
  85. data/lib/stripe/resources/issuing/cardholder.rb +658 -0
  86. data/lib/stripe/resources/issuing/credit_underwriting_record.rb +611 -0
  87. data/lib/stripe/resources/issuing/dispute.rb +790 -0
  88. data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +84 -0
  89. data/lib/stripe/resources/issuing/fraud_liability_debit.rb +95 -0
  90. data/lib/stripe/resources/issuing/personalization_design.rb +285 -0
  91. data/lib/stripe/resources/issuing/physical_bundle.rb +63 -0
  92. data/lib/stripe/resources/issuing/settlement.rb +49 -0
  93. data/lib/stripe/resources/issuing/token.rb +175 -0
  94. data/lib/stripe/resources/issuing/transaction.rb +927 -0
  95. data/lib/stripe/resources/line_item.rb +75 -0
  96. data/lib/stripe/resources/login_link.rb +7 -0
  97. data/lib/stripe/resources/mandate.rb +169 -0
  98. data/lib/stripe/resources/margin.rb +124 -0
  99. data/lib/stripe/resources/order.rb +2850 -0
  100. data/lib/stripe/resources/payment_attempt_record.rb +184 -0
  101. data/lib/stripe/resources/payment_intent.rb +12864 -0
  102. data/lib/stripe/resources/payment_link.rb +1563 -0
  103. data/lib/stripe/resources/payment_method.rb +1638 -0
  104. data/lib/stripe/resources/payment_method_configuration.rb +2844 -0
  105. data/lib/stripe/resources/payment_method_domain.rb +153 -0
  106. data/lib/stripe/resources/payment_record.rb +715 -0
  107. data/lib/stripe/resources/payout.rb +218 -0
  108. data/lib/stripe/resources/person.rb +263 -0
  109. data/lib/stripe/resources/plan.rb +317 -0
  110. data/lib/stripe/resources/price.rb +649 -0
  111. data/lib/stripe/resources/product.rb +536 -0
  112. data/lib/stripe/resources/product_feature.rb +12 -0
  113. data/lib/stripe/resources/promotion_code.rb +221 -0
  114. data/lib/stripe/resources/quote.rb +2946 -0
  115. data/lib/stripe/resources/quote_line.rb +274 -0
  116. data/lib/stripe/resources/quote_preview_invoice.rb +652 -0
  117. data/lib/stripe/resources/quote_preview_subscription_schedule.rb +362 -0
  118. data/lib/stripe/resources/radar/early_fraud_warning.rb +77 -0
  119. data/lib/stripe/resources/radar/value_list.rb +125 -0
  120. data/lib/stripe/resources/radar/value_list_item.rb +95 -0
  121. data/lib/stripe/resources/refund.rb +397 -0
  122. data/lib/stripe/resources/reporting/report_run.rb +150 -0
  123. data/lib/stripe/resources/reporting/report_type.rb +36 -0
  124. data/lib/stripe/resources/reserve_transaction.rb +22 -0
  125. data/lib/stripe/resources/reversal.rb +21 -0
  126. data/lib/stripe/resources/review.rb +108 -0
  127. data/lib/stripe/resources/setup_attempt.rb +373 -0
  128. data/lib/stripe/resources/setup_intent.rb +3834 -0
  129. data/lib/stripe/resources/shipping_rate.rb +259 -0
  130. data/lib/stripe/resources/sigma/scheduled_query_run.rb +54 -0
  131. data/lib/stripe/resources/source.rb +1239 -0
  132. data/lib/stripe/resources/source_mandate_notification.rb +66 -0
  133. data/lib/stripe/resources/source_transaction.rb +85 -0
  134. data/lib/stripe/resources/subscription.rb +2057 -0
  135. data/lib/stripe/resources/subscription_item.rb +433 -0
  136. data/lib/stripe/resources/subscription_schedule.rb +2402 -0
  137. data/lib/stripe/resources/tax/association.rb +89 -0
  138. data/lib/stripe/resources/tax/calculation.rb +387 -0
  139. data/lib/stripe/resources/tax/calculation_line_item.rb +56 -0
  140. data/lib/stripe/resources/tax/form.rb +220 -0
  141. data/lib/stripe/resources/tax/registration.rb +2382 -0
  142. data/lib/stripe/resources/tax/settings.rb +126 -0
  143. data/lib/stripe/resources/tax/transaction.rb +267 -0
  144. data/lib/stripe/resources/tax/transaction_line_item.rb +31 -0
  145. data/lib/stripe/resources/tax_code.rb +35 -0
  146. data/lib/stripe/resources/tax_deducted_at_source.rb +22 -0
  147. data/lib/stripe/resources/tax_id.rb +121 -0
  148. data/lib/stripe/resources/tax_rate.rb +200 -0
  149. data/lib/stripe/resources/terminal/configuration.rb +1011 -0
  150. data/lib/stripe/resources/terminal/connection_token.rb +18 -0
  151. data/lib/stripe/resources/terminal/location.rb +175 -0
  152. data/lib/stripe/resources/terminal/reader.rb +782 -0
  153. data/lib/stripe/resources/terminal/reader_collected_data.rb +40 -0
  154. data/lib/stripe/resources/test_helpers/test_clock.rb +86 -0
  155. data/lib/stripe/resources/token.rb +1149 -0
  156. data/lib/stripe/resources/topup.rb +174 -0
  157. data/lib/stripe/resources/transfer.rb +153 -0
  158. data/lib/stripe/resources/treasury/credit_reversal.rb +92 -0
  159. data/lib/stripe/resources/treasury/debit_reversal.rb +103 -0
  160. data/lib/stripe/resources/treasury/financial_account.rb +772 -0
  161. data/lib/stripe/resources/treasury/financial_account_features.rb +191 -0
  162. data/lib/stripe/resources/treasury/inbound_transfer.rb +235 -0
  163. data/lib/stripe/resources/treasury/outbound_payment.rb +495 -0
  164. data/lib/stripe/resources/treasury/outbound_transfer.rb +387 -0
  165. data/lib/stripe/resources/treasury/received_credit.rb +283 -0
  166. data/lib/stripe/resources/treasury/received_debit.rb +244 -0
  167. data/lib/stripe/resources/treasury/transaction.rb +176 -0
  168. data/lib/stripe/resources/treasury/transaction_entry.rb +157 -0
  169. data/lib/stripe/resources/usage_record.rb +13 -0
  170. data/lib/stripe/resources/usage_record_summary.rb +21 -0
  171. data/lib/stripe/resources/v2/amount.rb +9 -0
  172. data/lib/stripe/resources/v2/billing/meter_event.rb +18 -0
  173. data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +21 -0
  174. data/lib/stripe/resources/v2/billing/meter_event_session.rb +14 -0
  175. data/lib/stripe/resources/v2/event.rb +27 -0
  176. data/lib/stripe/resources/v2/event_destination.rb +59 -0
  177. data/lib/stripe/resources/webhook_endpoint.rb +122 -0
  178. data/lib/stripe/resources.rb +31 -0
  179. data/lib/stripe/services/account_capability_service.rb +32 -0
  180. data/lib/stripe/services/account_external_account_service.rb +250 -0
  181. data/lib/stripe/services/account_link_service.rb +46 -0
  182. data/lib/stripe/services/account_login_link_service.rb +9 -0
  183. data/lib/stripe/services/account_notice_service.rb +101 -0
  184. data/lib/stripe/services/account_person_service.rb +875 -0
  185. data/lib/stripe/services/account_service.rb +4351 -0
  186. data/lib/stripe/services/account_session_service.rb +664 -0
  187. data/lib/stripe/services/apple_pay_domain_service.rb +51 -0
  188. data/lib/stripe/services/application_fee_refund_service.rb +54 -0
  189. data/lib/stripe/services/application_fee_service.rb +57 -0
  190. data/lib/stripe/services/apps/secret_service.rb +116 -0
  191. data/lib/stripe/services/balance_service.rb +9 -0
  192. data/lib/stripe/services/balance_transaction_service.rb +69 -0
  193. data/lib/stripe/services/billing/alert_service.rb +113 -0
  194. data/lib/stripe/services/billing/credit_balance_summary_service.rb +37 -0
  195. data/lib/stripe/services/billing/credit_balance_transaction_service.rb +40 -0
  196. data/lib/stripe/services/billing/credit_grant_service.rb +151 -0
  197. data/lib/stripe/services/billing/meter_event_adjustment_service.rb +26 -0
  198. data/lib/stripe/services/billing/meter_event_service.rb +21 -0
  199. data/lib/stripe/services/billing/meter_event_summary_service.rb +39 -0
  200. data/lib/stripe/services/billing/meter_service.rb +130 -0
  201. data/lib/stripe/services/billing_portal/configuration_service.rb +444 -0
  202. data/lib/stripe/services/billing_portal/session_service.rb +173 -0
  203. data/lib/stripe/services/capital/financing_offer_service.rb +112 -0
  204. data/lib/stripe/services/capital/financing_summary_service.rb +28 -0
  205. data/lib/stripe/services/capital/financing_transaction_service.rb +79 -0
  206. data/lib/stripe/services/capital_service.rb +15 -0
  207. data/lib/stripe/services/charge_service.rb +1736 -0
  208. data/lib/stripe/services/checkout/session_line_item_service.rb +18 -0
  209. data/lib/stripe/services/checkout/session_service.rb +2465 -0
  210. data/lib/stripe/services/climate/order_service.rb +102 -0
  211. data/lib/stripe/services/climate/product_service.rb +27 -0
  212. data/lib/stripe/services/climate/supplier_service.rb +27 -0
  213. data/lib/stripe/services/confirmation_token_service.rb +9 -0
  214. data/lib/stripe/services/country_spec_service.rb +27 -0
  215. data/lib/stripe/services/coupon_service.rb +152 -0
  216. data/lib/stripe/services/credit_note_line_item_service.rb +18 -0
  217. data/lib/stripe/services/credit_note_preview_lines_service.rb +156 -0
  218. data/lib/stripe/services/credit_note_service.rb +373 -0
  219. data/lib/stripe/services/customer_balance_transaction_service.rb +63 -0
  220. data/lib/stripe/services/customer_cash_balance_service.rb +29 -0
  221. data/lib/stripe/services/customer_cash_balance_transaction_service.rb +27 -0
  222. data/lib/stripe/services/customer_funding_instructions_service.rb +42 -0
  223. data/lib/stripe/services/customer_payment_method_service.rb +40 -0
  224. data/lib/stripe/services/customer_payment_source_service.rb +179 -0
  225. data/lib/stripe/services/customer_service.rb +593 -0
  226. data/lib/stripe/services/customer_session_service.rb +96 -0
  227. data/lib/stripe/services/customer_tax_id_service.rb +45 -0
  228. data/lib/stripe/services/dispute_service.rb +374 -0
  229. data/lib/stripe/services/entitlements/active_entitlement_service.rb +36 -0
  230. data/lib/stripe/services/entitlements/feature_service.rb +76 -0
  231. data/lib/stripe/services/ephemeral_key_service.rb +36 -0
  232. data/lib/stripe/services/event_service.rb +65 -0
  233. data/lib/stripe/services/exchange_rate_service.rb +27 -0
  234. data/lib/stripe/services/file_link_service.rb +94 -0
  235. data/lib/stripe/services/file_service.rb +89 -0
  236. data/lib/stripe/services/financial_connections/account_inferred_balance_service.rb +37 -0
  237. data/lib/stripe/services/financial_connections/account_owner_service.rb +27 -0
  238. data/lib/stripe/services/financial_connections/account_service.rb +99 -1
  239. data/lib/stripe/services/financial_connections/institution_service.rb +57 -0
  240. data/lib/stripe/services/financial_connections/session_service.rb +97 -0
  241. data/lib/stripe/services/financial_connections/transaction_service.rb +70 -0
  242. data/lib/stripe/services/financial_connections_service.rb +2 -1
  243. data/lib/stripe/services/forwarding/request_service.rb +106 -0
  244. data/lib/stripe/services/gift_cards/card_service.rb +170 -0
  245. data/lib/stripe/services/gift_cards/transaction_service.rb +209 -0
  246. data/lib/stripe/services/gift_cards_service.rb +14 -0
  247. data/lib/stripe/services/identity/verification_report_service.rb +65 -0
  248. data/lib/stripe/services/identity/verification_session_service.rb +231 -0
  249. data/lib/stripe/services/invoice_item_service.rb +388 -0
  250. data/lib/stripe/services/invoice_line_item_service.rb +237 -0
  251. data/lib/stripe/services/invoice_payment_service.rb +55 -0
  252. data/lib/stripe/services/invoice_rendering_template_service.rb +51 -0
  253. data/lib/stripe/services/invoice_service.rb +5567 -1
  254. data/lib/stripe/services/invoice_upcoming_lines_service.rb +1864 -0
  255. data/lib/stripe/services/issuing/authorization_service.rb +104 -0
  256. data/lib/stripe/services/issuing/card_service.rb +455 -0
  257. data/lib/stripe/services/issuing/cardholder_service.rb +526 -0
  258. data/lib/stripe/services/issuing/credit_underwriting_record_service.rb +504 -0
  259. data/lib/stripe/services/issuing/dispute_service.rb +633 -0
  260. data/lib/stripe/services/issuing/dispute_settlement_detail_service.rb +66 -0
  261. data/lib/stripe/services/issuing/fraud_liability_debit_service.rb +83 -0
  262. data/lib/stripe/services/issuing/personalization_design_service.rb +193 -0
  263. data/lib/stripe/services/issuing/physical_bundle_service.rb +40 -0
  264. data/lib/stripe/services/issuing/token_service.rb +73 -0
  265. data/lib/stripe/services/issuing/transaction_service.rb +81 -0
  266. data/lib/stripe/services/issuing_service.rb +5 -1
  267. data/lib/stripe/services/mandate_service.rb +9 -0
  268. data/lib/stripe/services/margin_service.rb +119 -0
  269. data/lib/stripe/services/order_line_item_service.rb +35 -0
  270. data/lib/stripe/services/order_service.rb +2254 -0
  271. data/lib/stripe/services/payment_attempt_record_service.rb +49 -0
  272. data/lib/stripe/services/payment_intent_service.rb +10894 -0
  273. data/lib/stripe/services/payment_link_line_item_service.rb +18 -0
  274. data/lib/stripe/services/payment_link_service.rb +1223 -0
  275. data/lib/stripe/services/payment_method_configuration_service.rb +2046 -0
  276. data/lib/stripe/services/payment_method_domain_service.rb +76 -0
  277. data/lib/stripe/services/payment_method_service.rb +864 -0
  278. data/lib/stripe/services/payment_record_service.rb +542 -0
  279. data/lib/stripe/services/payout_service.rb +159 -0
  280. data/lib/stripe/services/plan_service.rb +253 -0
  281. data/lib/stripe/services/price_service.rb +516 -0
  282. data/lib/stripe/services/product_feature_service.rb +42 -0
  283. data/lib/stripe/services/product_service.rb +459 -0
  284. data/lib/stripe/services/promotion_code_service.rb +178 -0
  285. data/lib/stripe/services/quote_computed_upfront_line_items_service.rb +18 -0
  286. data/lib/stripe/services/quote_line_item_service.rb +18 -0
  287. data/lib/stripe/services/quote_line_service.rb +35 -0
  288. data/lib/stripe/services/quote_preview_invoice_service.rb +35 -0
  289. data/lib/stripe/services/quote_preview_subscription_schedule_service.rb +35 -0
  290. data/lib/stripe/services/quote_service.rb +2319 -1
  291. data/lib/stripe/services/radar/early_fraud_warning_service.rb +61 -0
  292. data/lib/stripe/services/radar/value_list_item_service.rb +79 -0
  293. data/lib/stripe/services/radar/value_list_service.rb +103 -0
  294. data/lib/stripe/services/refund_service.rb +137 -0
  295. data/lib/stripe/services/reporting/report_run_service.rb +106 -0
  296. data/lib/stripe/services/reporting/report_type_service.rb +18 -0
  297. data/lib/stripe/services/review_service.rb +56 -0
  298. data/lib/stripe/services/setup_attempt_service.rb +51 -0
  299. data/lib/stripe/services/setup_intent_service.rb +3476 -0
  300. data/lib/stripe/services/shipping_rate_service.rb +200 -0
  301. data/lib/stripe/services/sigma/scheduled_query_run_service.rb +27 -0
  302. data/lib/stripe/services/source_service.rb +601 -0
  303. data/lib/stripe/services/source_transaction_service.rb +18 -0
  304. data/lib/stripe/services/subscription_item_service.rb +383 -0
  305. data/lib/stripe/services/subscription_item_usage_record_service.rb +18 -0
  306. data/lib/stripe/services/subscription_item_usage_record_summary_service.rb +18 -0
  307. data/lib/stripe/services/subscription_schedule_service.rb +2053 -0
  308. data/lib/stripe/services/subscription_service.rb +1722 -0
  309. data/lib/stripe/services/tax/association_service.rb +31 -0
  310. data/lib/stripe/services/tax/calculation_line_item_service.rb +18 -0
  311. data/lib/stripe/services/tax/calculation_service.rb +205 -0
  312. data/lib/stripe/services/tax/form_service.rb +100 -0
  313. data/lib/stripe/services/tax/registration_service.rb +1564 -0
  314. data/lib/stripe/services/tax/settings_service.rb +74 -0
  315. data/lib/stripe/services/tax/transaction_line_item_service.rb +18 -0
  316. data/lib/stripe/services/tax/transaction_service.rb +111 -0
  317. data/lib/stripe/services/tax_code_service.rb +27 -0
  318. data/lib/stripe/services/tax_id_service.rb +79 -0
  319. data/lib/stripe/services/tax_rate_service.rb +155 -0
  320. data/lib/stripe/services/tax_service.rb +3 -1
  321. data/lib/stripe/services/terminal/configuration_service.rb +793 -0
  322. data/lib/stripe/services/terminal/connection_token_service.rb +12 -0
  323. data/lib/stripe/services/terminal/location_service.rb +144 -0
  324. data/lib/stripe/services/terminal/reader_collected_data_service.rb +28 -0
  325. data/lib/stripe/services/terminal/reader_service.rb +443 -0
  326. data/lib/stripe/services/terminal_service.rb +2 -1
  327. data/lib/stripe/services/test_helpers/confirmation_token_service.rb +673 -0
  328. data/lib/stripe/services/test_helpers/customer_service.rb +18 -0
  329. data/lib/stripe/services/test_helpers/issuing/authorization_service.rb +745 -0
  330. data/lib/stripe/services/test_helpers/issuing/card_service.rb +45 -0
  331. data/lib/stripe/services/test_helpers/issuing/personalization_design_service.rb +41 -0
  332. data/lib/stripe/services/test_helpers/issuing/transaction_service.rb +632 -0
  333. data/lib/stripe/services/test_helpers/refund_service.rb +9 -0
  334. data/lib/stripe/services/test_helpers/terminal/reader_service.rb +44 -0
  335. data/lib/stripe/services/test_helpers/test_clock_service.rb +57 -0
  336. data/lib/stripe/services/test_helpers/treasury/inbound_transfer_service.rb +38 -0
  337. data/lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb +87 -0
  338. data/lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb +87 -0
  339. data/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +84 -0
  340. data/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +84 -0
  341. data/lib/stripe/services/token_service.rb +1121 -0
  342. data/lib/stripe/services/topup_service.rb +142 -0
  343. data/lib/stripe/services/transfer_reversal_service.rb +66 -0
  344. data/lib/stripe/services/transfer_service.rb +119 -0
  345. data/lib/stripe/services/treasury/credit_reversal_service.rb +59 -0
  346. data/lib/stripe/services/treasury/debit_reversal_service.rb +63 -0
  347. data/lib/stripe/services/treasury/financial_account_features_service.rb +169 -0
  348. data/lib/stripe/services/treasury/financial_account_service.rb +509 -0
  349. data/lib/stripe/services/treasury/inbound_transfer_service.rb +88 -0
  350. data/lib/stripe/services/treasury/outbound_payment_service.rb +258 -0
  351. data/lib/stripe/services/treasury/outbound_transfer_service.rb +148 -0
  352. data/lib/stripe/services/treasury/received_credit_service.rb +52 -0
  353. data/lib/stripe/services/treasury/received_debit_service.rb +40 -0
  354. data/lib/stripe/services/treasury/transaction_entry_service.rb +87 -0
  355. data/lib/stripe/services/treasury/transaction_service.rb +95 -0
  356. data/lib/stripe/services/v1_services.rb +8 -1
  357. data/lib/stripe/services/v2/billing/meter_event_adjustment_service.rb +23 -0
  358. data/lib/stripe/services/v2/billing/meter_event_service.rb +25 -0
  359. data/lib/stripe/services/v2/billing/meter_event_session_service.rb +3 -0
  360. data/lib/stripe/services/v2/billing/meter_event_stream_service.rb +33 -0
  361. data/lib/stripe/services/v2/core/event_destination_service.rb +146 -0
  362. data/lib/stripe/services/v2/core/event_service.rb +18 -0
  363. data/lib/stripe/services/webhook_endpoint_service.rb +96 -0
  364. data/lib/stripe/services.rb +25 -0
  365. data/lib/stripe/stripe_client.rb +1 -1
  366. data/lib/stripe/stripe_configuration.rb +3 -1
  367. data/lib/stripe/stripe_object.rb +5 -0
  368. data/lib/stripe/util.rb +7 -1
  369. data/lib/stripe/version.rb +1 -1
  370. data/lib/stripe.rb +46 -0
  371. data/rbi/stripe/resources/account.rbi +5100 -0
  372. data/rbi/stripe/resources/account_link.rbi +74 -0
  373. data/rbi/stripe/resources/account_notice.rbi +139 -0
  374. data/rbi/stripe/resources/account_session.rbi +1007 -0
  375. data/rbi/stripe/resources/apple_pay_domain.rbi +97 -0
  376. data/rbi/stripe/resources/application.rbi +20 -0
  377. data/rbi/stripe/resources/application_fee.rbi +123 -0
  378. data/rbi/stripe/resources/application_fee_refund.rbi +37 -0
  379. data/rbi/stripe/resources/apps/secret.rbi +195 -0
  380. data/rbi/stripe/resources/balance.rbi +187 -0
  381. data/rbi/stripe/resources/balance_transaction.rbi +149 -0
  382. data/rbi/stripe/resources/bank_account.rbi +127 -0
  383. data/rbi/stripe/resources/billing/alert.rbi +206 -0
  384. data/rbi/stripe/resources/billing/alert_triggered.rbi +28 -0
  385. data/rbi/stripe/resources/billing/credit_balance_summary.rbi +102 -0
  386. data/rbi/stripe/resources/billing/credit_balance_transaction.rbi +154 -0
  387. data/rbi/stripe/resources/billing/credit_grant.rbi +269 -0
  388. data/rbi/stripe/resources/billing/meter.rbi +233 -0
  389. data/rbi/stripe/resources/billing/meter_error_report.rbi +71 -0
  390. data/rbi/stripe/resources/billing/meter_event.rbi +64 -0
  391. data/rbi/stripe/resources/billing/meter_event_adjustment.rbi +64 -0
  392. data/rbi/stripe/resources/billing/meter_event_summary.rbi +33 -0
  393. data/rbi/stripe/resources/billing_portal/configuration.rbi +640 -0
  394. data/rbi/stripe/resources/billing_portal/session.rbi +341 -0
  395. data/rbi/stripe/resources/capability.rbi +125 -0
  396. data/rbi/stripe/resources/capital/financing_offer.rbi +190 -0
  397. data/rbi/stripe/resources/capital/financing_summary.rbi +74 -0
  398. data/rbi/stripe/resources/capital/financing_transaction.rbi +130 -0
  399. data/rbi/stripe/resources/card.rbi +128 -0
  400. data/rbi/stripe/resources/cash_balance.rbi +32 -0
  401. data/rbi/stripe/resources/charge.rbi +3484 -0
  402. data/rbi/stripe/resources/checkout/session.rbi +3995 -0
  403. data/rbi/stripe/resources/climate/order.rbi +250 -0
  404. data/rbi/stripe/resources/climate/product.rbi +82 -0
  405. data/rbi/stripe/resources/climate/supplier.rbi +79 -0
  406. data/rbi/stripe/resources/confirmation_token.rbi +1776 -0
  407. data/rbi/stripe/resources/connect_collection_transfer.rbi +26 -0
  408. data/rbi/stripe/resources/country_spec.rbi +92 -0
  409. data/rbi/stripe/resources/coupon.rbi +257 -0
  410. data/rbi/stripe/resources/credit_note.rbi +759 -0
  411. data/rbi/stripe/resources/credit_note_line_item.rbi +99 -0
  412. data/rbi/stripe/resources/customer.rbi +1001 -0
  413. data/rbi/stripe/resources/customer_balance_transaction.rbi +53 -0
  414. data/rbi/stripe/resources/customer_cash_balance_transaction.rbi +151 -0
  415. data/rbi/stripe/resources/customer_session.rbi +196 -0
  416. data/rbi/stripe/resources/discount.rbi +53 -0
  417. data/rbi/stripe/resources/dispute.rbi +764 -0
  418. data/rbi/stripe/resources/entitlements/active_entitlement.rbi +65 -0
  419. data/rbi/stripe/resources/entitlements/active_entitlement_summary.rbi +23 -0
  420. data/rbi/stripe/resources/entitlements/feature.rbi +124 -0
  421. data/rbi/stripe/resources/ephemeral_key.rbi +44 -0
  422. data/rbi/stripe/resources/event.rbi +190 -0
  423. data/rbi/stripe/resources/exchange_rate.rbi +73 -0
  424. data/rbi/stripe/resources/file.rbi +148 -0
  425. data/rbi/stripe/resources/file_link.rbi +146 -0
  426. data/rbi/stripe/resources/financial_connections/account.rbi +358 -0
  427. data/rbi/stripe/resources/financial_connections/account_inferred_balance.rbi +27 -0
  428. data/rbi/stripe/resources/financial_connections/account_owner.rbi +35 -0
  429. data/rbi/stripe/resources/financial_connections/account_ownership.rbi +23 -0
  430. data/rbi/stripe/resources/financial_connections/institution.rbi +99 -0
  431. data/rbi/stripe/resources/financial_connections/session.rbi +186 -0
  432. data/rbi/stripe/resources/financial_connections/transaction.rbi +127 -0
  433. data/rbi/stripe/resources/forwarding/request.rbi +219 -0
  434. data/rbi/stripe/resources/funding_instructions.rbi +437 -0
  435. data/rbi/stripe/resources/gift_cards/card.rbi +206 -0
  436. data/rbi/stripe/resources/gift_cards/transaction.rbi +257 -0
  437. data/rbi/stripe/resources/identity/verification_report.rbi +354 -0
  438. data/rbi/stripe/resources/identity/verification_session.rbi +518 -0
  439. data/rbi/stripe/resources/invoice.rbi +8928 -0
  440. data/rbi/stripe/resources/invoice_item.rbi +514 -0
  441. data/rbi/stripe/resources/invoice_line_item.rbi +400 -0
  442. data/rbi/stripe/resources/invoice_payment.rbi +70 -0
  443. data/rbi/stripe/resources/invoice_rendering_template.rbi +114 -0
  444. data/rbi/stripe/resources/issuing/authorization.rbi +1266 -0
  445. data/rbi/stripe/resources/issuing/card.rbi +738 -0
  446. data/rbi/stripe/resources/issuing/cardholder.rbi +732 -0
  447. data/rbi/stripe/resources/issuing/credit_underwriting_record.rbi +622 -0
  448. data/rbi/stripe/resources/issuing/dispute.rbi +900 -0
  449. data/rbi/stripe/resources/issuing/dispute_settlement_detail.rbi +83 -0
  450. data/rbi/stripe/resources/issuing/fraud_liability_debit.rbi +90 -0
  451. data/rbi/stripe/resources/issuing/personalization_design.rbi +333 -0
  452. data/rbi/stripe/resources/issuing/physical_bundle.rbi +86 -0
  453. data/rbi/stripe/resources/issuing/settlement.rbi +62 -0
  454. data/rbi/stripe/resources/issuing/token.rbi +231 -0
  455. data/rbi/stripe/resources/issuing/transaction.rbi +1057 -0
  456. data/rbi/stripe/resources/line_item.rbi +108 -0
  457. data/rbi/stripe/resources/login_link.rbi +18 -0
  458. data/rbi/stripe/resources/mandate.rbi +219 -0
  459. data/rbi/stripe/resources/margin.rbi +127 -0
  460. data/rbi/stripe/resources/order.rbi +3016 -0
  461. data/rbi/stripe/resources/payment_attempt_record.rbi +215 -0
  462. data/rbi/stripe/resources/payment_intent.rbi +13843 -0
  463. data/rbi/stripe/resources/payment_link.rbi +1666 -0
  464. data/rbi/stripe/resources/payment_method.rbi +1908 -0
  465. data/rbi/stripe/resources/payment_method_configuration.rbi +3171 -0
  466. data/rbi/stripe/resources/payment_method_domain.rbi +217 -0
  467. data/rbi/stripe/resources/payment_record.rbi +722 -0
  468. data/rbi/stripe/resources/payout.rbi +299 -0
  469. data/rbi/stripe/resources/person.rbi +371 -0
  470. data/rbi/stripe/resources/plan.rbi +385 -0
  471. data/rbi/stripe/resources/price.rbi +731 -0
  472. data/rbi/stripe/resources/product.rbi +615 -0
  473. data/rbi/stripe/resources/product_feature.rbi +26 -0
  474. data/rbi/stripe/resources/promotion_code.rbi +266 -0
  475. data/rbi/stripe/resources/quote.rbi +3186 -0
  476. data/rbi/stripe/resources/quote_line.rbi +350 -0
  477. data/rbi/stripe/resources/quote_preview_invoice.rbi +850 -0
  478. data/rbi/stripe/resources/quote_preview_subscription_schedule.rbi +474 -0
  479. data/rbi/stripe/resources/radar/early_fraud_warning.rbi +101 -0
  480. data/rbi/stripe/resources/radar/value_list.rbi +175 -0
  481. data/rbi/stripe/resources/radar/value_list_item.rbi +134 -0
  482. data/rbi/stripe/resources/refund.rbi +515 -0
  483. data/rbi/stripe/resources/reporting/report_run.rbi +194 -0
  484. data/rbi/stripe/resources/reporting/report_type.rbi +64 -0
  485. data/rbi/stripe/resources/reserve_transaction.rbi +23 -0
  486. data/rbi/stripe/resources/reversal.rbi +51 -0
  487. data/rbi/stripe/resources/review.rbi +159 -0
  488. data/rbi/stripe/resources/setup_attempt.rbi +484 -0
  489. data/rbi/stripe/resources/setup_intent.rbi +4041 -0
  490. data/rbi/stripe/resources/shipping_rate.rbi +310 -0
  491. data/rbi/stripe/resources/sigma/scheduled_query_run.rbi +82 -0
  492. data/rbi/stripe/resources/source.rbi +1543 -0
  493. data/rbi/stripe/resources/source_mandate_notification.rbi +77 -0
  494. data/rbi/stripe/resources/source_transaction.rbi +127 -0
  495. data/rbi/stripe/resources/subscription.rbi +2308 -0
  496. data/rbi/stripe/resources/subscription_item.rbi +478 -0
  497. data/rbi/stripe/resources/subscription_schedule.rbi +2653 -0
  498. data/rbi/stripe/resources/tax/association.rbi +94 -0
  499. data/rbi/stripe/resources/tax/calculation.rbi +479 -0
  500. data/rbi/stripe/resources/tax/calculation_line_item.rbi +88 -0
  501. data/rbi/stripe/resources/tax/form.rbi +224 -0
  502. data/rbi/stripe/resources/tax/registration.rbi +2438 -0
  503. data/rbi/stripe/resources/tax/settings.rbi +148 -0
  504. data/rbi/stripe/resources/tax/transaction.rbi +356 -0
  505. data/rbi/stripe/resources/tax/transaction_line_item.rbi +54 -0
  506. data/rbi/stripe/resources/tax_code.rbi +51 -0
  507. data/rbi/stripe/resources/tax_deducted_at_source.rbi +23 -0
  508. data/rbi/stripe/resources/tax_id.rbi +174 -0
  509. data/rbi/stripe/resources/tax_rate.rbi +244 -0
  510. data/rbi/stripe/resources/terminal/configuration.rbi +1091 -0
  511. data/rbi/stripe/resources/terminal/connection_token.rbi +37 -0
  512. data/rbi/stripe/resources/terminal/location.rbi +231 -0
  513. data/rbi/stripe/resources/terminal/reader.rbi +952 -0
  514. data/rbi/stripe/resources/terminal/reader_collected_data.rbi +41 -0
  515. data/rbi/stripe/resources/test_helpers/test_clock.rbi +139 -0
  516. data/rbi/stripe/resources/token.rbi +1175 -0
  517. data/rbi/stripe/resources/topup.rbi +225 -0
  518. data/rbi/stripe/resources/transfer.rbi +204 -0
  519. data/rbi/stripe/resources/treasury/credit_reversal.rbi +126 -0
  520. data/rbi/stripe/resources/treasury/debit_reversal.rbi +138 -0
  521. data/rbi/stripe/resources/treasury/financial_account.rbi +870 -0
  522. data/rbi/stripe/resources/treasury/financial_account_features.rbi +263 -0
  523. data/rbi/stripe/resources/treasury/inbound_transfer.rbi +302 -0
  524. data/rbi/stripe/resources/treasury/outbound_payment.rbi +589 -0
  525. data/rbi/stripe/resources/treasury/outbound_transfer.rbi +473 -0
  526. data/rbi/stripe/resources/treasury/received_credit.rbi +348 -0
  527. data/rbi/stripe/resources/treasury/received_debit.rbi +305 -0
  528. data/rbi/stripe/resources/treasury/transaction.rbi +216 -0
  529. data/rbi/stripe/resources/treasury/transaction_entry.rbi +193 -0
  530. data/rbi/stripe/resources/usage_record.rbi +32 -0
  531. data/rbi/stripe/resources/usage_record_summary.rbi +38 -0
  532. data/rbi/stripe/resources/v2/amount.rbi +14 -0
  533. data/rbi/stripe/resources/v2/billing/meter_event.rbi +37 -0
  534. data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +41 -0
  535. data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +31 -0
  536. data/rbi/stripe/resources/v2/event.rbi +47 -0
  537. data/rbi/stripe/resources/v2/event_destination.rbi +90 -0
  538. data/rbi/stripe/resources/webhook_endpoint.rbi +177 -0
  539. data/rbi/stripe/services/account_capability_service.rbi +51 -0
  540. data/rbi/stripe/services/account_external_account_service.rbi +306 -0
  541. data/rbi/stripe/services/account_link_service.rbi +58 -0
  542. data/rbi/stripe/services/account_login_link_service.rbi +22 -0
  543. data/rbi/stripe/services/account_notice_service.rbi +90 -0
  544. data/rbi/stripe/services/account_person_service.rbi +903 -0
  545. data/rbi/stripe/services/account_service.rbi +4185 -0
  546. data/rbi/stripe/services/account_session_service.rbi +757 -0
  547. data/rbi/stripe/services/apple_pay_domain_service.rbi +78 -0
  548. data/rbi/stripe/services/application_fee_refund_service.rbi +91 -0
  549. data/rbi/stripe/services/application_fee_service.rbi +74 -0
  550. data/rbi/stripe/services/apps/secret_service.rbi +151 -0
  551. data/rbi/stripe/services/apps_service.rbi +9 -0
  552. data/rbi/stripe/services/balance_service.rbi +21 -0
  553. data/rbi/stripe/services/balance_transaction_service.rbi +89 -0
  554. data/rbi/stripe/services/billing/alert_service.rbi +152 -0
  555. data/rbi/stripe/services/billing/credit_balance_summary_service.rbi +54 -0
  556. data/rbi/stripe/services/billing/credit_balance_transaction_service.rbi +59 -0
  557. data/rbi/stripe/services/billing/credit_grant_service.rbi +191 -0
  558. data/rbi/stripe/services/billing/meter_event_adjustment_service.rbi +40 -0
  559. data/rbi/stripe/services/billing/meter_event_service.rbi +42 -0
  560. data/rbi/stripe/services/billing/meter_event_summary_service.rbi +54 -0
  561. data/rbi/stripe/services/billing/meter_service.rbi +163 -0
  562. data/rbi/stripe/services/billing_portal/configuration_service.rbi +497 -0
  563. data/rbi/stripe/services/billing_portal/session_service.rbi +202 -0
  564. data/rbi/stripe/services/billing_portal_service.rbi +10 -0
  565. data/rbi/stripe/services/billing_service.rbi +15 -0
  566. data/rbi/stripe/services/capital/financing_offer_service.rbi +95 -0
  567. data/rbi/stripe/services/capital/financing_summary_service.rbi +22 -0
  568. data/rbi/stripe/services/capital/financing_transaction_service.rbi +68 -0
  569. data/rbi/stripe/services/capital_service.rbi +11 -0
  570. data/rbi/stripe/services/charge_service.rbi +1816 -0
  571. data/rbi/stripe/services/checkout/session_line_item_service.rbi +33 -0
  572. data/rbi/stripe/services/checkout/session_service.rbi +2582 -0
  573. data/rbi/stripe/services/checkout_service.rbi +9 -0
  574. data/rbi/stripe/services/climate/order_service.rbi +140 -0
  575. data/rbi/stripe/services/climate/product_service.rbi +46 -0
  576. data/rbi/stripe/services/climate/supplier_service.rbi +46 -0
  577. data/rbi/stripe/services/climate_service.rbi +11 -0
  578. data/rbi/stripe/services/confirmation_token_service.rbi +20 -0
  579. data/rbi/stripe/services/country_spec_service.rbi +44 -0
  580. data/rbi/stripe/services/coupon_service.rbi +190 -0
  581. data/rbi/stripe/services/credit_note_line_item_service.rbi +31 -0
  582. data/rbi/stripe/services/credit_note_preview_lines_service.rbi +167 -0
  583. data/rbi/stripe/services/credit_note_service.rbi +420 -0
  584. data/rbi/stripe/services/customer_balance_transaction_service.rbi +92 -0
  585. data/rbi/stripe/services/customer_cash_balance_service.rbi +45 -0
  586. data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +44 -0
  587. data/rbi/stripe/services/customer_funding_instructions_service.rbi +59 -0
  588. data/rbi/stripe/services/customer_payment_method_service.rbi +57 -0
  589. data/rbi/stripe/services/customer_payment_source_service.rbi +228 -0
  590. data/rbi/stripe/services/customer_service.rbi +647 -0
  591. data/rbi/stripe/services/customer_session_service.rbi +110 -0
  592. data/rbi/stripe/services/customer_tax_id_service.rbi +72 -0
  593. data/rbi/stripe/services/dispute_service.rbi +422 -0
  594. data/rbi/stripe/services/entitlements/active_entitlement_service.rbi +55 -0
  595. data/rbi/stripe/services/entitlements/feature_service.rbi +107 -0
  596. data/rbi/stripe/services/entitlements_service.rbi +10 -0
  597. data/rbi/stripe/services/ephemeral_key_service.rbi +53 -0
  598. data/rbi/stripe/services/event_service.rbi +81 -0
  599. data/rbi/stripe/services/exchange_rate_service.rbi +44 -0
  600. data/rbi/stripe/services/file_link_service.rbi +122 -0
  601. data/rbi/stripe/services/file_service.rbi +114 -0
  602. data/rbi/stripe/services/financial_connections/account_inferred_balance_service.rbi +33 -0
  603. data/rbi/stripe/services/financial_connections/account_owner_service.rbi +42 -0
  604. data/rbi/stripe/services/financial_connections/account_service.rbi +132 -0
  605. data/rbi/stripe/services/financial_connections/institution_service.rbi +46 -0
  606. data/rbi/stripe/services/financial_connections/session_service.rbi +111 -0
  607. data/rbi/stripe/services/financial_connections/transaction_service.rbi +90 -0
  608. data/rbi/stripe/services/financial_connections_service.rbi +12 -0
  609. data/rbi/stripe/services/forwarding/request_service.rbi +132 -0
  610. data/rbi/stripe/services/forwarding_service.rbi +9 -0
  611. data/rbi/stripe/services/gift_cards/card_service.rbi +142 -0
  612. data/rbi/stripe/services/gift_cards/transaction_service.rbi +174 -0
  613. data/rbi/stripe/services/gift_cards_service.rbi +10 -0
  614. data/rbi/stripe/services/identity/verification_report_service.rbi +85 -0
  615. data/rbi/stripe/services/identity/verification_session_service.rbi +317 -0
  616. data/rbi/stripe/services/identity_service.rbi +10 -0
  617. data/rbi/stripe/services/invoice_item_service.rbi +424 -0
  618. data/rbi/stripe/services/invoice_line_item_service.rbi +270 -0
  619. data/rbi/stripe/services/invoice_payment_service.rbi +44 -0
  620. data/rbi/stripe/services/invoice_rendering_template_service.rbi +82 -0
  621. data/rbi/stripe/services/invoice_service.rbi +6040 -0
  622. data/rbi/stripe/services/invoice_upcoming_lines_service.rbi +2023 -0
  623. data/rbi/stripe/services/issuing/authorization_service.rbi +140 -0
  624. data/rbi/stripe/services/issuing/card_service.rbi +479 -0
  625. data/rbi/stripe/services/issuing/cardholder_service.rbi +568 -0
  626. data/rbi/stripe/services/issuing/credit_underwriting_record_service.rbi +498 -0
  627. data/rbi/stripe/services/issuing/dispute_service.rbi +701 -0
  628. data/rbi/stripe/services/issuing/dispute_settlement_detail_service.rbi +55 -0
  629. data/rbi/stripe/services/issuing/fraud_liability_debit_service.rbi +73 -0
  630. data/rbi/stripe/services/issuing/personalization_design_service.rbi +233 -0
  631. data/rbi/stripe/services/issuing/physical_bundle_service.rbi +59 -0
  632. data/rbi/stripe/services/issuing/token_service.rbi +95 -0
  633. data/rbi/stripe/services/issuing/transaction_service.rbi +103 -0
  634. data/rbi/stripe/services/issuing_service.rbi +19 -0
  635. data/rbi/stripe/services/mandate_service.rbi +20 -0
  636. data/rbi/stripe/services/margin_service.rbi +104 -0
  637. data/rbi/stripe/services/order_line_item_service.rbi +31 -0
  638. data/rbi/stripe/services/order_service.rbi +2306 -0
  639. data/rbi/stripe/services/payment_attempt_record_service.rbi +36 -0
  640. data/rbi/stripe/services/payment_intent_service.rbi +11429 -0
  641. data/rbi/stripe/services/payment_link_line_item_service.rbi +31 -0
  642. data/rbi/stripe/services/payment_link_service.rbi +1250 -0
  643. data/rbi/stripe/services/payment_method_configuration_service.rbi +2171 -0
  644. data/rbi/stripe/services/payment_method_domain_service.rbi +110 -0
  645. data/rbi/stripe/services/payment_method_service.rbi +883 -0
  646. data/rbi/stripe/services/payment_record_service.rbi +521 -0
  647. data/rbi/stripe/services/payout_service.rbi +197 -0
  648. data/rbi/stripe/services/plan_service.rbi +286 -0
  649. data/rbi/stripe/services/price_service.rbi +551 -0
  650. data/rbi/stripe/services/product_feature_service.rbi +69 -0
  651. data/rbi/stripe/services/product_service.rbi +503 -0
  652. data/rbi/stripe/services/promotion_code_service.rbi +210 -0
  653. data/rbi/stripe/services/quote_computed_upfront_line_items_service.rbi +31 -0
  654. data/rbi/stripe/services/quote_line_item_service.rbi +31 -0
  655. data/rbi/stripe/services/quote_line_service.rbi +31 -0
  656. data/rbi/stripe/services/quote_preview_invoice_service.rbi +31 -0
  657. data/rbi/stripe/services/quote_preview_subscription_schedule_service.rbi +31 -0
  658. data/rbi/stripe/services/quote_service.rbi +2390 -0
  659. data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +83 -0
  660. data/rbi/stripe/services/radar/value_list_item_service.rbi +107 -0
  661. data/rbi/stripe/services/radar/value_list_service.rbi +139 -0
  662. data/rbi/stripe/services/radar_service.rbi +11 -0
  663. data/rbi/stripe/services/refund_service.rbi +181 -0
  664. data/rbi/stripe/services/reporting/report_run_service.rbi +131 -0
  665. data/rbi/stripe/services/reporting/report_type_service.rbi +35 -0
  666. data/rbi/stripe/services/reporting_service.rbi +10 -0
  667. data/rbi/stripe/services/review_service.rbi +82 -0
  668. data/rbi/stripe/services/setup_attempt_service.rbi +63 -0
  669. data/rbi/stripe/services/setup_intent_service.rbi +3609 -0
  670. data/rbi/stripe/services/shipping_rate_service.rbi +235 -0
  671. data/rbi/stripe/services/sigma/scheduled_query_run_service.rbi +46 -0
  672. data/rbi/stripe/services/sigma_service.rbi +9 -0
  673. data/rbi/stripe/services/source_service.rbi +647 -0
  674. data/rbi/stripe/services/source_transaction_service.rbi +31 -0
  675. data/rbi/stripe/services/subscription_item_service.rbi +422 -0
  676. data/rbi/stripe/services/subscription_item_usage_record_service.rbi +37 -0
  677. data/rbi/stripe/services/subscription_item_usage_record_summary_service.rbi +33 -0
  678. data/rbi/stripe/services/subscription_schedule_service.rbi +2208 -0
  679. data/rbi/stripe/services/subscription_service.rbi +1870 -0
  680. data/rbi/stripe/services/tax/association_service.rbi +25 -0
  681. data/rbi/stripe/services/tax/calculation_line_item_service.rbi +33 -0
  682. data/rbi/stripe/services/tax/calculation_service.rbi +228 -0
  683. data/rbi/stripe/services/tax/form_service.rbi +85 -0
  684. data/rbi/stripe/services/tax/registration_service.rbi +1517 -0
  685. data/rbi/stripe/services/tax/settings_service.rbi +93 -0
  686. data/rbi/stripe/services/tax/transaction_line_item_service.rbi +33 -0
  687. data/rbi/stripe/services/tax/transaction_service.rbi +142 -0
  688. data/rbi/stripe/services/tax_code_service.rbi +44 -0
  689. data/rbi/stripe/services/tax_id_service.rbi +112 -0
  690. data/rbi/stripe/services/tax_rate_service.rbi +183 -0
  691. data/rbi/stripe/services/tax_service.rbi +14 -0
  692. data/rbi/stripe/services/terminal/configuration_service.rbi +822 -0
  693. data/rbi/stripe/services/terminal/connection_token_service.rbi +25 -0
  694. data/rbi/stripe/services/terminal/location_service.rbi +184 -0
  695. data/rbi/stripe/services/terminal/reader_collected_data_service.rbi +22 -0
  696. data/rbi/stripe/services/terminal/reader_service.rbi +513 -0
  697. data/rbi/stripe/services/terminal_service.rbi +13 -0
  698. data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +778 -0
  699. data/rbi/stripe/services/test_helpers/customer_service.rbi +33 -0
  700. data/rbi/stripe/services/test_helpers/issuing/authorization_service.rbi +836 -0
  701. data/rbi/stripe/services/test_helpers/issuing/card_service.rbi +76 -0
  702. data/rbi/stripe/services/test_helpers/issuing/personalization_design_service.rbi +67 -0
  703. data/rbi/stripe/services/test_helpers/issuing/transaction_service.rbi +705 -0
  704. data/rbi/stripe/services/test_helpers/issuing_service.rbi +14 -0
  705. data/rbi/stripe/services/test_helpers/refund_service.rbi +22 -0
  706. data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +62 -0
  707. data/rbi/stripe/services/test_helpers/terminal_service.rbi +11 -0
  708. data/rbi/stripe/services/test_helpers/test_clock_service.rbi +90 -0
  709. data/rbi/stripe/services/test_helpers/treasury/inbound_transfer_service.rbi +64 -0
  710. data/rbi/stripe/services/test_helpers/treasury/outbound_payment_service.rbi +123 -0
  711. data/rbi/stripe/services/test_helpers/treasury/outbound_transfer_service.rbi +123 -0
  712. data/rbi/stripe/services/test_helpers/treasury/received_credit_service.rbi +114 -0
  713. data/rbi/stripe/services/test_helpers/treasury/received_debit_service.rbi +114 -0
  714. data/rbi/stripe/services/test_helpers/treasury_service.rbi +15 -0
  715. data/rbi/stripe/services/test_helpers_service.rbi +15 -0
  716. data/rbi/stripe/services/token_service.rbi +1136 -0
  717. data/rbi/stripe/services/topup_service.rbi +172 -0
  718. data/rbi/stripe/services/transfer_reversal_service.rbi +99 -0
  719. data/rbi/stripe/services/transfer_service.rbi +150 -0
  720. data/rbi/stripe/services/treasury/credit_reversal_service.rbi +84 -0
  721. data/rbi/stripe/services/treasury/debit_reversal_service.rbi +88 -0
  722. data/rbi/stripe/services/treasury/financial_account_features_service.rbi +201 -0
  723. data/rbi/stripe/services/treasury/financial_account_service.rbi +566 -0
  724. data/rbi/stripe/services/treasury/inbound_transfer_service.rbi +117 -0
  725. data/rbi/stripe/services/treasury/outbound_payment_service.rbi +300 -0
  726. data/rbi/stripe/services/treasury/outbound_transfer_service.rbi +182 -0
  727. data/rbi/stripe/services/treasury/received_credit_service.rbi +70 -0
  728. data/rbi/stripe/services/treasury/received_debit_service.rbi +59 -0
  729. data/rbi/stripe/services/treasury/transaction_entry_service.rbi +107 -0
  730. data/rbi/stripe/services/treasury/transaction_service.rbi +114 -0
  731. data/rbi/stripe/services/treasury_service.rbi +18 -0
  732. data/rbi/stripe/services/v1_services.rbi +83 -0
  733. data/rbi/stripe/services/v2/billing/meter_event_adjustment_service.rbi +39 -0
  734. data/rbi/stripe/services/v2/billing/meter_event_service.rbi +42 -0
  735. data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +20 -0
  736. data/rbi/stripe/services/v2/billing/meter_event_stream_service.rbi +55 -0
  737. data/rbi/stripe/services/v2/billing_service.rbi +14 -0
  738. data/rbi/stripe/services/v2/core/event_destination_service.rbi +203 -0
  739. data/rbi/stripe/services/v2/core/event_service.rbi +39 -0
  740. data/rbi/stripe/services/v2/core_service.rbi +12 -0
  741. data/rbi/stripe/services/v2_services.rbi +10 -0
  742. data/rbi/stripe/services/webhook_endpoint_service.rbi +131 -0
  743. metadata +435 -4
@@ -11,6 +11,2471 @@ module Stripe
11
11
  @line_items = Stripe::Checkout::SessionLineItemService.new(@requestor)
12
12
  end
13
13
 
14
+ class ListParams < Stripe::RequestParams
15
+ class Created < Stripe::RequestParams
16
+ # Minimum value to filter by (exclusive)
17
+ attr_accessor :gt
18
+ # Minimum value to filter by (inclusive)
19
+ attr_accessor :gte
20
+ # Maximum value to filter by (exclusive)
21
+ attr_accessor :lt
22
+ # Maximum value to filter by (inclusive)
23
+ attr_accessor :lte
24
+
25
+ def initialize(gt: nil, gte: nil, lt: nil, lte: nil)
26
+ @gt = gt
27
+ @gte = gte
28
+ @lt = lt
29
+ @lte = lte
30
+ end
31
+ end
32
+
33
+ class CustomerDetails < Stripe::RequestParams
34
+ # Customer's email address.
35
+ attr_accessor :email
36
+
37
+ def initialize(email: nil)
38
+ @email = email
39
+ end
40
+ end
41
+ # Only return Checkout Sessions that were created during the given date interval.
42
+ attr_accessor :created
43
+ # Only return the Checkout Sessions for the Customer specified.
44
+ attr_accessor :customer
45
+ # Only return the Checkout Sessions for the Customer details specified.
46
+ attr_accessor :customer_details
47
+ # A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
48
+ attr_accessor :ending_before
49
+ # Specifies which fields in the response should be expanded.
50
+ attr_accessor :expand
51
+ # A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
52
+ attr_accessor :limit
53
+ # Only return the Checkout Session for the PaymentIntent specified.
54
+ attr_accessor :payment_intent
55
+ # Only return the Checkout Sessions for the Payment Link specified.
56
+ attr_accessor :payment_link
57
+ # A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
58
+ attr_accessor :starting_after
59
+ # Only return the Checkout Sessions matching the given status.
60
+ attr_accessor :status
61
+ # Only return the Checkout Session for the subscription specified.
62
+ attr_accessor :subscription
63
+
64
+ def initialize(
65
+ created: nil,
66
+ customer: nil,
67
+ customer_details: nil,
68
+ ending_before: nil,
69
+ expand: nil,
70
+ limit: nil,
71
+ payment_intent: nil,
72
+ payment_link: nil,
73
+ starting_after: nil,
74
+ status: nil,
75
+ subscription: nil
76
+ )
77
+ @created = created
78
+ @customer = customer
79
+ @customer_details = customer_details
80
+ @ending_before = ending_before
81
+ @expand = expand
82
+ @limit = limit
83
+ @payment_intent = payment_intent
84
+ @payment_link = payment_link
85
+ @starting_after = starting_after
86
+ @status = status
87
+ @subscription = subscription
88
+ end
89
+ end
90
+
91
+ class CreateParams < Stripe::RequestParams
92
+ class AdaptivePricing < Stripe::RequestParams
93
+ # Set to `true` to enable [Adaptive Pricing](https://docs.stripe.com/payments/checkout/adaptive-pricing). Defaults to your [dashboard setting](https://dashboard.stripe.com/settings/adaptive-pricing).
94
+ attr_accessor :enabled
95
+
96
+ def initialize(enabled: nil)
97
+ @enabled = enabled
98
+ end
99
+ end
100
+
101
+ class AfterExpiration < Stripe::RequestParams
102
+ class Recovery < Stripe::RequestParams
103
+ # Enables user redeemable promotion codes on the recovered Checkout Sessions. Defaults to `false`
104
+ attr_accessor :allow_promotion_codes
105
+ # If `true`, a recovery URL will be generated to recover this Checkout Session if it
106
+ # expires before a successful transaction is completed. It will be attached to the
107
+ # Checkout Session object upon expiration.
108
+ attr_accessor :enabled
109
+
110
+ def initialize(allow_promotion_codes: nil, enabled: nil)
111
+ @allow_promotion_codes = allow_promotion_codes
112
+ @enabled = enabled
113
+ end
114
+ end
115
+ # Configure a Checkout Session that can be used to recover an expired session.
116
+ attr_accessor :recovery
117
+
118
+ def initialize(recovery: nil)
119
+ @recovery = recovery
120
+ end
121
+ end
122
+
123
+ class AutomaticTax < Stripe::RequestParams
124
+ class Liability < Stripe::RequestParams
125
+ # The connected account being referenced when `type` is `account`.
126
+ attr_accessor :account
127
+ # Type of the account referenced in the request.
128
+ attr_accessor :type
129
+
130
+ def initialize(account: nil, type: nil)
131
+ @account = account
132
+ @type = type
133
+ end
134
+ end
135
+ # Set to `true` to [calculate tax automatically](https://docs.stripe.com/tax) using the customer's location.
136
+ #
137
+ # Enabling this parameter causes Checkout to collect any billing address information necessary for tax calculation.
138
+ attr_accessor :enabled
139
+ # The account that's liable for tax. If set, the business address and tax registrations required to perform the tax calculation are loaded from this account. The tax transaction is returned in the report of the connected account.
140
+ attr_accessor :liability
141
+
142
+ def initialize(enabled: nil, liability: nil)
143
+ @enabled = enabled
144
+ @liability = liability
145
+ end
146
+ end
147
+
148
+ class ConsentCollection < Stripe::RequestParams
149
+ class PaymentMethodReuseAgreement < Stripe::RequestParams
150
+ # Determines the position and visibility of the payment method reuse agreement in the UI. When set to `auto`, Stripe's
151
+ # defaults will be used. When set to `hidden`, the payment method reuse agreement text will always be hidden in the UI.
152
+ attr_accessor :position
153
+
154
+ def initialize(position: nil)
155
+ @position = position
156
+ end
157
+ end
158
+ # Determines the display of payment method reuse agreement text in the UI. If set to `hidden`, it will hide legal text related to the reuse of a payment method.
159
+ attr_accessor :payment_method_reuse_agreement
160
+ # If set to `auto`, enables the collection of customer consent for promotional communications. The Checkout
161
+ # Session will determine whether to display an option to opt into promotional communication
162
+ # from the merchant depending on the customer's locale. Only available to US merchants.
163
+ attr_accessor :promotions
164
+ # If set to `required`, it requires customers to check a terms of service checkbox before being able to pay.
165
+ # There must be a valid terms of service URL set in your [Dashboard settings](https://dashboard.stripe.com/settings/public).
166
+ attr_accessor :terms_of_service
167
+
168
+ def initialize(
169
+ payment_method_reuse_agreement: nil,
170
+ promotions: nil,
171
+ terms_of_service: nil
172
+ )
173
+ @payment_method_reuse_agreement = payment_method_reuse_agreement
174
+ @promotions = promotions
175
+ @terms_of_service = terms_of_service
176
+ end
177
+ end
178
+
179
+ class CustomField < Stripe::RequestParams
180
+ class Dropdown < Stripe::RequestParams
181
+ class Option < Stripe::RequestParams
182
+ # The label for the option, displayed to the customer. Up to 100 characters.
183
+ attr_accessor :label
184
+ # The value for this option, not displayed to the customer, used by your integration to reconcile the option selected by the customer. Must be unique to this option, alphanumeric, and up to 100 characters.
185
+ attr_accessor :value
186
+
187
+ def initialize(label: nil, value: nil)
188
+ @label = label
189
+ @value = value
190
+ end
191
+ end
192
+ # The value that will pre-fill the field on the payment page.Must match a `value` in the `options` array.
193
+ attr_accessor :default_value
194
+ # The options available for the customer to select. Up to 200 options allowed.
195
+ attr_accessor :options
196
+
197
+ def initialize(default_value: nil, options: nil)
198
+ @default_value = default_value
199
+ @options = options
200
+ end
201
+ end
202
+
203
+ class Label < Stripe::RequestParams
204
+ # Custom text for the label, displayed to the customer. Up to 50 characters.
205
+ attr_accessor :custom
206
+ # The type of the label.
207
+ attr_accessor :type
208
+
209
+ def initialize(custom: nil, type: nil)
210
+ @custom = custom
211
+ @type = type
212
+ end
213
+ end
214
+
215
+ class Numeric < Stripe::RequestParams
216
+ # The value that will pre-fill the field on the payment page.
217
+ attr_accessor :default_value
218
+ # The maximum character length constraint for the customer's input.
219
+ attr_accessor :maximum_length
220
+ # The minimum character length requirement for the customer's input.
221
+ attr_accessor :minimum_length
222
+
223
+ def initialize(default_value: nil, maximum_length: nil, minimum_length: nil)
224
+ @default_value = default_value
225
+ @maximum_length = maximum_length
226
+ @minimum_length = minimum_length
227
+ end
228
+ end
229
+
230
+ class Text < Stripe::RequestParams
231
+ # The value that will pre-fill the field on the payment page.
232
+ attr_accessor :default_value
233
+ # The maximum character length constraint for the customer's input.
234
+ attr_accessor :maximum_length
235
+ # The minimum character length requirement for the customer's input.
236
+ attr_accessor :minimum_length
237
+
238
+ def initialize(default_value: nil, maximum_length: nil, minimum_length: nil)
239
+ @default_value = default_value
240
+ @maximum_length = maximum_length
241
+ @minimum_length = minimum_length
242
+ end
243
+ end
244
+ # Configuration for `type=dropdown` fields.
245
+ attr_accessor :dropdown
246
+ # String of your choice that your integration can use to reconcile this field. Must be unique to this field, alphanumeric, and up to 200 characters.
247
+ attr_accessor :key
248
+ # The label for the field, displayed to the customer.
249
+ attr_accessor :label
250
+ # Configuration for `type=numeric` fields.
251
+ attr_accessor :numeric
252
+ # Whether the customer is required to complete the field before completing the Checkout Session. Defaults to `false`.
253
+ attr_accessor :optional
254
+ # Configuration for `type=text` fields.
255
+ attr_accessor :text
256
+ # The type of the field.
257
+ attr_accessor :type
258
+
259
+ def initialize(
260
+ dropdown: nil,
261
+ key: nil,
262
+ label: nil,
263
+ numeric: nil,
264
+ optional: nil,
265
+ text: nil,
266
+ type: nil
267
+ )
268
+ @dropdown = dropdown
269
+ @key = key
270
+ @label = label
271
+ @numeric = numeric
272
+ @optional = optional
273
+ @text = text
274
+ @type = type
275
+ end
276
+ end
277
+
278
+ class CustomText < Stripe::RequestParams
279
+ class AfterSubmit < Stripe::RequestParams
280
+ # Text may be up to 1200 characters in length.
281
+ attr_accessor :message
282
+
283
+ def initialize(message: nil)
284
+ @message = message
285
+ end
286
+ end
287
+
288
+ class ShippingAddress < Stripe::RequestParams
289
+ # Text may be up to 1200 characters in length.
290
+ attr_accessor :message
291
+
292
+ def initialize(message: nil)
293
+ @message = message
294
+ end
295
+ end
296
+
297
+ class Submit < Stripe::RequestParams
298
+ # Text may be up to 1200 characters in length.
299
+ attr_accessor :message
300
+
301
+ def initialize(message: nil)
302
+ @message = message
303
+ end
304
+ end
305
+
306
+ class TermsOfServiceAcceptance < Stripe::RequestParams
307
+ # Text may be up to 1200 characters in length.
308
+ attr_accessor :message
309
+
310
+ def initialize(message: nil)
311
+ @message = message
312
+ end
313
+ end
314
+ # Custom text that should be displayed after the payment confirmation button.
315
+ attr_accessor :after_submit
316
+ # Custom text that should be displayed alongside shipping address collection.
317
+ attr_accessor :shipping_address
318
+ # Custom text that should be displayed alongside the payment confirmation button.
319
+ attr_accessor :submit
320
+ # Custom text that should be displayed in place of the default terms of service agreement text.
321
+ attr_accessor :terms_of_service_acceptance
322
+
323
+ def initialize(
324
+ after_submit: nil,
325
+ shipping_address: nil,
326
+ submit: nil,
327
+ terms_of_service_acceptance: nil
328
+ )
329
+ @after_submit = after_submit
330
+ @shipping_address = shipping_address
331
+ @submit = submit
332
+ @terms_of_service_acceptance = terms_of_service_acceptance
333
+ end
334
+ end
335
+
336
+ class CustomerUpdate < Stripe::RequestParams
337
+ # Describes whether Checkout saves the billing address onto `customer.address`.
338
+ # To always collect a full billing address, use `billing_address_collection`. Defaults to `never`.
339
+ attr_accessor :address
340
+ # Describes whether Checkout saves the name onto `customer.name`. Defaults to `never`.
341
+ attr_accessor :name
342
+ # Describes whether Checkout saves shipping information onto `customer.shipping`.
343
+ # To collect shipping information, use `shipping_address_collection`. Defaults to `never`.
344
+ attr_accessor :shipping
345
+
346
+ def initialize(address: nil, name: nil, shipping: nil)
347
+ @address = address
348
+ @name = name
349
+ @shipping = shipping
350
+ end
351
+ end
352
+
353
+ class Discount < Stripe::RequestParams
354
+ # The ID of the coupon to apply to this Session.
355
+ attr_accessor :coupon
356
+ # The ID of a promotion code to apply to this Session.
357
+ attr_accessor :promotion_code
358
+
359
+ def initialize(coupon: nil, promotion_code: nil)
360
+ @coupon = coupon
361
+ @promotion_code = promotion_code
362
+ end
363
+ end
364
+
365
+ class InvoiceCreation < Stripe::RequestParams
366
+ class InvoiceData < Stripe::RequestParams
367
+ class CustomField < Stripe::RequestParams
368
+ # The name of the custom field. This may be up to 40 characters.
369
+ attr_accessor :name
370
+ # The value of the custom field. This may be up to 140 characters.
371
+ attr_accessor :value
372
+
373
+ def initialize(name: nil, value: nil)
374
+ @name = name
375
+ @value = value
376
+ end
377
+ end
378
+
379
+ class Issuer < Stripe::RequestParams
380
+ # The connected account being referenced when `type` is `account`.
381
+ attr_accessor :account
382
+ # Type of the account referenced in the request.
383
+ attr_accessor :type
384
+
385
+ def initialize(account: nil, type: nil)
386
+ @account = account
387
+ @type = type
388
+ end
389
+ end
390
+
391
+ class RenderingOptions < Stripe::RequestParams
392
+ # How line-item prices and amounts will be displayed with respect to tax on invoice PDFs. One of `exclude_tax` or `include_inclusive_tax`. `include_inclusive_tax` will include inclusive tax (and exclude exclusive tax) in invoice PDF amounts. `exclude_tax` will exclude all tax (inclusive and exclusive alike) from invoice PDF amounts.
393
+ attr_accessor :amount_tax_display
394
+
395
+ def initialize(amount_tax_display: nil)
396
+ @amount_tax_display = amount_tax_display
397
+ end
398
+ end
399
+ # The account tax IDs associated with the invoice.
400
+ attr_accessor :account_tax_ids
401
+ # Default custom fields to be displayed on invoices for this customer.
402
+ attr_accessor :custom_fields
403
+ # An arbitrary string attached to the object. Often useful for displaying to users.
404
+ attr_accessor :description
405
+ # Default footer to be displayed on invoices for this customer.
406
+ attr_accessor :footer
407
+ # The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
408
+ attr_accessor :issuer
409
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
410
+ attr_accessor :metadata
411
+ # Default options for invoice PDF rendering for this customer.
412
+ attr_accessor :rendering_options
413
+
414
+ def initialize(
415
+ account_tax_ids: nil,
416
+ custom_fields: nil,
417
+ description: nil,
418
+ footer: nil,
419
+ issuer: nil,
420
+ metadata: nil,
421
+ rendering_options: nil
422
+ )
423
+ @account_tax_ids = account_tax_ids
424
+ @custom_fields = custom_fields
425
+ @description = description
426
+ @footer = footer
427
+ @issuer = issuer
428
+ @metadata = metadata
429
+ @rendering_options = rendering_options
430
+ end
431
+ end
432
+ # Set to `true` to enable invoice creation.
433
+ attr_accessor :enabled
434
+ # Parameters passed when creating invoices for payment-mode Checkout Sessions.
435
+ attr_accessor :invoice_data
436
+
437
+ def initialize(enabled: nil, invoice_data: nil)
438
+ @enabled = enabled
439
+ @invoice_data = invoice_data
440
+ end
441
+ end
442
+
443
+ class LineItem < Stripe::RequestParams
444
+ class AdjustableQuantity < Stripe::RequestParams
445
+ # Set to true if the quantity can be adjusted to any non-negative integer.
446
+ attr_accessor :enabled
447
+ # The maximum quantity the customer can purchase for the Checkout Session. By default this value is 99. You can specify a value up to 999999.
448
+ attr_accessor :maximum
449
+ # The minimum quantity the customer must purchase for the Checkout Session. By default this value is 0.
450
+ attr_accessor :minimum
451
+
452
+ def initialize(enabled: nil, maximum: nil, minimum: nil)
453
+ @enabled = enabled
454
+ @maximum = maximum
455
+ @minimum = minimum
456
+ end
457
+ end
458
+
459
+ class PriceData < Stripe::RequestParams
460
+ class ProductData < Stripe::RequestParams
461
+ # The product's description, meant to be displayable to the customer. Use this field to optionally store a long form explanation of the product being sold for your own rendering purposes.
462
+ attr_accessor :description
463
+ # A list of up to 8 URLs of images for this product, meant to be displayable to the customer.
464
+ attr_accessor :images
465
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
466
+ attr_accessor :metadata
467
+ # The product's name, meant to be displayable to the customer.
468
+ attr_accessor :name
469
+ # A [tax code](https://stripe.com/docs/tax/tax-categories) ID.
470
+ attr_accessor :tax_code
471
+
472
+ def initialize(description: nil, images: nil, metadata: nil, name: nil, tax_code: nil)
473
+ @description = description
474
+ @images = images
475
+ @metadata = metadata
476
+ @name = name
477
+ @tax_code = tax_code
478
+ end
479
+ end
480
+
481
+ class Recurring < Stripe::RequestParams
482
+ # Specifies billing frequency. Either `day`, `week`, `month` or `year`.
483
+ attr_accessor :interval
484
+ # The number of intervals between subscription billings. For example, `interval=month` and `interval_count=3` bills every 3 months. Maximum of three years interval allowed (3 years, 36 months, or 156 weeks).
485
+ attr_accessor :interval_count
486
+
487
+ def initialize(interval: nil, interval_count: nil)
488
+ @interval = interval
489
+ @interval_count = interval_count
490
+ end
491
+ end
492
+ # Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
493
+ attr_accessor :currency
494
+ # The ID of the product that this price will belong to. One of `product` or `product_data` is required.
495
+ attr_accessor :product
496
+ # Data used to generate a new product object inline. One of `product` or `product_data` is required.
497
+ attr_accessor :product_data
498
+ # The recurring components of a price such as `interval` and `interval_count`.
499
+ attr_accessor :recurring
500
+ # Only required if a [default tax behavior](https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#setting-a-default-tax-behavior-(recommended)) was not provided in the Stripe Tax settings. Specifies whether the price is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`. Once specified as either `inclusive` or `exclusive`, it cannot be changed.
501
+ attr_accessor :tax_behavior
502
+ # A non-negative integer in cents (or local equivalent) representing how much to charge. One of `unit_amount` or `unit_amount_decimal` is required.
503
+ attr_accessor :unit_amount
504
+ # Same as `unit_amount`, but accepts a decimal value in cents (or local equivalent) with at most 12 decimal places. Only one of `unit_amount` and `unit_amount_decimal` can be set.
505
+ attr_accessor :unit_amount_decimal
506
+
507
+ def initialize(
508
+ currency: nil,
509
+ product: nil,
510
+ product_data: nil,
511
+ recurring: nil,
512
+ tax_behavior: nil,
513
+ unit_amount: nil,
514
+ unit_amount_decimal: nil
515
+ )
516
+ @currency = currency
517
+ @product = product
518
+ @product_data = product_data
519
+ @recurring = recurring
520
+ @tax_behavior = tax_behavior
521
+ @unit_amount = unit_amount
522
+ @unit_amount_decimal = unit_amount_decimal
523
+ end
524
+ end
525
+ # When set, provides configuration for this item’s quantity to be adjusted by the customer during Checkout.
526
+ attr_accessor :adjustable_quantity
527
+ # The [tax rates](https://stripe.com/docs/api/tax_rates) that will be applied to this line item depending on the customer's billing/shipping address. We currently support the following countries: US, GB, AU, and all countries in the EU.
528
+ attr_accessor :dynamic_tax_rates
529
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
530
+ attr_accessor :metadata
531
+ # The ID of the [Price](https://stripe.com/docs/api/prices) or [Plan](https://stripe.com/docs/api/plans) object. One of `price` or `price_data` is required.
532
+ attr_accessor :price
533
+ # Data used to generate a new [Price](https://stripe.com/docs/api/prices) object inline. One of `price` or `price_data` is required.
534
+ attr_accessor :price_data
535
+ # The quantity of the line item being purchased. Quantity should not be defined when `recurring.usage_type=metered`.
536
+ attr_accessor :quantity
537
+ # The [tax rates](https://stripe.com/docs/api/tax_rates) which apply to this line item.
538
+ attr_accessor :tax_rates
539
+
540
+ def initialize(
541
+ adjustable_quantity: nil,
542
+ dynamic_tax_rates: nil,
543
+ metadata: nil,
544
+ price: nil,
545
+ price_data: nil,
546
+ quantity: nil,
547
+ tax_rates: nil
548
+ )
549
+ @adjustable_quantity = adjustable_quantity
550
+ @dynamic_tax_rates = dynamic_tax_rates
551
+ @metadata = metadata
552
+ @price = price
553
+ @price_data = price_data
554
+ @quantity = quantity
555
+ @tax_rates = tax_rates
556
+ end
557
+ end
558
+
559
+ class PaymentIntentData < Stripe::RequestParams
560
+ class Shipping < Stripe::RequestParams
561
+ class Address < Stripe::RequestParams
562
+ # City, district, suburb, town, or village.
563
+ attr_accessor :city
564
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
565
+ attr_accessor :country
566
+ # Address line 1 (e.g., street, PO Box, or company name).
567
+ attr_accessor :line1
568
+ # Address line 2 (e.g., apartment, suite, unit, or building).
569
+ attr_accessor :line2
570
+ # ZIP or postal code.
571
+ attr_accessor :postal_code
572
+ # State, county, province, or region.
573
+ attr_accessor :state
574
+
575
+ def initialize(
576
+ city: nil,
577
+ country: nil,
578
+ line1: nil,
579
+ line2: nil,
580
+ postal_code: nil,
581
+ state: nil
582
+ )
583
+ @city = city
584
+ @country = country
585
+ @line1 = line1
586
+ @line2 = line2
587
+ @postal_code = postal_code
588
+ @state = state
589
+ end
590
+ end
591
+ # Shipping address.
592
+ attr_accessor :address
593
+ # The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
594
+ attr_accessor :carrier
595
+ # Recipient name.
596
+ attr_accessor :name
597
+ # Recipient phone (including extension).
598
+ attr_accessor :phone
599
+ # The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
600
+ attr_accessor :tracking_number
601
+
602
+ def initialize(address: nil, carrier: nil, name: nil, phone: nil, tracking_number: nil)
603
+ @address = address
604
+ @carrier = carrier
605
+ @name = name
606
+ @phone = phone
607
+ @tracking_number = tracking_number
608
+ end
609
+ end
610
+
611
+ class TransferData < Stripe::RequestParams
612
+ # The amount that will be transferred automatically when a charge succeeds.
613
+ attr_accessor :amount
614
+ # If specified, successful charges will be attributed to the destination
615
+ # account for tax reporting, and the funds from charges will be transferred
616
+ # to the destination account. The ID of the resulting transfer will be
617
+ # returned on the successful charge's `transfer` field.
618
+ attr_accessor :destination
619
+
620
+ def initialize(amount: nil, destination: nil)
621
+ @amount = amount
622
+ @destination = destination
623
+ end
624
+ end
625
+ # The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account. The amount of the application fee collected will be capped at the total payment amount. For more information, see the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts).
626
+ attr_accessor :application_fee_amount
627
+ # Controls when the funds will be captured from the customer's account.
628
+ attr_accessor :capture_method
629
+ # An arbitrary string attached to the object. Often useful for displaying to users.
630
+ attr_accessor :description
631
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
632
+ attr_accessor :metadata
633
+ # The Stripe account ID for which these funds are intended. For details,
634
+ # see the PaymentIntents [use case for connected
635
+ # accounts](/docs/payments/connected-accounts).
636
+ attr_accessor :on_behalf_of
637
+ # Email address that the receipt for the resulting payment will be sent to. If `receipt_email` is specified for a payment in live mode, a receipt will be sent regardless of your [email settings](https://dashboard.stripe.com/account/emails).
638
+ attr_accessor :receipt_email
639
+ # Indicates that you intend to [make future payments](https://stripe.com/docs/payments/payment-intents#future-usage) with the payment
640
+ # method collected by this Checkout Session.
641
+ #
642
+ # When setting this to `on_session`, Checkout will show a notice to the
643
+ # customer that their payment details will be saved.
644
+ #
645
+ # When setting this to `off_session`, Checkout will show a notice to the
646
+ # customer that their payment details will be saved and used for future
647
+ # payments.
648
+ #
649
+ # If a Customer has been provided or Checkout creates a new Customer,
650
+ # Checkout will attach the payment method to the Customer.
651
+ #
652
+ # If Checkout does not create a Customer, the payment method is not attached
653
+ # to a Customer. To reuse the payment method, you can retrieve it from the
654
+ # Checkout Session's PaymentIntent.
655
+ #
656
+ # When processing card payments, Checkout also uses `setup_future_usage`
657
+ # to dynamically optimize your payment flow and comply with regional
658
+ # legislation and network rules, such as SCA.
659
+ attr_accessor :setup_future_usage
660
+ # Shipping information for this payment.
661
+ attr_accessor :shipping
662
+ # Text that appears on the customer's statement as the statement descriptor for a non-card charge. This value overrides the account's default statement descriptor. For information about requirements, including the 22-character limit, see [the Statement Descriptor docs](https://docs.stripe.com/get-started/account/statement-descriptors).
663
+ #
664
+ # Setting this value for a card charge returns an error. For card charges, set the [statement_descriptor_suffix](https://docs.stripe.com/get-started/account/statement-descriptors#dynamic) instead.
665
+ attr_accessor :statement_descriptor
666
+ # Provides information about a card charge. Concatenated to the account's [statement descriptor prefix](https://docs.stripe.com/get-started/account/statement-descriptors#static) to form the complete statement descriptor that appears on the customer's statement.
667
+ attr_accessor :statement_descriptor_suffix
668
+ # The parameters used to automatically create a Transfer when the payment succeeds.
669
+ # For more information, see the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts).
670
+ attr_accessor :transfer_data
671
+ # A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
672
+ attr_accessor :transfer_group
673
+
674
+ def initialize(
675
+ application_fee_amount: nil,
676
+ capture_method: nil,
677
+ description: nil,
678
+ metadata: nil,
679
+ on_behalf_of: nil,
680
+ receipt_email: nil,
681
+ setup_future_usage: nil,
682
+ shipping: nil,
683
+ statement_descriptor: nil,
684
+ statement_descriptor_suffix: nil,
685
+ transfer_data: nil,
686
+ transfer_group: nil
687
+ )
688
+ @application_fee_amount = application_fee_amount
689
+ @capture_method = capture_method
690
+ @description = description
691
+ @metadata = metadata
692
+ @on_behalf_of = on_behalf_of
693
+ @receipt_email = receipt_email
694
+ @setup_future_usage = setup_future_usage
695
+ @shipping = shipping
696
+ @statement_descriptor = statement_descriptor
697
+ @statement_descriptor_suffix = statement_descriptor_suffix
698
+ @transfer_data = transfer_data
699
+ @transfer_group = transfer_group
700
+ end
701
+ end
702
+
703
+ class PaymentMethodData < Stripe::RequestParams
704
+ # Allow redisplay will be set on the payment method on confirmation and indicates whether this payment method can be shown again to the customer in a checkout flow. Only set this field if you wish to override the allow_redisplay value determined by Checkout.
705
+ attr_accessor :allow_redisplay
706
+
707
+ def initialize(allow_redisplay: nil)
708
+ @allow_redisplay = allow_redisplay
709
+ end
710
+ end
711
+
712
+ class PaymentMethodOptions < Stripe::RequestParams
713
+ class AcssDebit < Stripe::RequestParams
714
+ class MandateOptions < Stripe::RequestParams
715
+ # A URL for custom mandate text to render during confirmation step.
716
+ # The URL will be rendered with additional GET parameters `payment_intent` and `payment_intent_client_secret` when confirming a Payment Intent,
717
+ # or `setup_intent` and `setup_intent_client_secret` when confirming a Setup Intent.
718
+ attr_accessor :custom_mandate_url
719
+ # List of Stripe products where this mandate can be selected automatically. Only usable in `setup` mode.
720
+ attr_accessor :default_for
721
+ # Description of the mandate interval. Only required if 'payment_schedule' parameter is 'interval' or 'combined'.
722
+ attr_accessor :interval_description
723
+ # Payment schedule for the mandate.
724
+ attr_accessor :payment_schedule
725
+ # Transaction type of the mandate.
726
+ attr_accessor :transaction_type
727
+
728
+ def initialize(
729
+ custom_mandate_url: nil,
730
+ default_for: nil,
731
+ interval_description: nil,
732
+ payment_schedule: nil,
733
+ transaction_type: nil
734
+ )
735
+ @custom_mandate_url = custom_mandate_url
736
+ @default_for = default_for
737
+ @interval_description = interval_description
738
+ @payment_schedule = payment_schedule
739
+ @transaction_type = transaction_type
740
+ end
741
+ end
742
+ # Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). This is only accepted for Checkout Sessions in `setup` mode.
743
+ attr_accessor :currency
744
+ # Additional fields for Mandate creation
745
+ attr_accessor :mandate_options
746
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
747
+ #
748
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
749
+ #
750
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
751
+ #
752
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
753
+ attr_accessor :setup_future_usage
754
+ # Verification method for the intent
755
+ attr_accessor :verification_method
756
+
757
+ def initialize(
758
+ currency: nil,
759
+ mandate_options: nil,
760
+ setup_future_usage: nil,
761
+ verification_method: nil
762
+ )
763
+ @currency = currency
764
+ @mandate_options = mandate_options
765
+ @setup_future_usage = setup_future_usage
766
+ @verification_method = verification_method
767
+ end
768
+ end
769
+
770
+ class Affirm < Stripe::RequestParams
771
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
772
+ #
773
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
774
+ #
775
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
776
+ #
777
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
778
+ attr_accessor :setup_future_usage
779
+
780
+ def initialize(setup_future_usage: nil)
781
+ @setup_future_usage = setup_future_usage
782
+ end
783
+ end
784
+
785
+ class AfterpayClearpay < Stripe::RequestParams
786
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
787
+ #
788
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
789
+ #
790
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
791
+ #
792
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
793
+ attr_accessor :setup_future_usage
794
+
795
+ def initialize(setup_future_usage: nil)
796
+ @setup_future_usage = setup_future_usage
797
+ end
798
+ end
799
+
800
+ class Alipay < Stripe::RequestParams
801
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
802
+ #
803
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
804
+ #
805
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
806
+ #
807
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
808
+ attr_accessor :setup_future_usage
809
+
810
+ def initialize(setup_future_usage: nil)
811
+ @setup_future_usage = setup_future_usage
812
+ end
813
+ end
814
+
815
+ class AmazonPay < Stripe::RequestParams
816
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
817
+ #
818
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
819
+ #
820
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
821
+ #
822
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
823
+ attr_accessor :setup_future_usage
824
+
825
+ def initialize(setup_future_usage: nil)
826
+ @setup_future_usage = setup_future_usage
827
+ end
828
+ end
829
+
830
+ class AuBecsDebit < Stripe::RequestParams
831
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
832
+ #
833
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
834
+ #
835
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
836
+ #
837
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
838
+ attr_accessor :setup_future_usage
839
+
840
+ def initialize(setup_future_usage: nil)
841
+ @setup_future_usage = setup_future_usage
842
+ end
843
+ end
844
+
845
+ class BacsDebit < Stripe::RequestParams
846
+ class MandateOptions < Stripe::RequestParams
847
+ # Prefix used to generate the Mandate reference. Must be at most 12 characters long. Must consist of only uppercase letters, numbers, spaces, or the following special characters: '/', '_', '-', '&', '.'. Cannot begin with 'DDIC' or 'STRIPE'.
848
+ attr_accessor :reference_prefix
849
+
850
+ def initialize(reference_prefix: nil)
851
+ @reference_prefix = reference_prefix
852
+ end
853
+ end
854
+ # Additional fields for Mandate creation
855
+ attr_accessor :mandate_options
856
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
857
+ #
858
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
859
+ #
860
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
861
+ #
862
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
863
+ attr_accessor :setup_future_usage
864
+
865
+ def initialize(mandate_options: nil, setup_future_usage: nil)
866
+ @mandate_options = mandate_options
867
+ @setup_future_usage = setup_future_usage
868
+ end
869
+ end
870
+
871
+ class Bancontact < Stripe::RequestParams
872
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
873
+ #
874
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
875
+ #
876
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
877
+ #
878
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
879
+ attr_accessor :setup_future_usage
880
+
881
+ def initialize(setup_future_usage: nil)
882
+ @setup_future_usage = setup_future_usage
883
+ end
884
+ end
885
+
886
+ class Boleto < Stripe::RequestParams
887
+ # The number of calendar days before a Boleto voucher expires. For example, if you create a Boleto voucher on Monday and you set expires_after_days to 2, the Boleto invoice will expire on Wednesday at 23:59 America/Sao_Paulo time.
888
+ attr_accessor :expires_after_days
889
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
890
+ #
891
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
892
+ #
893
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
894
+ #
895
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
896
+ attr_accessor :setup_future_usage
897
+
898
+ def initialize(expires_after_days: nil, setup_future_usage: nil)
899
+ @expires_after_days = expires_after_days
900
+ @setup_future_usage = setup_future_usage
901
+ end
902
+ end
903
+
904
+ class Card < Stripe::RequestParams
905
+ class Installments < Stripe::RequestParams
906
+ # Setting to true enables installments for this Checkout Session.
907
+ # Setting to false will prevent any installment plan from applying to a payment.
908
+ attr_accessor :enabled
909
+
910
+ def initialize(enabled: nil)
911
+ @enabled = enabled
912
+ end
913
+ end
914
+ # Installment options for card payments
915
+ attr_accessor :installments
916
+ # Request ability to [capture beyond the standard authorization validity window](/payments/extended-authorization) for this CheckoutSession.
917
+ attr_accessor :request_decremental_authorization
918
+ # Request ability to [capture beyond the standard authorization validity window](/payments/extended-authorization) for this CheckoutSession.
919
+ attr_accessor :request_extended_authorization
920
+ # Request ability to [increment the authorization](/payments/incremental-authorization) for this CheckoutSession.
921
+ attr_accessor :request_incremental_authorization
922
+ # Request ability to make [multiple captures](/payments/multicapture) for this CheckoutSession.
923
+ attr_accessor :request_multicapture
924
+ # Request ability to [overcapture](/payments/overcapture) for this CheckoutSession.
925
+ attr_accessor :request_overcapture
926
+ # We strongly recommend that you rely on our SCA Engine to automatically prompt your customers for authentication based on risk level and [other requirements](https://stripe.com/docs/strong-customer-authentication). However, if you wish to request 3D Secure based on logic from your own fraud engine, provide this option. If not provided, this value defaults to `automatic`. Read our guide on [manually requesting 3D Secure](https://stripe.com/docs/payments/3d-secure/authentication-flow#manual-three-ds) for more information on how this configuration interacts with Radar and our SCA Engine.
927
+ attr_accessor :request_three_d_secure
928
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
929
+ #
930
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
931
+ #
932
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
933
+ #
934
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
935
+ attr_accessor :setup_future_usage
936
+ # Provides information about a card payment that customers see on their statements. Concatenated with the Kana prefix (shortened Kana descriptor) or Kana statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters. On card statements, the *concatenation* of both prefix and suffix (including separators) will appear truncated to 22 characters.
937
+ attr_accessor :statement_descriptor_suffix_kana
938
+ # Provides information about a card payment that customers see on their statements. Concatenated with the Kanji prefix (shortened Kanji descriptor) or Kanji statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 17 characters. On card statements, the *concatenation* of both prefix and suffix (including separators) will appear truncated to 17 characters.
939
+ attr_accessor :statement_descriptor_suffix_kanji
940
+
941
+ def initialize(
942
+ installments: nil,
943
+ request_decremental_authorization: nil,
944
+ request_extended_authorization: nil,
945
+ request_incremental_authorization: nil,
946
+ request_multicapture: nil,
947
+ request_overcapture: nil,
948
+ request_three_d_secure: nil,
949
+ setup_future_usage: nil,
950
+ statement_descriptor_suffix_kana: nil,
951
+ statement_descriptor_suffix_kanji: nil
952
+ )
953
+ @installments = installments
954
+ @request_decremental_authorization = request_decremental_authorization
955
+ @request_extended_authorization = request_extended_authorization
956
+ @request_incremental_authorization = request_incremental_authorization
957
+ @request_multicapture = request_multicapture
958
+ @request_overcapture = request_overcapture
959
+ @request_three_d_secure = request_three_d_secure
960
+ @setup_future_usage = setup_future_usage
961
+ @statement_descriptor_suffix_kana = statement_descriptor_suffix_kana
962
+ @statement_descriptor_suffix_kanji = statement_descriptor_suffix_kanji
963
+ end
964
+ end
965
+
966
+ class Cashapp < Stripe::RequestParams
967
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
968
+ #
969
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
970
+ #
971
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
972
+ #
973
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
974
+ attr_accessor :setup_future_usage
975
+
976
+ def initialize(setup_future_usage: nil)
977
+ @setup_future_usage = setup_future_usage
978
+ end
979
+ end
980
+
981
+ class CustomerBalance < Stripe::RequestParams
982
+ class BankTransfer < Stripe::RequestParams
983
+ class EuBankTransfer < Stripe::RequestParams
984
+ # The desired country code of the bank account information. Permitted values include: `BE`, `DE`, `ES`, `FR`, `IE`, or `NL`.
985
+ attr_accessor :country
986
+
987
+ def initialize(country: nil)
988
+ @country = country
989
+ end
990
+ end
991
+ # Configuration for eu_bank_transfer funding type.
992
+ attr_accessor :eu_bank_transfer
993
+ # List of address types that should be returned in the financial_addresses response. If not specified, all valid types will be returned.
994
+ #
995
+ # Permitted values include: `sort_code`, `zengin`, `iban`, or `spei`.
996
+ attr_accessor :requested_address_types
997
+ # The list of bank transfer types that this PaymentIntent is allowed to use for funding.
998
+ attr_accessor :type
999
+
1000
+ def initialize(eu_bank_transfer: nil, requested_address_types: nil, type: nil)
1001
+ @eu_bank_transfer = eu_bank_transfer
1002
+ @requested_address_types = requested_address_types
1003
+ @type = type
1004
+ end
1005
+ end
1006
+ # Configuration for the bank transfer funding type, if the `funding_type` is set to `bank_transfer`.
1007
+ attr_accessor :bank_transfer
1008
+ # The funding method type to be used when there are not enough funds in the customer balance. Permitted values include: `bank_transfer`.
1009
+ attr_accessor :funding_type
1010
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1011
+ #
1012
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1013
+ #
1014
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1015
+ #
1016
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1017
+ attr_accessor :setup_future_usage
1018
+
1019
+ def initialize(bank_transfer: nil, funding_type: nil, setup_future_usage: nil)
1020
+ @bank_transfer = bank_transfer
1021
+ @funding_type = funding_type
1022
+ @setup_future_usage = setup_future_usage
1023
+ end
1024
+ end
1025
+
1026
+ class Eps < Stripe::RequestParams
1027
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1028
+ #
1029
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1030
+ #
1031
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1032
+ #
1033
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1034
+ attr_accessor :setup_future_usage
1035
+
1036
+ def initialize(setup_future_usage: nil)
1037
+ @setup_future_usage = setup_future_usage
1038
+ end
1039
+ end
1040
+
1041
+ class Fpx < Stripe::RequestParams
1042
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1043
+ #
1044
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1045
+ #
1046
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1047
+ #
1048
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1049
+ attr_accessor :setup_future_usage
1050
+
1051
+ def initialize(setup_future_usage: nil)
1052
+ @setup_future_usage = setup_future_usage
1053
+ end
1054
+ end
1055
+
1056
+ class Giropay < Stripe::RequestParams
1057
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1058
+ #
1059
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1060
+ #
1061
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1062
+ #
1063
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1064
+ attr_accessor :setup_future_usage
1065
+
1066
+ def initialize(setup_future_usage: nil)
1067
+ @setup_future_usage = setup_future_usage
1068
+ end
1069
+ end
1070
+
1071
+ class Grabpay < Stripe::RequestParams
1072
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1073
+ #
1074
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1075
+ #
1076
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1077
+ #
1078
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1079
+ attr_accessor :setup_future_usage
1080
+
1081
+ def initialize(setup_future_usage: nil)
1082
+ @setup_future_usage = setup_future_usage
1083
+ end
1084
+ end
1085
+
1086
+ class Ideal < Stripe::RequestParams
1087
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1088
+ #
1089
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1090
+ #
1091
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1092
+ #
1093
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1094
+ attr_accessor :setup_future_usage
1095
+
1096
+ def initialize(setup_future_usage: nil)
1097
+ @setup_future_usage = setup_future_usage
1098
+ end
1099
+ end
1100
+
1101
+ class KakaoPay < Stripe::RequestParams
1102
+ # Controls when the funds will be captured from the customer's account.
1103
+ attr_accessor :capture_method
1104
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1105
+ #
1106
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1107
+ #
1108
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1109
+ #
1110
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1111
+ attr_accessor :setup_future_usage
1112
+
1113
+ def initialize(capture_method: nil, setup_future_usage: nil)
1114
+ @capture_method = capture_method
1115
+ @setup_future_usage = setup_future_usage
1116
+ end
1117
+ end
1118
+
1119
+ class Klarna < Stripe::RequestParams
1120
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1121
+ #
1122
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1123
+ #
1124
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1125
+ #
1126
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1127
+ attr_accessor :setup_future_usage
1128
+
1129
+ def initialize(setup_future_usage: nil)
1130
+ @setup_future_usage = setup_future_usage
1131
+ end
1132
+ end
1133
+
1134
+ class Konbini < Stripe::RequestParams
1135
+ # The number of calendar days (between 1 and 60) after which Konbini payment instructions will expire. For example, if a PaymentIntent is confirmed with Konbini and `expires_after_days` set to 2 on Monday JST, the instructions will expire on Wednesday 23:59:59 JST. Defaults to 3 days.
1136
+ attr_accessor :expires_after_days
1137
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1138
+ #
1139
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1140
+ #
1141
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1142
+ #
1143
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1144
+ attr_accessor :setup_future_usage
1145
+
1146
+ def initialize(expires_after_days: nil, setup_future_usage: nil)
1147
+ @expires_after_days = expires_after_days
1148
+ @setup_future_usage = setup_future_usage
1149
+ end
1150
+ end
1151
+
1152
+ class KrCard < Stripe::RequestParams
1153
+ # Controls when the funds will be captured from the customer's account.
1154
+ attr_accessor :capture_method
1155
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1156
+ #
1157
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1158
+ #
1159
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1160
+ #
1161
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1162
+ attr_accessor :setup_future_usage
1163
+
1164
+ def initialize(capture_method: nil, setup_future_usage: nil)
1165
+ @capture_method = capture_method
1166
+ @setup_future_usage = setup_future_usage
1167
+ end
1168
+ end
1169
+
1170
+ class Link < Stripe::RequestParams
1171
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1172
+ #
1173
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1174
+ #
1175
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1176
+ #
1177
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1178
+ attr_accessor :setup_future_usage
1179
+
1180
+ def initialize(setup_future_usage: nil)
1181
+ @setup_future_usage = setup_future_usage
1182
+ end
1183
+ end
1184
+
1185
+ class Mobilepay < Stripe::RequestParams
1186
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1187
+ #
1188
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1189
+ #
1190
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1191
+ #
1192
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1193
+ attr_accessor :setup_future_usage
1194
+
1195
+ def initialize(setup_future_usage: nil)
1196
+ @setup_future_usage = setup_future_usage
1197
+ end
1198
+ end
1199
+
1200
+ class Multibanco < Stripe::RequestParams
1201
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1202
+ #
1203
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1204
+ #
1205
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1206
+ #
1207
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1208
+ attr_accessor :setup_future_usage
1209
+
1210
+ def initialize(setup_future_usage: nil)
1211
+ @setup_future_usage = setup_future_usage
1212
+ end
1213
+ end
1214
+
1215
+ class NaverPay < Stripe::RequestParams
1216
+ # Controls when the funds will be captured from the customer's account.
1217
+ attr_accessor :capture_method
1218
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1219
+ #
1220
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1221
+ #
1222
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1223
+ #
1224
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1225
+ attr_accessor :setup_future_usage
1226
+
1227
+ def initialize(capture_method: nil, setup_future_usage: nil)
1228
+ @capture_method = capture_method
1229
+ @setup_future_usage = setup_future_usage
1230
+ end
1231
+ end
1232
+
1233
+ class Oxxo < Stripe::RequestParams
1234
+ # The number of calendar days before an OXXO voucher expires. For example, if you create an OXXO voucher on Monday and you set expires_after_days to 2, the OXXO invoice will expire on Wednesday at 23:59 America/Mexico_City time.
1235
+ attr_accessor :expires_after_days
1236
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1237
+ #
1238
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1239
+ #
1240
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1241
+ #
1242
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1243
+ attr_accessor :setup_future_usage
1244
+
1245
+ def initialize(expires_after_days: nil, setup_future_usage: nil)
1246
+ @expires_after_days = expires_after_days
1247
+ @setup_future_usage = setup_future_usage
1248
+ end
1249
+ end
1250
+
1251
+ class P24 < Stripe::RequestParams
1252
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1253
+ #
1254
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1255
+ #
1256
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1257
+ #
1258
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1259
+ attr_accessor :setup_future_usage
1260
+ # Confirm that the payer has accepted the P24 terms and conditions.
1261
+ attr_accessor :tos_shown_and_accepted
1262
+
1263
+ def initialize(setup_future_usage: nil, tos_shown_and_accepted: nil)
1264
+ @setup_future_usage = setup_future_usage
1265
+ @tos_shown_and_accepted = tos_shown_and_accepted
1266
+ end
1267
+ end
1268
+
1269
+ class Payco < Stripe::RequestParams
1270
+ # Controls when the funds will be captured from the customer's account.
1271
+ attr_accessor :capture_method
1272
+
1273
+ def initialize(capture_method: nil)
1274
+ @capture_method = capture_method
1275
+ end
1276
+ end
1277
+
1278
+ class Paynow < Stripe::RequestParams
1279
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1280
+ #
1281
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1282
+ #
1283
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1284
+ #
1285
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1286
+ attr_accessor :setup_future_usage
1287
+
1288
+ def initialize(setup_future_usage: nil)
1289
+ @setup_future_usage = setup_future_usage
1290
+ end
1291
+ end
1292
+
1293
+ class Paypal < Stripe::RequestParams
1294
+ # Controls when the funds will be captured from the customer's account.
1295
+ attr_accessor :capture_method
1296
+ # [Preferred locale](https://stripe.com/docs/payments/paypal/supported-locales) of the PayPal checkout page that the customer is redirected to.
1297
+ attr_accessor :preferred_locale
1298
+ # A reference of the PayPal transaction visible to customer which is mapped to PayPal's invoice ID. This must be a globally unique ID if you have configured in your PayPal settings to block multiple payments per invoice ID.
1299
+ attr_accessor :reference
1300
+ # A reference of the PayPal transaction visible to customer which is mapped to PayPal's invoice ID. This must be a globally unique ID if you have configured in your PayPal settings to block multiple payments per invoice ID.
1301
+ attr_accessor :reference_id
1302
+ # The risk correlation ID for an on-session payment using a saved PayPal payment method.
1303
+ attr_accessor :risk_correlation_id
1304
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1305
+ #
1306
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1307
+ #
1308
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1309
+ #
1310
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1311
+ #
1312
+ # If you've already set `setup_future_usage` and you're performing a request using a publishable key, you can only update the value from `on_session` to `off_session`.
1313
+ attr_accessor :setup_future_usage
1314
+ # The Stripe connected account IDs of the sellers on the platform for this transaction (optional). Only allowed when [separate charges and transfers](https://stripe.com/docs/connect/separate-charges-and-transfers) are used.
1315
+ attr_accessor :subsellers
1316
+
1317
+ def initialize(
1318
+ capture_method: nil,
1319
+ preferred_locale: nil,
1320
+ reference: nil,
1321
+ reference_id: nil,
1322
+ risk_correlation_id: nil,
1323
+ setup_future_usage: nil,
1324
+ subsellers: nil
1325
+ )
1326
+ @capture_method = capture_method
1327
+ @preferred_locale = preferred_locale
1328
+ @reference = reference
1329
+ @reference_id = reference_id
1330
+ @risk_correlation_id = risk_correlation_id
1331
+ @setup_future_usage = setup_future_usage
1332
+ @subsellers = subsellers
1333
+ end
1334
+ end
1335
+
1336
+ class Payto < Stripe::RequestParams
1337
+ class MandateOptions < Stripe::RequestParams
1338
+ # Amount that will be collected. It is required when `amount_type` is `fixed`.
1339
+ attr_accessor :amount
1340
+ # The type of amount that will be collected. The amount charged must be exact or up to the value of `amount` param for `fixed` or `maximum` type respectively.
1341
+ attr_accessor :amount_type
1342
+ # Date, in YYYY-MM-DD format, after which payments will not be collected. Defaults to no end date.
1343
+ attr_accessor :end_date
1344
+ # The periodicity at which payments will be collected.
1345
+ attr_accessor :payment_schedule
1346
+ # The number of payments that will be made during a payment period. Defaults to 1 except for when `payment_schedule` is `adhoc`. In that case, it defaults to no limit.
1347
+ attr_accessor :payments_per_period
1348
+ # The purpose for which payments are made. Defaults to retail.
1349
+ attr_accessor :purpose
1350
+ # Date, in YYYY-MM-DD format, from which payments will be collected. Defaults to confirmation time.
1351
+ attr_accessor :start_date
1352
+
1353
+ def initialize(
1354
+ amount: nil,
1355
+ amount_type: nil,
1356
+ end_date: nil,
1357
+ payment_schedule: nil,
1358
+ payments_per_period: nil,
1359
+ purpose: nil,
1360
+ start_date: nil
1361
+ )
1362
+ @amount = amount
1363
+ @amount_type = amount_type
1364
+ @end_date = end_date
1365
+ @payment_schedule = payment_schedule
1366
+ @payments_per_period = payments_per_period
1367
+ @purpose = purpose
1368
+ @start_date = start_date
1369
+ end
1370
+ end
1371
+ # Additional fields for Mandate creation
1372
+ attr_accessor :mandate_options
1373
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1374
+ #
1375
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1376
+ #
1377
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1378
+ #
1379
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1380
+ attr_accessor :setup_future_usage
1381
+
1382
+ def initialize(mandate_options: nil, setup_future_usage: nil)
1383
+ @mandate_options = mandate_options
1384
+ @setup_future_usage = setup_future_usage
1385
+ end
1386
+ end
1387
+
1388
+ class Pix < Stripe::RequestParams
1389
+ # The number of seconds (between 10 and 1209600) after which Pix payment will expire. Defaults to 86400 seconds.
1390
+ attr_accessor :expires_after_seconds
1391
+
1392
+ def initialize(expires_after_seconds: nil)
1393
+ @expires_after_seconds = expires_after_seconds
1394
+ end
1395
+ end
1396
+
1397
+ class RevolutPay < Stripe::RequestParams
1398
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1399
+ #
1400
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1401
+ #
1402
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1403
+ #
1404
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1405
+ attr_accessor :setup_future_usage
1406
+
1407
+ def initialize(setup_future_usage: nil)
1408
+ @setup_future_usage = setup_future_usage
1409
+ end
1410
+ end
1411
+
1412
+ class SamsungPay < Stripe::RequestParams
1413
+ # Controls when the funds will be captured from the customer's account.
1414
+ attr_accessor :capture_method
1415
+
1416
+ def initialize(capture_method: nil)
1417
+ @capture_method = capture_method
1418
+ end
1419
+ end
1420
+
1421
+ class SepaDebit < Stripe::RequestParams
1422
+ class MandateOptions < Stripe::RequestParams
1423
+ # Prefix used to generate the Mandate reference. Must be at most 12 characters long. Must consist of only uppercase letters, numbers, spaces, or the following special characters: '/', '_', '-', '&', '.'. Cannot begin with 'STRIPE'.
1424
+ attr_accessor :reference_prefix
1425
+
1426
+ def initialize(reference_prefix: nil)
1427
+ @reference_prefix = reference_prefix
1428
+ end
1429
+ end
1430
+ # Additional fields for Mandate creation
1431
+ attr_accessor :mandate_options
1432
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1433
+ #
1434
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1435
+ #
1436
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1437
+ #
1438
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1439
+ attr_accessor :setup_future_usage
1440
+
1441
+ def initialize(mandate_options: nil, setup_future_usage: nil)
1442
+ @mandate_options = mandate_options
1443
+ @setup_future_usage = setup_future_usage
1444
+ end
1445
+ end
1446
+
1447
+ class Sofort < Stripe::RequestParams
1448
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1449
+ #
1450
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1451
+ #
1452
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1453
+ #
1454
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1455
+ attr_accessor :setup_future_usage
1456
+
1457
+ def initialize(setup_future_usage: nil)
1458
+ @setup_future_usage = setup_future_usage
1459
+ end
1460
+ end
1461
+
1462
+ class Swish < Stripe::RequestParams
1463
+ # The order reference that will be displayed to customers in the Swish application. Defaults to the `id` of the Payment Intent.
1464
+ attr_accessor :reference
1465
+
1466
+ def initialize(reference: nil)
1467
+ @reference = reference
1468
+ end
1469
+ end
1470
+
1471
+ class UsBankAccount < Stripe::RequestParams
1472
+ class FinancialConnections < Stripe::RequestParams
1473
+ # The list of permissions to request. If this parameter is passed, the `payment_method` permission must be included. Valid permissions include: `balances`, `ownership`, `payment_method`, and `transactions`.
1474
+ attr_accessor :permissions
1475
+ # List of data features that you would like to retrieve upon account creation.
1476
+ attr_accessor :prefetch
1477
+
1478
+ def initialize(permissions: nil, prefetch: nil)
1479
+ @permissions = permissions
1480
+ @prefetch = prefetch
1481
+ end
1482
+ end
1483
+ # Additional fields for Financial Connections Session creation
1484
+ attr_accessor :financial_connections
1485
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1486
+ #
1487
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1488
+ #
1489
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1490
+ #
1491
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1492
+ attr_accessor :setup_future_usage
1493
+ # Verification method for the intent
1494
+ attr_accessor :verification_method
1495
+
1496
+ def initialize(
1497
+ financial_connections: nil,
1498
+ setup_future_usage: nil,
1499
+ verification_method: nil
1500
+ )
1501
+ @financial_connections = financial_connections
1502
+ @setup_future_usage = setup_future_usage
1503
+ @verification_method = verification_method
1504
+ end
1505
+ end
1506
+
1507
+ class WechatPay < Stripe::RequestParams
1508
+ # The app ID registered with WeChat Pay. Only required when client is ios or android.
1509
+ attr_accessor :app_id
1510
+ # The client type that the end customer will pay from
1511
+ attr_accessor :client
1512
+ # Indicates that you intend to make future payments with this PaymentIntent's payment method.
1513
+ #
1514
+ # If you provide a Customer with the PaymentIntent, you can use this parameter to [attach the payment method](/payments/save-during-payment) to the Customer after the PaymentIntent is confirmed and the customer completes any required actions. If you don't provide a Customer, you can still [attach](/api/payment_methods/attach) the payment method to a Customer after the transaction completes.
1515
+ #
1516
+ # If the payment method is `card_present` and isn't a digital wallet, Stripe creates and attaches a [generated_card](/api/charges/object#charge_object-payment_method_details-card_present-generated_card) payment method representing the card to the Customer instead.
1517
+ #
1518
+ # When processing card payments, Stripe uses `setup_future_usage` to help you comply with regional legislation and network rules, such as [SCA](/strong-customer-authentication).
1519
+ attr_accessor :setup_future_usage
1520
+
1521
+ def initialize(app_id: nil, client: nil, setup_future_usage: nil)
1522
+ @app_id = app_id
1523
+ @client = client
1524
+ @setup_future_usage = setup_future_usage
1525
+ end
1526
+ end
1527
+ # contains details about the ACSS Debit payment method options.
1528
+ attr_accessor :acss_debit
1529
+ # contains details about the Affirm payment method options.
1530
+ attr_accessor :affirm
1531
+ # contains details about the Afterpay Clearpay payment method options.
1532
+ attr_accessor :afterpay_clearpay
1533
+ # contains details about the Alipay payment method options.
1534
+ attr_accessor :alipay
1535
+ # contains details about the AmazonPay payment method options.
1536
+ attr_accessor :amazon_pay
1537
+ # contains details about the AU Becs Debit payment method options.
1538
+ attr_accessor :au_becs_debit
1539
+ # contains details about the Bacs Debit payment method options.
1540
+ attr_accessor :bacs_debit
1541
+ # contains details about the Bancontact payment method options.
1542
+ attr_accessor :bancontact
1543
+ # contains details about the Boleto payment method options.
1544
+ attr_accessor :boleto
1545
+ # contains details about the Card payment method options.
1546
+ attr_accessor :card
1547
+ # contains details about the Cashapp Pay payment method options.
1548
+ attr_accessor :cashapp
1549
+ # contains details about the Customer Balance payment method options.
1550
+ attr_accessor :customer_balance
1551
+ # contains details about the EPS payment method options.
1552
+ attr_accessor :eps
1553
+ # contains details about the FPX payment method options.
1554
+ attr_accessor :fpx
1555
+ # contains details about the Giropay payment method options.
1556
+ attr_accessor :giropay
1557
+ # contains details about the Grabpay payment method options.
1558
+ attr_accessor :grabpay
1559
+ # contains details about the Ideal payment method options.
1560
+ attr_accessor :ideal
1561
+ # contains details about the Kakao Pay payment method options.
1562
+ attr_accessor :kakao_pay
1563
+ # contains details about the Klarna payment method options.
1564
+ attr_accessor :klarna
1565
+ # contains details about the Konbini payment method options.
1566
+ attr_accessor :konbini
1567
+ # contains details about the Korean card payment method options.
1568
+ attr_accessor :kr_card
1569
+ # contains details about the Link payment method options.
1570
+ attr_accessor :link
1571
+ # contains details about the Mobilepay payment method options.
1572
+ attr_accessor :mobilepay
1573
+ # contains details about the Multibanco payment method options.
1574
+ attr_accessor :multibanco
1575
+ # contains details about the Naver Pay payment method options.
1576
+ attr_accessor :naver_pay
1577
+ # contains details about the OXXO payment method options.
1578
+ attr_accessor :oxxo
1579
+ # contains details about the P24 payment method options.
1580
+ attr_accessor :p24
1581
+ # contains details about the PAYCO payment method options.
1582
+ attr_accessor :payco
1583
+ # contains details about the PayNow payment method options.
1584
+ attr_accessor :paynow
1585
+ # contains details about the PayPal payment method options.
1586
+ attr_accessor :paypal
1587
+ # contains details about the PayTo payment method options.
1588
+ attr_accessor :payto
1589
+ # contains details about the Pix payment method options.
1590
+ attr_accessor :pix
1591
+ # contains details about the RevolutPay payment method options.
1592
+ attr_accessor :revolut_pay
1593
+ # contains details about the Samsung Pay payment method options.
1594
+ attr_accessor :samsung_pay
1595
+ # contains details about the Sepa Debit payment method options.
1596
+ attr_accessor :sepa_debit
1597
+ # contains details about the Sofort payment method options.
1598
+ attr_accessor :sofort
1599
+ # contains details about the Swish payment method options.
1600
+ attr_accessor :swish
1601
+ # contains details about the Us Bank Account payment method options.
1602
+ attr_accessor :us_bank_account
1603
+ # contains details about the WeChat Pay payment method options.
1604
+ attr_accessor :wechat_pay
1605
+
1606
+ def initialize(
1607
+ acss_debit: nil,
1608
+ affirm: nil,
1609
+ afterpay_clearpay: nil,
1610
+ alipay: nil,
1611
+ amazon_pay: nil,
1612
+ au_becs_debit: nil,
1613
+ bacs_debit: nil,
1614
+ bancontact: nil,
1615
+ boleto: nil,
1616
+ card: nil,
1617
+ cashapp: nil,
1618
+ customer_balance: nil,
1619
+ eps: nil,
1620
+ fpx: nil,
1621
+ giropay: nil,
1622
+ grabpay: nil,
1623
+ ideal: nil,
1624
+ kakao_pay: nil,
1625
+ klarna: nil,
1626
+ konbini: nil,
1627
+ kr_card: nil,
1628
+ link: nil,
1629
+ mobilepay: nil,
1630
+ multibanco: nil,
1631
+ naver_pay: nil,
1632
+ oxxo: nil,
1633
+ p24: nil,
1634
+ payco: nil,
1635
+ paynow: nil,
1636
+ paypal: nil,
1637
+ payto: nil,
1638
+ pix: nil,
1639
+ revolut_pay: nil,
1640
+ samsung_pay: nil,
1641
+ sepa_debit: nil,
1642
+ sofort: nil,
1643
+ swish: nil,
1644
+ us_bank_account: nil,
1645
+ wechat_pay: nil
1646
+ )
1647
+ @acss_debit = acss_debit
1648
+ @affirm = affirm
1649
+ @afterpay_clearpay = afterpay_clearpay
1650
+ @alipay = alipay
1651
+ @amazon_pay = amazon_pay
1652
+ @au_becs_debit = au_becs_debit
1653
+ @bacs_debit = bacs_debit
1654
+ @bancontact = bancontact
1655
+ @boleto = boleto
1656
+ @card = card
1657
+ @cashapp = cashapp
1658
+ @customer_balance = customer_balance
1659
+ @eps = eps
1660
+ @fpx = fpx
1661
+ @giropay = giropay
1662
+ @grabpay = grabpay
1663
+ @ideal = ideal
1664
+ @kakao_pay = kakao_pay
1665
+ @klarna = klarna
1666
+ @konbini = konbini
1667
+ @kr_card = kr_card
1668
+ @link = link
1669
+ @mobilepay = mobilepay
1670
+ @multibanco = multibanco
1671
+ @naver_pay = naver_pay
1672
+ @oxxo = oxxo
1673
+ @p24 = p24
1674
+ @payco = payco
1675
+ @paynow = paynow
1676
+ @paypal = paypal
1677
+ @payto = payto
1678
+ @pix = pix
1679
+ @revolut_pay = revolut_pay
1680
+ @samsung_pay = samsung_pay
1681
+ @sepa_debit = sepa_debit
1682
+ @sofort = sofort
1683
+ @swish = swish
1684
+ @us_bank_account = us_bank_account
1685
+ @wechat_pay = wechat_pay
1686
+ end
1687
+ end
1688
+
1689
+ class Permissions < Stripe::RequestParams
1690
+ class Update < Stripe::RequestParams
1691
+ # Determines which entity is allowed to update the line items.
1692
+ #
1693
+ # Default is `client_only`. Stripe Checkout client will automatically update the line items. If set to `server_only`, only your server is allowed to update the line items.
1694
+ #
1695
+ # When set to `server_only`, you must add the onLineItemsChange event handler when initializing the Stripe Checkout client and manually update the line items from your server using the Stripe API.
1696
+ attr_accessor :line_items
1697
+ # Determines which entity is allowed to update the shipping details.
1698
+ #
1699
+ # Default is `client_only`. Stripe Checkout client will automatically update the shipping details. If set to `server_only`, only your server is allowed to update the shipping details.
1700
+ #
1701
+ # When set to `server_only`, you must add the onShippingDetailsChange event handler when initializing the Stripe Checkout client and manually update the shipping details from your server using the Stripe API.
1702
+ attr_accessor :shipping_details
1703
+
1704
+ def initialize(line_items: nil, shipping_details: nil)
1705
+ @line_items = line_items
1706
+ @shipping_details = shipping_details
1707
+ end
1708
+ end
1709
+ # Permissions for updating the Checkout Session.
1710
+ attr_accessor :update
1711
+
1712
+ def initialize(update: nil)
1713
+ @update = update
1714
+ end
1715
+ end
1716
+
1717
+ class PhoneNumberCollection < Stripe::RequestParams
1718
+ # Set to `true` to enable phone number collection.
1719
+ #
1720
+ # Can only be set in `payment` and `subscription` mode.
1721
+ attr_accessor :enabled
1722
+
1723
+ def initialize(enabled: nil)
1724
+ @enabled = enabled
1725
+ end
1726
+ end
1727
+
1728
+ class SavedPaymentMethodOptions < Stripe::RequestParams
1729
+ # Uses the `allow_redisplay` value of each saved payment method to filter the set presented to a returning customer. By default, only saved payment methods with ’allow_redisplay: ‘always’ are shown in Checkout.
1730
+ attr_accessor :allow_redisplay_filters
1731
+ # Enable customers to choose if they wish to save their payment method for future use. Disabled by default.
1732
+ attr_accessor :payment_method_save
1733
+
1734
+ def initialize(allow_redisplay_filters: nil, payment_method_save: nil)
1735
+ @allow_redisplay_filters = allow_redisplay_filters
1736
+ @payment_method_save = payment_method_save
1737
+ end
1738
+ end
1739
+
1740
+ class SetupIntentData < Stripe::RequestParams
1741
+ # An arbitrary string attached to the object. Often useful for displaying to users.
1742
+ attr_accessor :description
1743
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
1744
+ attr_accessor :metadata
1745
+ # The Stripe account for which the setup is intended.
1746
+ attr_accessor :on_behalf_of
1747
+
1748
+ def initialize(description: nil, metadata: nil, on_behalf_of: nil)
1749
+ @description = description
1750
+ @metadata = metadata
1751
+ @on_behalf_of = on_behalf_of
1752
+ end
1753
+ end
1754
+
1755
+ class ShippingAddressCollection < Stripe::RequestParams
1756
+ # An array of two-letter ISO country codes representing which countries Checkout should provide as options for
1757
+ # shipping locations.
1758
+ attr_accessor :allowed_countries
1759
+
1760
+ def initialize(allowed_countries: nil)
1761
+ @allowed_countries = allowed_countries
1762
+ end
1763
+ end
1764
+
1765
+ class ShippingOption < Stripe::RequestParams
1766
+ class ShippingRateData < Stripe::RequestParams
1767
+ class DeliveryEstimate < Stripe::RequestParams
1768
+ class Maximum < Stripe::RequestParams
1769
+ # A unit of time.
1770
+ attr_accessor :unit
1771
+ # Must be greater than 0.
1772
+ attr_accessor :value
1773
+
1774
+ def initialize(unit: nil, value: nil)
1775
+ @unit = unit
1776
+ @value = value
1777
+ end
1778
+ end
1779
+
1780
+ class Minimum < Stripe::RequestParams
1781
+ # A unit of time.
1782
+ attr_accessor :unit
1783
+ # Must be greater than 0.
1784
+ attr_accessor :value
1785
+
1786
+ def initialize(unit: nil, value: nil)
1787
+ @unit = unit
1788
+ @value = value
1789
+ end
1790
+ end
1791
+ # The upper bound of the estimated range. If empty, represents no upper bound i.e., infinite.
1792
+ attr_accessor :maximum
1793
+ # The lower bound of the estimated range. If empty, represents no lower bound.
1794
+ attr_accessor :minimum
1795
+
1796
+ def initialize(maximum: nil, minimum: nil)
1797
+ @maximum = maximum
1798
+ @minimum = minimum
1799
+ end
1800
+ end
1801
+
1802
+ class FixedAmount < Stripe::RequestParams
1803
+ class CurrencyOptions < Stripe::RequestParams
1804
+ # A non-negative integer in cents representing how much to charge.
1805
+ attr_accessor :amount
1806
+ # Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`.
1807
+ attr_accessor :tax_behavior
1808
+
1809
+ def initialize(amount: nil, tax_behavior: nil)
1810
+ @amount = amount
1811
+ @tax_behavior = tax_behavior
1812
+ end
1813
+ end
1814
+ # A non-negative integer in cents representing how much to charge.
1815
+ attr_accessor :amount
1816
+ # Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
1817
+ attr_accessor :currency
1818
+ # Shipping rates defined in each available currency option. Each key must be a three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html) and a [supported currency](https://stripe.com/docs/currencies).
1819
+ attr_accessor :currency_options
1820
+
1821
+ def initialize(amount: nil, currency: nil, currency_options: nil)
1822
+ @amount = amount
1823
+ @currency = currency
1824
+ @currency_options = currency_options
1825
+ end
1826
+ end
1827
+ # The estimated range for how long shipping will take, meant to be displayable to the customer. This will appear on CheckoutSessions.
1828
+ attr_accessor :delivery_estimate
1829
+ # The name of the shipping rate, meant to be displayable to the customer. This will appear on CheckoutSessions.
1830
+ attr_accessor :display_name
1831
+ # Describes a fixed amount to charge for shipping. Must be present if type is `fixed_amount`.
1832
+ attr_accessor :fixed_amount
1833
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
1834
+ attr_accessor :metadata
1835
+ # Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`.
1836
+ attr_accessor :tax_behavior
1837
+ # A [tax code](https://stripe.com/docs/tax/tax-categories) ID. The Shipping tax code is `txcd_92010001`.
1838
+ attr_accessor :tax_code
1839
+ # The type of calculation to use on the shipping rate.
1840
+ attr_accessor :type
1841
+
1842
+ def initialize(
1843
+ delivery_estimate: nil,
1844
+ display_name: nil,
1845
+ fixed_amount: nil,
1846
+ metadata: nil,
1847
+ tax_behavior: nil,
1848
+ tax_code: nil,
1849
+ type: nil
1850
+ )
1851
+ @delivery_estimate = delivery_estimate
1852
+ @display_name = display_name
1853
+ @fixed_amount = fixed_amount
1854
+ @metadata = metadata
1855
+ @tax_behavior = tax_behavior
1856
+ @tax_code = tax_code
1857
+ @type = type
1858
+ end
1859
+ end
1860
+ # The ID of the Shipping Rate to use for this shipping option.
1861
+ attr_accessor :shipping_rate
1862
+ # Parameters to be passed to Shipping Rate creation for this shipping option.
1863
+ attr_accessor :shipping_rate_data
1864
+
1865
+ def initialize(shipping_rate: nil, shipping_rate_data: nil)
1866
+ @shipping_rate = shipping_rate
1867
+ @shipping_rate_data = shipping_rate_data
1868
+ end
1869
+ end
1870
+
1871
+ class SubscriptionData < Stripe::RequestParams
1872
+ class InvoiceSettings < Stripe::RequestParams
1873
+ class Issuer < Stripe::RequestParams
1874
+ # The connected account being referenced when `type` is `account`.
1875
+ attr_accessor :account
1876
+ # Type of the account referenced in the request.
1877
+ attr_accessor :type
1878
+
1879
+ def initialize(account: nil, type: nil)
1880
+ @account = account
1881
+ @type = type
1882
+ end
1883
+ end
1884
+ # The connected account that issues the invoice. The invoice is presented with the branding and support information of the specified account.
1885
+ attr_accessor :issuer
1886
+
1887
+ def initialize(issuer: nil)
1888
+ @issuer = issuer
1889
+ end
1890
+ end
1891
+
1892
+ class TransferData < Stripe::RequestParams
1893
+ # A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the destination account. By default, the entire amount is transferred to the destination.
1894
+ attr_accessor :amount_percent
1895
+ # ID of an existing, connected Stripe account.
1896
+ attr_accessor :destination
1897
+
1898
+ def initialize(amount_percent: nil, destination: nil)
1899
+ @amount_percent = amount_percent
1900
+ @destination = destination
1901
+ end
1902
+ end
1903
+
1904
+ class TrialSettings < Stripe::RequestParams
1905
+ class EndBehavior < Stripe::RequestParams
1906
+ # Indicates how the subscription should change when the trial ends if the user did not provide a payment method.
1907
+ attr_accessor :missing_payment_method
1908
+
1909
+ def initialize(missing_payment_method: nil)
1910
+ @missing_payment_method = missing_payment_method
1911
+ end
1912
+ end
1913
+ # Defines how the subscription should behave when the user's free trial ends.
1914
+ attr_accessor :end_behavior
1915
+
1916
+ def initialize(end_behavior: nil)
1917
+ @end_behavior = end_behavior
1918
+ end
1919
+ end
1920
+ # A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the application owner's Stripe account. To use an application fee percent, the request must be made on behalf of another account, using the `Stripe-Account` header or an OAuth key. For more information, see the application fees [documentation](https://stripe.com/docs/connect/subscriptions#collecting-fees-on-subscriptions).
1921
+ attr_accessor :application_fee_percent
1922
+ # A future timestamp to anchor the subscription's billing cycle for new subscriptions.
1923
+ attr_accessor :billing_cycle_anchor
1924
+ # The tax rates that will apply to any subscription item that does not have
1925
+ # `tax_rates` set. Invoices created will have their `default_tax_rates` populated
1926
+ # from the subscription.
1927
+ attr_accessor :default_tax_rates
1928
+ # The subscription's description, meant to be displayable to the customer.
1929
+ # Use this field to optionally store an explanation of the subscription
1930
+ # for rendering in the [customer portal](https://stripe.com/docs/customer-management).
1931
+ attr_accessor :description
1932
+ # All invoices will be billed using the specified settings.
1933
+ attr_accessor :invoice_settings
1934
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
1935
+ attr_accessor :metadata
1936
+ # The account on behalf of which to charge, for each of the subscription's invoices.
1937
+ attr_accessor :on_behalf_of
1938
+ # Determines how to handle prorations resulting from the `billing_cycle_anchor`. If no value is passed, the default is `create_prorations`.
1939
+ attr_accessor :proration_behavior
1940
+ # If specified, the funds from the subscription's invoices will be transferred to the destination and the ID of the resulting transfers will be found on the resulting charges.
1941
+ attr_accessor :transfer_data
1942
+ # Unix timestamp representing the end of the trial period the customer
1943
+ # will get before being charged for the first time. Has to be at least
1944
+ # 48 hours in the future.
1945
+ attr_accessor :trial_end
1946
+ # Integer representing the number of trial period days before the
1947
+ # customer is charged for the first time. Has to be at least 1.
1948
+ attr_accessor :trial_period_days
1949
+ # Settings related to subscription trials.
1950
+ attr_accessor :trial_settings
1951
+
1952
+ def initialize(
1953
+ application_fee_percent: nil,
1954
+ billing_cycle_anchor: nil,
1955
+ default_tax_rates: nil,
1956
+ description: nil,
1957
+ invoice_settings: nil,
1958
+ metadata: nil,
1959
+ on_behalf_of: nil,
1960
+ proration_behavior: nil,
1961
+ transfer_data: nil,
1962
+ trial_end: nil,
1963
+ trial_period_days: nil,
1964
+ trial_settings: nil
1965
+ )
1966
+ @application_fee_percent = application_fee_percent
1967
+ @billing_cycle_anchor = billing_cycle_anchor
1968
+ @default_tax_rates = default_tax_rates
1969
+ @description = description
1970
+ @invoice_settings = invoice_settings
1971
+ @metadata = metadata
1972
+ @on_behalf_of = on_behalf_of
1973
+ @proration_behavior = proration_behavior
1974
+ @transfer_data = transfer_data
1975
+ @trial_end = trial_end
1976
+ @trial_period_days = trial_period_days
1977
+ @trial_settings = trial_settings
1978
+ end
1979
+ end
1980
+
1981
+ class TaxIdCollection < Stripe::RequestParams
1982
+ # Enable tax ID collection during checkout. Defaults to `false`.
1983
+ attr_accessor :enabled
1984
+ # Describes whether a tax ID is required during checkout. Defaults to `never`.
1985
+ attr_accessor :required
1986
+
1987
+ def initialize(enabled: nil, required: nil)
1988
+ @enabled = enabled
1989
+ @required = required
1990
+ end
1991
+ end
1992
+ # Settings for price localization with [Adaptive Pricing](https://docs.stripe.com/payments/checkout/adaptive-pricing).
1993
+ attr_accessor :adaptive_pricing
1994
+ # Configure actions after a Checkout Session has expired.
1995
+ attr_accessor :after_expiration
1996
+ # Enables user redeemable promotion codes.
1997
+ attr_accessor :allow_promotion_codes
1998
+ # Settings for automatic tax lookup for this session and resulting payments, invoices, and subscriptions.
1999
+ attr_accessor :automatic_tax
2000
+ # Specify whether Checkout should collect the customer's billing address. Defaults to `auto`.
2001
+ attr_accessor :billing_address_collection
2002
+ # If set, Checkout displays a back button and customers will be directed to this URL if they decide to cancel payment and return to your website. This parameter is not allowed if ui_mode is `embedded` or `custom`.
2003
+ attr_accessor :cancel_url
2004
+ # A unique string to reference the Checkout Session. This can be a
2005
+ # customer ID, a cart ID, or similar, and can be used to reconcile the
2006
+ # session with your internal systems.
2007
+ attr_accessor :client_reference_id
2008
+ # Configure fields for the Checkout Session to gather active consent from customers.
2009
+ attr_accessor :consent_collection
2010
+ # Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies). Required in `setup` mode when `payment_method_types` is not set.
2011
+ attr_accessor :currency
2012
+ # Collect additional information from your customer using custom fields. Up to 3 fields are supported.
2013
+ attr_accessor :custom_fields
2014
+ # Display additional text for your customers using custom text.
2015
+ attr_accessor :custom_text
2016
+ # ID of an existing Customer, if one exists. In `payment` mode, the customer’s most recently saved card
2017
+ # payment method will be used to prefill the email, name, card details, and billing address
2018
+ # on the Checkout page. In `subscription` mode, the customer’s [default payment method](https://stripe.com/docs/api/customers/update#update_customer-invoice_settings-default_payment_method)
2019
+ # will be used if it’s a card, otherwise the most recently saved card will be used. A valid billing address, billing name and billing email are required on the payment method for Checkout to prefill the customer's card details.
2020
+ #
2021
+ # If the Customer already has a valid [email](https://stripe.com/docs/api/customers/object#customer_object-email) set, the email will be prefilled and not editable in Checkout.
2022
+ # If the Customer does not have a valid `email`, Checkout will set the email entered during the session on the Customer.
2023
+ #
2024
+ # If blank for Checkout Sessions in `subscription` mode or with `customer_creation` set as `always` in `payment` mode, Checkout will create a new Customer object based on information provided during the payment flow.
2025
+ #
2026
+ # You can set [`payment_intent_data.setup_future_usage`](https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-payment_intent_data-setup_future_usage) to have Checkout automatically attach the payment method to the Customer you pass in for future reuse.
2027
+ attr_accessor :customer
2028
+ # Configure whether a Checkout Session creates a [Customer](https://stripe.com/docs/api/customers) during Session confirmation.
2029
+ #
2030
+ # When a Customer is not created, you can still retrieve email, address, and other customer data entered in Checkout
2031
+ # with [customer_details](https://stripe.com/docs/api/checkout/sessions/object#checkout_session_object-customer_details).
2032
+ #
2033
+ # Sessions that don't create Customers instead are grouped by [guest customers](https://stripe.com/docs/payments/checkout/guest-customers)
2034
+ # in the Dashboard. Promotion codes limited to first time customers will return invalid for these Sessions.
2035
+ #
2036
+ # Can only be set in `payment` and `setup` mode.
2037
+ attr_accessor :customer_creation
2038
+ # If provided, this value will be used when the Customer object is created.
2039
+ # If not provided, customers will be asked to enter their email address.
2040
+ # Use this parameter to prefill customer data if you already have an email
2041
+ # on file. To access information about the customer once a session is
2042
+ # complete, use the `customer` field.
2043
+ attr_accessor :customer_email
2044
+ # Controls what fields on Customer can be updated by the Checkout Session. Can only be provided when `customer` is provided.
2045
+ attr_accessor :customer_update
2046
+ # The coupon or promotion code to apply to this Session. Currently, only up to one may be specified.
2047
+ attr_accessor :discounts
2048
+ # Specifies which fields in the response should be expanded.
2049
+ attr_accessor :expand
2050
+ # The Epoch time in seconds at which the Checkout Session will expire. It can be anywhere from 30 minutes to 24 hours after Checkout Session creation. By default, this value is 24 hours from creation.
2051
+ attr_accessor :expires_at
2052
+ # Generate a post-purchase Invoice for one-time payments.
2053
+ attr_accessor :invoice_creation
2054
+ # A list of items the customer is purchasing. Use this parameter to pass one-time or recurring [Prices](https://stripe.com/docs/api/prices).
2055
+ #
2056
+ # For `payment` mode, there is a maximum of 100 line items, however it is recommended to consolidate line items if there are more than a few dozen.
2057
+ #
2058
+ # For `subscription` mode, there is a maximum of 20 line items with recurring Prices and 20 line items with one-time Prices. Line items with one-time Prices will be on the initial invoice only.
2059
+ attr_accessor :line_items
2060
+ # The IETF language tag of the locale Checkout is displayed in. If blank or `auto`, the browser's locale is used.
2061
+ attr_accessor :locale
2062
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
2063
+ attr_accessor :metadata
2064
+ # The mode of the Checkout Session. Pass `subscription` if the Checkout Session includes at least one recurring item.
2065
+ attr_accessor :mode
2066
+ # A subset of parameters to be passed to PaymentIntent creation for Checkout Sessions in `payment` mode.
2067
+ attr_accessor :payment_intent_data
2068
+ # Specify whether Checkout should collect a payment method. When set to `if_required`, Checkout will not collect a payment method when the total due for the session is 0.
2069
+ # This may occur if the Checkout Session includes a free trial or a discount.
2070
+ #
2071
+ # Can only be set in `subscription` mode. Defaults to `always`.
2072
+ #
2073
+ # If you'd like information on how to collect a payment method outside of Checkout, read the guide on configuring [subscriptions with a free trial](https://stripe.com/docs/payments/checkout/free-trials).
2074
+ attr_accessor :payment_method_collection
2075
+ # The ID of the payment method configuration to use with this Checkout session.
2076
+ attr_accessor :payment_method_configuration
2077
+ # This parameter allows you to set some attributes on the payment method created during a Checkout session.
2078
+ attr_accessor :payment_method_data
2079
+ # Payment-method-specific configuration.
2080
+ attr_accessor :payment_method_options
2081
+ # A list of the types of payment methods (e.g., `card`) this Checkout Session can accept.
2082
+ #
2083
+ # You can omit this attribute to manage your payment methods from the [Stripe Dashboard](https://dashboard.stripe.com/settings/payment_methods).
2084
+ # See [Dynamic Payment Methods](https://stripe.com/docs/payments/payment-methods/integration-options#using-dynamic-payment-methods) for more details.
2085
+ #
2086
+ # Read more about the supported payment methods and their requirements in our [payment
2087
+ # method details guide](/docs/payments/checkout/payment-methods).
2088
+ #
2089
+ # If multiple payment methods are passed, Checkout will dynamically reorder them to
2090
+ # prioritize the most relevant payment methods based on the customer's location and
2091
+ # other characteristics.
2092
+ attr_accessor :payment_method_types
2093
+ # This property is used to set up permissions for various actions (e.g., update) on the CheckoutSession object.
2094
+ #
2095
+ # For specific permissions, please refer to their dedicated subsections, such as `permissions.update.shipping_details`.
2096
+ attr_accessor :permissions
2097
+ # Controls phone number collection settings for the session.
2098
+ #
2099
+ # We recommend that you review your privacy policy and check with your legal contacts
2100
+ # before using this feature. Learn more about [collecting phone numbers with Checkout](https://stripe.com/docs/payments/checkout/phone-numbers).
2101
+ attr_accessor :phone_number_collection
2102
+ # This parameter applies to `ui_mode: embedded`. Learn more about the [redirect behavior](https://stripe.com/docs/payments/checkout/custom-success-page?payment-ui=embedded-form) of embedded sessions. Defaults to `always`.
2103
+ attr_accessor :redirect_on_completion
2104
+ # The URL to redirect your customer back to after they authenticate or cancel their payment on the
2105
+ # payment method's app or site. This parameter is required if `ui_mode` is `embedded` or `custom`
2106
+ # and redirect-based payment methods are enabled on the session.
2107
+ attr_accessor :return_url
2108
+ # Controls saved payment method settings for the session. Only available in `payment` and `subscription` mode.
2109
+ attr_accessor :saved_payment_method_options
2110
+ # A subset of parameters to be passed to SetupIntent creation for Checkout Sessions in `setup` mode.
2111
+ attr_accessor :setup_intent_data
2112
+ # When set, provides configuration for Checkout to collect a shipping address from a customer.
2113
+ attr_accessor :shipping_address_collection
2114
+ # The shipping rate options to apply to this Session. Up to a maximum of 5.
2115
+ attr_accessor :shipping_options
2116
+ # Describes the type of transaction being performed by Checkout in order to customize
2117
+ # relevant text on the page, such as the submit button. `submit_type` can only be
2118
+ # specified on Checkout Sessions in `payment` mode. If blank or `auto`, `pay` is used.
2119
+ attr_accessor :submit_type
2120
+ # A subset of parameters to be passed to subscription creation for Checkout Sessions in `subscription` mode.
2121
+ attr_accessor :subscription_data
2122
+ # The URL to which Stripe should send customers when payment or setup
2123
+ # is complete.
2124
+ # This parameter is not allowed if ui_mode is `embedded` or `custom`. If you'd like to use
2125
+ # information from the successful Checkout Session on your page, read the
2126
+ # guide on [customizing your success page](https://stripe.com/docs/payments/checkout/custom-success-page).
2127
+ attr_accessor :success_url
2128
+ # Controls tax ID collection during checkout.
2129
+ attr_accessor :tax_id_collection
2130
+ # The UI mode of the Session. Defaults to `hosted`.
2131
+ attr_accessor :ui_mode
2132
+
2133
+ def initialize(
2134
+ adaptive_pricing: nil,
2135
+ after_expiration: nil,
2136
+ allow_promotion_codes: nil,
2137
+ automatic_tax: nil,
2138
+ billing_address_collection: nil,
2139
+ cancel_url: nil,
2140
+ client_reference_id: nil,
2141
+ consent_collection: nil,
2142
+ currency: nil,
2143
+ custom_fields: nil,
2144
+ custom_text: nil,
2145
+ customer: nil,
2146
+ customer_creation: nil,
2147
+ customer_email: nil,
2148
+ customer_update: nil,
2149
+ discounts: nil,
2150
+ expand: nil,
2151
+ expires_at: nil,
2152
+ invoice_creation: nil,
2153
+ line_items: nil,
2154
+ locale: nil,
2155
+ metadata: nil,
2156
+ mode: nil,
2157
+ payment_intent_data: nil,
2158
+ payment_method_collection: nil,
2159
+ payment_method_configuration: nil,
2160
+ payment_method_data: nil,
2161
+ payment_method_options: nil,
2162
+ payment_method_types: nil,
2163
+ permissions: nil,
2164
+ phone_number_collection: nil,
2165
+ redirect_on_completion: nil,
2166
+ return_url: nil,
2167
+ saved_payment_method_options: nil,
2168
+ setup_intent_data: nil,
2169
+ shipping_address_collection: nil,
2170
+ shipping_options: nil,
2171
+ submit_type: nil,
2172
+ subscription_data: nil,
2173
+ success_url: nil,
2174
+ tax_id_collection: nil,
2175
+ ui_mode: nil
2176
+ )
2177
+ @adaptive_pricing = adaptive_pricing
2178
+ @after_expiration = after_expiration
2179
+ @allow_promotion_codes = allow_promotion_codes
2180
+ @automatic_tax = automatic_tax
2181
+ @billing_address_collection = billing_address_collection
2182
+ @cancel_url = cancel_url
2183
+ @client_reference_id = client_reference_id
2184
+ @consent_collection = consent_collection
2185
+ @currency = currency
2186
+ @custom_fields = custom_fields
2187
+ @custom_text = custom_text
2188
+ @customer = customer
2189
+ @customer_creation = customer_creation
2190
+ @customer_email = customer_email
2191
+ @customer_update = customer_update
2192
+ @discounts = discounts
2193
+ @expand = expand
2194
+ @expires_at = expires_at
2195
+ @invoice_creation = invoice_creation
2196
+ @line_items = line_items
2197
+ @locale = locale
2198
+ @metadata = metadata
2199
+ @mode = mode
2200
+ @payment_intent_data = payment_intent_data
2201
+ @payment_method_collection = payment_method_collection
2202
+ @payment_method_configuration = payment_method_configuration
2203
+ @payment_method_data = payment_method_data
2204
+ @payment_method_options = payment_method_options
2205
+ @payment_method_types = payment_method_types
2206
+ @permissions = permissions
2207
+ @phone_number_collection = phone_number_collection
2208
+ @redirect_on_completion = redirect_on_completion
2209
+ @return_url = return_url
2210
+ @saved_payment_method_options = saved_payment_method_options
2211
+ @setup_intent_data = setup_intent_data
2212
+ @shipping_address_collection = shipping_address_collection
2213
+ @shipping_options = shipping_options
2214
+ @submit_type = submit_type
2215
+ @subscription_data = subscription_data
2216
+ @success_url = success_url
2217
+ @tax_id_collection = tax_id_collection
2218
+ @ui_mode = ui_mode
2219
+ end
2220
+ end
2221
+
2222
+ class RetrieveParams < Stripe::RequestParams
2223
+ # Specifies which fields in the response should be expanded.
2224
+ attr_accessor :expand
2225
+
2226
+ def initialize(expand: nil)
2227
+ @expand = expand
2228
+ end
2229
+ end
2230
+
2231
+ class UpdateParams < Stripe::RequestParams
2232
+ class CollectedInformation < Stripe::RequestParams
2233
+ class ShippingDetails < Stripe::RequestParams
2234
+ class Address < Stripe::RequestParams
2235
+ # City, district, suburb, town, or village.
2236
+ attr_accessor :city
2237
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2238
+ attr_accessor :country
2239
+ # Address line 1 (e.g., street, PO Box, or company name).
2240
+ attr_accessor :line1
2241
+ # Address line 2 (e.g., apartment, suite, unit, or building).
2242
+ attr_accessor :line2
2243
+ # ZIP or postal code.
2244
+ attr_accessor :postal_code
2245
+ # State, county, province, or region.
2246
+ attr_accessor :state
2247
+
2248
+ def initialize(
2249
+ city: nil,
2250
+ country: nil,
2251
+ line1: nil,
2252
+ line2: nil,
2253
+ postal_code: nil,
2254
+ state: nil
2255
+ )
2256
+ @city = city
2257
+ @country = country
2258
+ @line1 = line1
2259
+ @line2 = line2
2260
+ @postal_code = postal_code
2261
+ @state = state
2262
+ end
2263
+ end
2264
+ # The address of the customer
2265
+ attr_accessor :address
2266
+ # The name of customer
2267
+ attr_accessor :name
2268
+
2269
+ def initialize(address: nil, name: nil)
2270
+ @address = address
2271
+ @name = name
2272
+ end
2273
+ end
2274
+ # The shipping details to apply to this Session.
2275
+ attr_accessor :shipping_details
2276
+
2277
+ def initialize(shipping_details: nil)
2278
+ @shipping_details = shipping_details
2279
+ end
2280
+ end
2281
+
2282
+ class LineItem < Stripe::RequestParams
2283
+ class AdjustableQuantity < Stripe::RequestParams
2284
+ # Set to true if the quantity can be adjusted to any positive integer. Setting to false will remove any previously specified constraints on quantity.
2285
+ attr_accessor :enabled
2286
+ # The maximum quantity the customer can purchase for the Checkout Session. By default this value is 99. You can specify a value up to 999999.
2287
+ attr_accessor :maximum
2288
+ # The minimum quantity the customer must purchase for the Checkout Session. By default this value is 0.
2289
+ attr_accessor :minimum
2290
+
2291
+ def initialize(enabled: nil, maximum: nil, minimum: nil)
2292
+ @enabled = enabled
2293
+ @maximum = maximum
2294
+ @minimum = minimum
2295
+ end
2296
+ end
2297
+ # When set, provides configuration for this item’s quantity to be adjusted by the customer during Checkout.
2298
+ attr_accessor :adjustable_quantity
2299
+ # ID of an existing line item.
2300
+ attr_accessor :id
2301
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
2302
+ attr_accessor :metadata
2303
+ # The ID of the [Price](https://stripe.com/docs/api/prices).
2304
+ attr_accessor :price
2305
+ # The quantity of the line item being purchased.
2306
+ attr_accessor :quantity
2307
+ # The [tax rates](https://stripe.com/docs/api/tax_rates) which apply to this line item.
2308
+ attr_accessor :tax_rates
2309
+
2310
+ def initialize(
2311
+ adjustable_quantity: nil,
2312
+ id: nil,
2313
+ metadata: nil,
2314
+ price: nil,
2315
+ quantity: nil,
2316
+ tax_rates: nil
2317
+ )
2318
+ @adjustable_quantity = adjustable_quantity
2319
+ @id = id
2320
+ @metadata = metadata
2321
+ @price = price
2322
+ @quantity = quantity
2323
+ @tax_rates = tax_rates
2324
+ end
2325
+ end
2326
+
2327
+ class ShippingOption < Stripe::RequestParams
2328
+ class ShippingRateData < Stripe::RequestParams
2329
+ class DeliveryEstimate < Stripe::RequestParams
2330
+ class Maximum < Stripe::RequestParams
2331
+ # A unit of time.
2332
+ attr_accessor :unit
2333
+ # Must be greater than 0.
2334
+ attr_accessor :value
2335
+
2336
+ def initialize(unit: nil, value: nil)
2337
+ @unit = unit
2338
+ @value = value
2339
+ end
2340
+ end
2341
+
2342
+ class Minimum < Stripe::RequestParams
2343
+ # A unit of time.
2344
+ attr_accessor :unit
2345
+ # Must be greater than 0.
2346
+ attr_accessor :value
2347
+
2348
+ def initialize(unit: nil, value: nil)
2349
+ @unit = unit
2350
+ @value = value
2351
+ end
2352
+ end
2353
+ # The upper bound of the estimated range. If empty, represents no upper bound i.e., infinite.
2354
+ attr_accessor :maximum
2355
+ # The lower bound of the estimated range. If empty, represents no lower bound.
2356
+ attr_accessor :minimum
2357
+
2358
+ def initialize(maximum: nil, minimum: nil)
2359
+ @maximum = maximum
2360
+ @minimum = minimum
2361
+ end
2362
+ end
2363
+
2364
+ class FixedAmount < Stripe::RequestParams
2365
+ class CurrencyOptions < Stripe::RequestParams
2366
+ # A non-negative integer in cents representing how much to charge.
2367
+ attr_accessor :amount
2368
+ # Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`.
2369
+ attr_accessor :tax_behavior
2370
+
2371
+ def initialize(amount: nil, tax_behavior: nil)
2372
+ @amount = amount
2373
+ @tax_behavior = tax_behavior
2374
+ end
2375
+ end
2376
+ # A non-negative integer in cents representing how much to charge.
2377
+ attr_accessor :amount
2378
+ # Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
2379
+ attr_accessor :currency
2380
+ # Shipping rates defined in each available currency option. Each key must be a three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html) and a [supported currency](https://stripe.com/docs/currencies).
2381
+ attr_accessor :currency_options
2382
+
2383
+ def initialize(amount: nil, currency: nil, currency_options: nil)
2384
+ @amount = amount
2385
+ @currency = currency
2386
+ @currency_options = currency_options
2387
+ end
2388
+ end
2389
+ # The estimated range for how long shipping will take, meant to be displayable to the customer. This will appear on CheckoutSessions.
2390
+ attr_accessor :delivery_estimate
2391
+ # The name of the shipping rate, meant to be displayable to the customer. This will appear on CheckoutSessions.
2392
+ attr_accessor :display_name
2393
+ # Describes a fixed amount to charge for shipping. Must be present if type is `fixed_amount`.
2394
+ attr_accessor :fixed_amount
2395
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
2396
+ attr_accessor :metadata
2397
+ # Specifies whether the rate is considered inclusive of taxes or exclusive of taxes. One of `inclusive`, `exclusive`, or `unspecified`.
2398
+ attr_accessor :tax_behavior
2399
+ # A [tax code](https://stripe.com/docs/tax/tax-categories) ID. The Shipping tax code is `txcd_92010001`.
2400
+ attr_accessor :tax_code
2401
+ # The type of calculation to use on the shipping rate.
2402
+ attr_accessor :type
2403
+
2404
+ def initialize(
2405
+ delivery_estimate: nil,
2406
+ display_name: nil,
2407
+ fixed_amount: nil,
2408
+ metadata: nil,
2409
+ tax_behavior: nil,
2410
+ tax_code: nil,
2411
+ type: nil
2412
+ )
2413
+ @delivery_estimate = delivery_estimate
2414
+ @display_name = display_name
2415
+ @fixed_amount = fixed_amount
2416
+ @metadata = metadata
2417
+ @tax_behavior = tax_behavior
2418
+ @tax_code = tax_code
2419
+ @type = type
2420
+ end
2421
+ end
2422
+ # The ID of the Shipping Rate to use for this shipping option.
2423
+ attr_accessor :shipping_rate
2424
+ # Parameters to be passed to Shipping Rate creation for this shipping option.
2425
+ attr_accessor :shipping_rate_data
2426
+
2427
+ def initialize(shipping_rate: nil, shipping_rate_data: nil)
2428
+ @shipping_rate = shipping_rate
2429
+ @shipping_rate_data = shipping_rate_data
2430
+ end
2431
+ end
2432
+ # Information about the customer collected within the Checkout Session.
2433
+ attr_accessor :collected_information
2434
+ # Specifies which fields in the response should be expanded.
2435
+ attr_accessor :expand
2436
+ # A list of items the customer is purchasing.
2437
+ #
2438
+ # When updating line items, you must retransmit the entire array of line items.
2439
+ #
2440
+ # To retain an existing line item, specify its `id`.
2441
+ #
2442
+ # To update an existing line item, specify its `id` along with the new values of the fields to update.
2443
+ #
2444
+ # To add a new line item, specify a `price` and `quantity`. We don't currently support recurring prices.
2445
+ #
2446
+ # To remove an existing line item, omit the line item's ID from the retransmitted array.
2447
+ #
2448
+ # To reorder a line item, specify it at the desired position in the retransmitted array.
2449
+ attr_accessor :line_items
2450
+ # Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
2451
+ attr_accessor :metadata
2452
+ # The shipping rate options to apply to this Session. Up to a maximum of 5.
2453
+ attr_accessor :shipping_options
2454
+
2455
+ def initialize(
2456
+ collected_information: nil,
2457
+ expand: nil,
2458
+ line_items: nil,
2459
+ metadata: nil,
2460
+ shipping_options: nil
2461
+ )
2462
+ @collected_information = collected_information
2463
+ @expand = expand
2464
+ @line_items = line_items
2465
+ @metadata = metadata
2466
+ @shipping_options = shipping_options
2467
+ end
2468
+ end
2469
+
2470
+ class ExpireParams < Stripe::RequestParams
2471
+ # Specifies which fields in the response should be expanded.
2472
+ attr_accessor :expand
2473
+
2474
+ def initialize(expand: nil)
2475
+ @expand = expand
2476
+ end
2477
+ end
2478
+
14
2479
  # Creates a Session object.
15
2480
  def create(params = {}, opts = {})
16
2481
  request(