stripe 15.5.0 → 16.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1252) hide show
  1. checksums.yaml +4 -4
  2. data/lib/stripe/api_requestor.rb +5 -2
  3. data/lib/stripe/api_resource.rb +3 -0
  4. data/lib/stripe/api_version.rb +2 -2
  5. data/lib/stripe/event_types.rb +20 -6
  6. data/lib/stripe/events/unknown_event_notification.rb +19 -0
  7. data/lib/stripe/events/v1_billing_meter_error_report_triggered_event.rb +115 -15
  8. data/lib/stripe/events/v1_billing_meter_no_meter_found_event.rb +93 -6
  9. data/lib/stripe/events/v2_core_event_destination_ping_event.rb +35 -12
  10. data/lib/stripe/object_types.rb +3 -2
  11. data/lib/stripe/params/account_capability_list_params.rb +13 -0
  12. data/lib/stripe/params/account_capability_retrieve_params.rb +13 -0
  13. data/lib/stripe/params/account_capability_update_params.rb +18 -0
  14. data/lib/stripe/params/account_create_params.rb +2083 -0
  15. data/lib/stripe/params/account_delete_params.rb +6 -0
  16. data/lib/stripe/params/account_external_account_create_params.rb +134 -0
  17. data/lib/stripe/params/account_external_account_delete_params.rb +6 -0
  18. data/lib/stripe/params/account_external_account_list_params.rb +25 -0
  19. data/lib/stripe/params/account_external_account_retrieve_params.rb +13 -0
  20. data/lib/stripe/params/account_external_account_update_params.rb +91 -0
  21. data/lib/stripe/params/account_link_create_params.rb +52 -0
  22. data/lib/stripe/params/account_list_params.rb +42 -0
  23. data/lib/stripe/params/account_login_link_create_params.rb +13 -0
  24. data/lib/stripe/params/account_person_create_params.rb +435 -0
  25. data/lib/stripe/params/account_person_delete_params.rb +6 -0
  26. data/lib/stripe/params/account_person_list_params.rb +61 -0
  27. data/lib/stripe/params/account_person_retrieve_params.rb +13 -0
  28. data/lib/stripe/params/account_person_update_params.rb +435 -0
  29. data/lib/stripe/params/account_persons_params.rb +61 -0
  30. data/lib/stripe/params/account_reject_params.rb +16 -0
  31. data/lib/stripe/params/account_retrieve_current_params.rb +13 -0
  32. data/lib/stripe/params/account_retrieve_params.rb +13 -0
  33. data/lib/stripe/params/account_session_create_params.rb +598 -0
  34. data/lib/stripe/params/account_update_params.rb +2030 -0
  35. data/lib/stripe/params/apple_pay_domain_create_params.rb +16 -0
  36. data/lib/stripe/params/apple_pay_domain_delete_params.rb +6 -0
  37. data/lib/stripe/params/apple_pay_domain_list_params.rb +31 -0
  38. data/lib/stripe/params/apple_pay_domain_retrieve_params.rb +13 -0
  39. data/lib/stripe/params/application_fee_list_params.rb +52 -0
  40. data/lib/stripe/params/application_fee_refund_create_params.rb +19 -0
  41. data/lib/stripe/params/application_fee_refund_list_params.rb +22 -0
  42. data/lib/stripe/params/application_fee_refund_retrieve_params.rb +13 -0
  43. data/lib/stripe/params/application_fee_refund_update_params.rb +16 -0
  44. data/lib/stripe/params/application_fee_retrieve_params.rb +13 -0
  45. data/lib/stripe/params/apps/secret_create_params.rb +38 -0
  46. data/lib/stripe/params/apps/secret_delete_where_params.rb +32 -0
  47. data/lib/stripe/params/apps/secret_find_params.rb +32 -0
  48. data/lib/stripe/params/apps/secret_list_params.rb +38 -0
  49. data/lib/stripe/params/balance_retrieve_params.rb +13 -0
  50. data/lib/stripe/params/balance_settings_retrieve_params.rb +13 -0
  51. data/lib/stripe/params/balance_settings_update_params.rb +67 -0
  52. data/lib/stripe/params/balance_transaction_list_params.rb +64 -0
  53. data/lib/stripe/params/balance_transaction_retrieve_params.rb +13 -0
  54. data/lib/stripe/params/billing/alert_activate_params.rb +15 -0
  55. data/lib/stripe/params/billing/alert_archive_params.rb +15 -0
  56. data/lib/stripe/params/billing/alert_create_params.rb +52 -0
  57. data/lib/stripe/params/billing/alert_deactivate_params.rb +15 -0
  58. data/lib/stripe/params/billing/alert_list_params.rb +37 -0
  59. data/lib/stripe/params/billing/alert_retrieve_params.rb +15 -0
  60. data/lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb +54 -0
  61. data/lib/stripe/params/billing/credit_balance_transaction_list_params.rb +37 -0
  62. data/lib/stripe/params/billing/credit_balance_transaction_retrieve_params.rb +15 -0
  63. data/lib/stripe/params/billing/credit_grant_create_params.rb +103 -0
  64. data/lib/stripe/params/billing/credit_grant_expire_params.rb +15 -0
  65. data/lib/stripe/params/billing/credit_grant_list_params.rb +33 -0
  66. data/lib/stripe/params/billing/credit_grant_retrieve_params.rb +15 -0
  67. data/lib/stripe/params/billing/credit_grant_update_params.rb +21 -0
  68. data/lib/stripe/params/billing/credit_grant_void_grant_params.rb +15 -0
  69. data/lib/stripe/params/billing/meter_create_params.rb +70 -0
  70. data/lib/stripe/params/billing/meter_deactivate_params.rb +15 -0
  71. data/lib/stripe/params/billing/meter_event_adjustment_create_params.rb +32 -0
  72. data/lib/stripe/params/billing/meter_event_create_params.rb +27 -0
  73. data/lib/stripe/params/billing/meter_event_summary_list_params.rb +45 -0
  74. data/lib/stripe/params/billing/meter_list_params.rb +27 -0
  75. data/lib/stripe/params/billing/meter_reactivate_params.rb +15 -0
  76. data/lib/stripe/params/billing/meter_retrieve_params.rb +15 -0
  77. data/lib/stripe/params/billing/meter_update_params.rb +18 -0
  78. data/lib/stripe/params/billing_portal/configuration_create_params.rb +225 -0
  79. data/lib/stripe/params/billing_portal/configuration_list_params.rb +37 -0
  80. data/lib/stripe/params/billing_portal/configuration_retrieve_params.rb +15 -0
  81. data/lib/stripe/params/billing_portal/configuration_update_params.rb +231 -0
  82. data/lib/stripe/params/billing_portal/session_create_params.rb +179 -0
  83. data/lib/stripe/params/charge_capture_params.rb +57 -0
  84. data/lib/stripe/params/charge_create_params.rb +172 -0
  85. data/lib/stripe/params/charge_list_params.rb +60 -0
  86. data/lib/stripe/params/charge_retrieve_params.rb +13 -0
  87. data/lib/stripe/params/charge_search_params.rb +22 -0
  88. data/lib/stripe/params/charge_update_params.rb +102 -0
  89. data/lib/stripe/params/checkout/session_create_params.rb +2445 -0
  90. data/lib/stripe/params/checkout/session_expire_params.rb +15 -0
  91. data/lib/stripe/params/checkout/session_line_item_list_params.rb +24 -0
  92. data/lib/stripe/params/checkout/session_list_line_items_params.rb +24 -0
  93. data/lib/stripe/params/checkout/session_list_params.rb +83 -0
  94. data/lib/stripe/params/checkout/session_retrieve_params.rb +15 -0
  95. data/lib/stripe/params/checkout/session_update_params.rb +179 -0
  96. data/lib/stripe/params/climate/order_cancel_params.rb +15 -0
  97. data/lib/stripe/params/climate/order_create_params.rb +49 -0
  98. data/lib/stripe/params/climate/order_list_params.rb +24 -0
  99. data/lib/stripe/params/climate/order_retrieve_params.rb +15 -0
  100. data/lib/stripe/params/climate/order_update_params.rb +29 -0
  101. data/lib/stripe/params/climate/product_list_params.rb +24 -0
  102. data/lib/stripe/params/climate/product_retrieve_params.rb +15 -0
  103. data/lib/stripe/params/climate/supplier_list_params.rb +24 -0
  104. data/lib/stripe/params/climate/supplier_retrieve_params.rb +15 -0
  105. data/lib/stripe/params/confirmation_token_create_params.rb +650 -0
  106. data/lib/stripe/params/confirmation_token_retrieve_params.rb +13 -0
  107. data/lib/stripe/params/country_spec_list_params.rb +22 -0
  108. data/lib/stripe/params/country_spec_retrieve_params.rb +13 -0
  109. data/lib/stripe/params/coupon_create_params.rb +80 -0
  110. data/lib/stripe/params/coupon_delete_params.rb +6 -0
  111. data/lib/stripe/params/coupon_list_params.rb +42 -0
  112. data/lib/stripe/params/coupon_retrieve_params.rb +13 -0
  113. data/lib/stripe/params/coupon_update_params.rb +30 -0
  114. data/lib/stripe/params/credit_note_create_params.rb +144 -0
  115. data/lib/stripe/params/credit_note_line_item_list_params.rb +22 -0
  116. data/lib/stripe/params/credit_note_list_params.rb +56 -0
  117. data/lib/stripe/params/credit_note_list_preview_line_items_params.rb +156 -0
  118. data/lib/stripe/params/credit_note_preview_lines_list_params.rb +156 -0
  119. data/lib/stripe/params/credit_note_preview_params.rb +144 -0
  120. data/lib/stripe/params/credit_note_retrieve_params.rb +13 -0
  121. data/lib/stripe/params/credit_note_update_params.rb +19 -0
  122. data/lib/stripe/params/credit_note_void_credit_note_params.rb +13 -0
  123. data/lib/stripe/params/customer_balance_transaction_create_params.rb +25 -0
  124. data/lib/stripe/params/customer_balance_transaction_list_params.rb +22 -0
  125. data/lib/stripe/params/customer_balance_transaction_retrieve_params.rb +13 -0
  126. data/lib/stripe/params/customer_balance_transaction_update_params.rb +19 -0
  127. data/lib/stripe/params/customer_cash_balance_retrieve_params.rb +13 -0
  128. data/lib/stripe/params/customer_cash_balance_transaction_list_params.rb +22 -0
  129. data/lib/stripe/params/customer_cash_balance_transaction_retrieve_params.rb +13 -0
  130. data/lib/stripe/params/customer_cash_balance_update_params.rb +24 -0
  131. data/lib/stripe/params/customer_create_funding_instructions_params.rb +46 -0
  132. data/lib/stripe/params/customer_create_params.rb +259 -0
  133. data/lib/stripe/params/customer_delete_discount_params.rb +6 -0
  134. data/lib/stripe/params/customer_delete_params.rb +6 -0
  135. data/lib/stripe/params/customer_fund_cash_balance_params.rb +22 -0
  136. data/lib/stripe/params/customer_funding_instructions_create_params.rb +46 -0
  137. data/lib/stripe/params/customer_list_params.rb +56 -0
  138. data/lib/stripe/params/customer_list_payment_methods_params.rb +35 -0
  139. data/lib/stripe/params/customer_payment_method_list_params.rb +35 -0
  140. data/lib/stripe/params/customer_payment_method_retrieve_params.rb +13 -0
  141. data/lib/stripe/params/customer_payment_source_create_params.rb +22 -0
  142. data/lib/stripe/params/customer_payment_source_delete_params.rb +13 -0
  143. data/lib/stripe/params/customer_payment_source_list_params.rb +25 -0
  144. data/lib/stripe/params/customer_payment_source_retrieve_params.rb +13 -0
  145. data/lib/stripe/params/customer_payment_source_update_params.rb +114 -0
  146. data/lib/stripe/params/customer_payment_source_verify_params.rb +16 -0
  147. data/lib/stripe/params/customer_retrieve_params.rb +13 -0
  148. data/lib/stripe/params/customer_retrieve_payment_method_params.rb +13 -0
  149. data/lib/stripe/params/customer_search_params.rb +22 -0
  150. data/lib/stripe/params/customer_session_create_params.rb +100 -0
  151. data/lib/stripe/params/customer_tax_id_create_params.rb +19 -0
  152. data/lib/stripe/params/customer_tax_id_delete_params.rb +6 -0
  153. data/lib/stripe/params/customer_tax_id_list_params.rb +22 -0
  154. data/lib/stripe/params/customer_tax_id_retrieve_params.rb +13 -0
  155. data/lib/stripe/params/customer_update_params.rb +243 -0
  156. data/lib/stripe/params/dispute_close_params.rb +13 -0
  157. data/lib/stripe/params/dispute_list_params.rb +56 -0
  158. data/lib/stripe/params/dispute_retrieve_params.rb +13 -0
  159. data/lib/stripe/params/dispute_update_params.rb +308 -0
  160. data/lib/stripe/params/entitlements/active_entitlement_list_params.rb +33 -0
  161. data/lib/stripe/params/entitlements/active_entitlement_retrieve_params.rb +15 -0
  162. data/lib/stripe/params/entitlements/feature_create_params.rb +24 -0
  163. data/lib/stripe/params/entitlements/feature_list_params.rb +37 -0
  164. data/lib/stripe/params/entitlements/feature_retrieve_params.rb +15 -0
  165. data/lib/stripe/params/entitlements/feature_update_params.rb +24 -0
  166. data/lib/stripe/params/ephemeral_key_create_params.rb +31 -0
  167. data/lib/stripe/params/ephemeral_key_delete_params.rb +13 -0
  168. data/lib/stripe/params/event_list_params.rb +60 -0
  169. data/lib/stripe/params/event_retrieve_params.rb +13 -0
  170. data/lib/stripe/params/exchange_rate_list_params.rb +22 -0
  171. data/lib/stripe/params/exchange_rate_retrieve_params.rb +13 -0
  172. data/lib/stripe/params/file_create_params.rb +36 -0
  173. data/lib/stripe/params/file_link_create_params.rb +22 -0
  174. data/lib/stripe/params/file_link_list_params.rb +56 -0
  175. data/lib/stripe/params/file_link_retrieve_params.rb +13 -0
  176. data/lib/stripe/params/file_link_update_params.rb +19 -0
  177. data/lib/stripe/params/file_list_params.rb +52 -0
  178. data/lib/stripe/params/file_retrieve_params.rb +13 -0
  179. data/lib/stripe/params/financial_connections/account_disconnect_params.rb +15 -0
  180. data/lib/stripe/params/financial_connections/account_list_owners_params.rb +33 -0
  181. data/lib/stripe/params/financial_connections/account_list_params.rb +48 -0
  182. data/lib/stripe/params/financial_connections/account_owner_list_params.rb +33 -0
  183. data/lib/stripe/params/financial_connections/account_refresh_account_params.rb +18 -0
  184. data/lib/stripe/params/financial_connections/account_refresh_params.rb +18 -0
  185. data/lib/stripe/params/financial_connections/account_retrieve_params.rb +15 -0
  186. data/lib/stripe/params/financial_connections/account_subscribe_params.rb +18 -0
  187. data/lib/stripe/params/financial_connections/account_unsubscribe_params.rb +18 -0
  188. data/lib/stripe/params/financial_connections/session_create_params.rb +65 -0
  189. data/lib/stripe/params/financial_connections/session_retrieve_params.rb +15 -0
  190. data/lib/stripe/params/financial_connections/transaction_list_params.rb +67 -0
  191. data/lib/stripe/params/financial_connections/transaction_retrieve_params.rb +15 -0
  192. data/lib/stripe/params/forwarding/request_create_params.rb +59 -0
  193. data/lib/stripe/params/forwarding/request_list_params.rb +44 -0
  194. data/lib/stripe/params/forwarding/request_retrieve_params.rb +15 -0
  195. data/lib/stripe/params/identity/verification_report_list_params.rb +62 -0
  196. data/lib/stripe/params/identity/verification_report_retrieve_params.rb +15 -0
  197. data/lib/stripe/params/identity/verification_session_cancel_params.rb +15 -0
  198. data/lib/stripe/params/identity/verification_session_create_params.rb +107 -0
  199. data/lib/stripe/params/identity/verification_session_list_params.rb +62 -0
  200. data/lib/stripe/params/identity/verification_session_redact_params.rb +15 -0
  201. data/lib/stripe/params/identity/verification_session_retrieve_params.rb +15 -0
  202. data/lib/stripe/params/identity/verification_session_update_params.rb +69 -0
  203. data/lib/stripe/params/invoice_add_lines_params.rb +231 -0
  204. data/lib/stripe/params/invoice_attach_payment_params.rb +16 -0
  205. data/lib/stripe/params/invoice_create_params.rb +589 -0
  206. data/lib/stripe/params/invoice_create_preview_params.rb +993 -0
  207. data/lib/stripe/params/invoice_delete_params.rb +6 -0
  208. data/lib/stripe/params/invoice_finalize_invoice_params.rb +16 -0
  209. data/lib/stripe/params/invoice_item_create_params.rb +145 -0
  210. data/lib/stripe/params/invoice_item_delete_params.rb +6 -0
  211. data/lib/stripe/params/invoice_item_list_params.rb +60 -0
  212. data/lib/stripe/params/invoice_item_retrieve_params.rb +13 -0
  213. data/lib/stripe/params/invoice_item_update_params.rb +129 -0
  214. data/lib/stripe/params/invoice_line_item_list_params.rb +22 -0
  215. data/lib/stripe/params/invoice_line_item_update_params.rb +217 -0
  216. data/lib/stripe/params/invoice_list_params.rb +86 -0
  217. data/lib/stripe/params/invoice_mark_uncollectible_params.rb +13 -0
  218. data/lib/stripe/params/invoice_pay_params.rb +41 -0
  219. data/lib/stripe/params/invoice_payment_list_params.rb +50 -0
  220. data/lib/stripe/params/invoice_payment_retrieve_params.rb +13 -0
  221. data/lib/stripe/params/invoice_remove_lines_params.rb +30 -0
  222. data/lib/stripe/params/invoice_rendering_template_archive_params.rb +13 -0
  223. data/lib/stripe/params/invoice_rendering_template_list_params.rb +25 -0
  224. data/lib/stripe/params/invoice_rendering_template_retrieve_params.rb +16 -0
  225. data/lib/stripe/params/invoice_rendering_template_unarchive_params.rb +13 -0
  226. data/lib/stripe/params/invoice_retrieve_params.rb +13 -0
  227. data/lib/stripe/params/invoice_search_params.rb +22 -0
  228. data/lib/stripe/params/invoice_send_invoice_params.rb +13 -0
  229. data/lib/stripe/params/invoice_update_lines_params.rb +231 -0
  230. data/lib/stripe/params/invoice_update_params.rb +557 -0
  231. data/lib/stripe/params/invoice_void_invoice_params.rb +13 -0
  232. data/lib/stripe/params/issuing/authorization_approve_params.rb +21 -0
  233. data/lib/stripe/params/issuing/authorization_capture_params.rb +265 -0
  234. data/lib/stripe/params/issuing/authorization_create_params.rb +357 -0
  235. data/lib/stripe/params/issuing/authorization_decline_params.rb +18 -0
  236. data/lib/stripe/params/issuing/authorization_expire_params.rb +15 -0
  237. data/lib/stripe/params/issuing/authorization_finalize_amount_params.rb +143 -0
  238. data/lib/stripe/params/issuing/authorization_increment_params.rb +21 -0
  239. data/lib/stripe/params/issuing/authorization_list_params.rb +62 -0
  240. data/lib/stripe/params/issuing/authorization_respond_params.rb +18 -0
  241. data/lib/stripe/params/issuing/authorization_retrieve_params.rb +15 -0
  242. data/lib/stripe/params/issuing/authorization_reverse_params.rb +18 -0
  243. data/lib/stripe/params/issuing/authorization_update_params.rb +18 -0
  244. data/lib/stripe/params/issuing/card_create_params.rb +213 -0
  245. data/lib/stripe/params/issuing/card_deliver_card_params.rb +15 -0
  246. data/lib/stripe/params/issuing/card_fail_card_params.rb +15 -0
  247. data/lib/stripe/params/issuing/card_list_params.rb +78 -0
  248. data/lib/stripe/params/issuing/card_retrieve_params.rb +15 -0
  249. data/lib/stripe/params/issuing/card_return_card_params.rb +15 -0
  250. data/lib/stripe/params/issuing/card_ship_card_params.rb +15 -0
  251. data/lib/stripe/params/issuing/card_submit_card_params.rb +15 -0
  252. data/lib/stripe/params/issuing/card_update_params.rb +181 -0
  253. data/lib/stripe/params/issuing/cardholder_create_params.rb +238 -0
  254. data/lib/stripe/params/issuing/cardholder_list_params.rb +66 -0
  255. data/lib/stripe/params/issuing/cardholder_retrieve_params.rb +15 -0
  256. data/lib/stripe/params/issuing/cardholder_update_params.rb +230 -0
  257. data/lib/stripe/params/issuing/dispute_create_params.rb +297 -0
  258. data/lib/stripe/params/issuing/dispute_list_params.rb +58 -0
  259. data/lib/stripe/params/issuing/dispute_retrieve_params.rb +15 -0
  260. data/lib/stripe/params/issuing/dispute_submit_params.rb +18 -0
  261. data/lib/stripe/params/issuing/dispute_update_params.rb +275 -0
  262. data/lib/stripe/params/issuing/personalization_design_activate_params.rb +15 -0
  263. data/lib/stripe/params/issuing/personalization_design_create_params.rb +75 -0
  264. data/lib/stripe/params/issuing/personalization_design_deactivate_params.rb +15 -0
  265. data/lib/stripe/params/issuing/personalization_design_list_params.rb +52 -0
  266. data/lib/stripe/params/issuing/personalization_design_reject_params.rb +29 -0
  267. data/lib/stripe/params/issuing/personalization_design_retrieve_params.rb +15 -0
  268. data/lib/stripe/params/issuing/personalization_design_update_params.rb +75 -0
  269. data/lib/stripe/params/issuing/physical_bundle_list_params.rb +37 -0
  270. data/lib/stripe/params/issuing/physical_bundle_retrieve_params.rb +15 -0
  271. data/lib/stripe/params/issuing/token_list_params.rb +58 -0
  272. data/lib/stripe/params/issuing/token_retrieve_params.rb +15 -0
  273. data/lib/stripe/params/issuing/token_update_params.rb +18 -0
  274. data/lib/stripe/params/issuing/transaction_create_force_capture_params.rb +316 -0
  275. data/lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb +316 -0
  276. data/lib/stripe/params/issuing/transaction_list_params.rb +62 -0
  277. data/lib/stripe/params/issuing/transaction_refund_params.rb +18 -0
  278. data/lib/stripe/params/issuing/transaction_retrieve_params.rb +15 -0
  279. data/lib/stripe/params/issuing/transaction_update_params.rb +18 -0
  280. data/lib/stripe/params/mandate_retrieve_params.rb +13 -0
  281. data/lib/stripe/params/payment_intent_apply_customer_balance_params.rb +23 -0
  282. data/lib/stripe/params/payment_intent_cancel_params.rb +16 -0
  283. data/lib/stripe/params/payment_intent_capture_params.rb +54 -0
  284. data/lib/stripe/params/payment_intent_confirm_params.rb +2379 -0
  285. data/lib/stripe/params/payment_intent_create_params.rb +2480 -0
  286. data/lib/stripe/params/payment_intent_increment_authorization_params.rb +48 -0
  287. data/lib/stripe/params/payment_intent_list_params.rb +52 -0
  288. data/lib/stripe/params/payment_intent_retrieve_params.rb +16 -0
  289. data/lib/stripe/params/payment_intent_search_params.rb +22 -0
  290. data/lib/stripe/params/payment_intent_update_params.rb +2353 -0
  291. data/lib/stripe/params/payment_intent_verify_microdeposits_params.rb +19 -0
  292. data/lib/stripe/params/payment_link_create_params.rb +776 -0
  293. data/lib/stripe/params/payment_link_line_item_list_params.rb +22 -0
  294. data/lib/stripe/params/payment_link_list_line_items_params.rb +22 -0
  295. data/lib/stripe/params/payment_link_list_params.rb +25 -0
  296. data/lib/stripe/params/payment_link_retrieve_params.rb +13 -0
  297. data/lib/stripe/params/payment_link_update_params.rb +564 -0
  298. data/lib/stripe/params/payment_method_attach_params.rb +16 -0
  299. data/lib/stripe/params/payment_method_configuration_create_params.rb +1135 -0
  300. data/lib/stripe/params/payment_method_configuration_list_params.rb +31 -0
  301. data/lib/stripe/params/payment_method_configuration_retrieve_params.rb +13 -0
  302. data/lib/stripe/params/payment_method_configuration_update_params.rb +1135 -0
  303. data/lib/stripe/params/payment_method_create_params.rb +583 -0
  304. data/lib/stripe/params/payment_method_detach_params.rb +13 -0
  305. data/lib/stripe/params/payment_method_domain_create_params.rb +19 -0
  306. data/lib/stripe/params/payment_method_domain_list_params.rb +35 -0
  307. data/lib/stripe/params/payment_method_domain_retrieve_params.rb +13 -0
  308. data/lib/stripe/params/payment_method_domain_update_params.rb +16 -0
  309. data/lib/stripe/params/payment_method_domain_validate_params.rb +13 -0
  310. data/lib/stripe/params/payment_method_list_params.rb +35 -0
  311. data/lib/stripe/params/payment_method_retrieve_params.rb +13 -0
  312. data/lib/stripe/params/payment_method_update_params.rb +120 -0
  313. data/lib/stripe/params/payout_cancel_params.rb +13 -0
  314. data/lib/stripe/params/payout_create_params.rb +51 -0
  315. data/lib/stripe/params/payout_list_params.rb +78 -0
  316. data/lib/stripe/params/payout_retrieve_params.rb +13 -0
  317. data/lib/stripe/params/payout_reverse_params.rb +16 -0
  318. data/lib/stripe/params/payout_update_params.rb +16 -0
  319. data/lib/stripe/params/plan_create_params.rb +158 -0
  320. data/lib/stripe/params/plan_delete_params.rb +6 -0
  321. data/lib/stripe/params/plan_list_params.rb +56 -0
  322. data/lib/stripe/params/plan_retrieve_params.rb +13 -0
  323. data/lib/stripe/params/plan_update_params.rb +35 -0
  324. data/lib/stripe/params/price_create_params.rb +278 -0
  325. data/lib/stripe/params/price_list_params.rb +87 -0
  326. data/lib/stripe/params/price_retrieve_params.rb +13 -0
  327. data/lib/stripe/params/price_search_params.rb +22 -0
  328. data/lib/stripe/params/price_update_params.rb +113 -0
  329. data/lib/stripe/params/product_create_params.rb +243 -0
  330. data/lib/stripe/params/product_delete_params.rb +6 -0
  331. data/lib/stripe/params/product_feature_create_params.rb +16 -0
  332. data/lib/stripe/params/product_feature_delete_params.rb +6 -0
  333. data/lib/stripe/params/product_feature_list_params.rb +22 -0
  334. data/lib/stripe/params/product_feature_retrieve_params.rb +13 -0
  335. data/lib/stripe/params/product_list_params.rb +68 -0
  336. data/lib/stripe/params/product_retrieve_params.rb +13 -0
  337. data/lib/stripe/params/product_search_params.rb +22 -0
  338. data/lib/stripe/params/product_update_params.rb +96 -0
  339. data/lib/stripe/params/promotion_code_create_params.rb +91 -0
  340. data/lib/stripe/params/promotion_code_list_params.rb +64 -0
  341. data/lib/stripe/params/promotion_code_retrieve_params.rb +13 -0
  342. data/lib/stripe/params/promotion_code_update_params.rb +38 -0
  343. data/lib/stripe/params/quote_accept_params.rb +13 -0
  344. data/lib/stripe/params/quote_cancel_params.rb +13 -0
  345. data/lib/stripe/params/quote_computed_upfront_line_items_list_params.rb +22 -0
  346. data/lib/stripe/params/quote_create_params.rb +301 -0
  347. data/lib/stripe/params/quote_finalize_quote_params.rb +16 -0
  348. data/lib/stripe/params/quote_line_item_list_params.rb +22 -0
  349. data/lib/stripe/params/quote_list_computed_upfront_line_items_params.rb +22 -0
  350. data/lib/stripe/params/quote_list_line_items_params.rb +22 -0
  351. data/lib/stripe/params/quote_list_params.rb +39 -0
  352. data/lib/stripe/params/quote_pdf_params.rb +13 -0
  353. data/lib/stripe/params/quote_retrieve_params.rb +13 -0
  354. data/lib/stripe/params/quote_update_params.rb +263 -0
  355. data/lib/stripe/params/radar/early_fraud_warning_list_params.rb +58 -0
  356. data/lib/stripe/params/radar/early_fraud_warning_retrieve_params.rb +15 -0
  357. data/lib/stripe/params/radar/value_list_create_params.rb +27 -0
  358. data/lib/stripe/params/radar/value_list_delete_params.rb +8 -0
  359. data/lib/stripe/params/radar/value_list_item_create_params.rb +21 -0
  360. data/lib/stripe/params/radar/value_list_item_delete_params.rb +8 -0
  361. data/lib/stripe/params/radar/value_list_item_list_params.rb +58 -0
  362. data/lib/stripe/params/radar/value_list_item_retrieve_params.rb +15 -0
  363. data/lib/stripe/params/radar/value_list_list_params.rb +58 -0
  364. data/lib/stripe/params/radar/value_list_retrieve_params.rb +15 -0
  365. data/lib/stripe/params/radar/value_list_update_params.rb +24 -0
  366. data/lib/stripe/params/refund_cancel_params.rb +13 -0
  367. data/lib/stripe/params/refund_create_params.rb +59 -0
  368. data/lib/stripe/params/refund_expire_params.rb +13 -0
  369. data/lib/stripe/params/refund_list_params.rb +56 -0
  370. data/lib/stripe/params/refund_retrieve_params.rb +13 -0
  371. data/lib/stripe/params/refund_update_params.rb +16 -0
  372. data/lib/stripe/params/reporting/report_run_create_params.rb +59 -0
  373. data/lib/stripe/params/reporting/report_run_list_params.rb +44 -0
  374. data/lib/stripe/params/reporting/report_run_retrieve_params.rb +15 -0
  375. data/lib/stripe/params/reporting/report_type_list_params.rb +15 -0
  376. data/lib/stripe/params/reporting/report_type_retrieve_params.rb +15 -0
  377. data/lib/stripe/params/review_approve_params.rb +13 -0
  378. data/lib/stripe/params/review_list_params.rb +42 -0
  379. data/lib/stripe/params/review_retrieve_params.rb +13 -0
  380. data/lib/stripe/params/setup_attempt_list_params.rb +55 -0
  381. data/lib/stripe/params/setup_intent_cancel_params.rb +16 -0
  382. data/lib/stripe/params/setup_intent_confirm_params.rb +1050 -0
  383. data/lib/stripe/params/setup_intent_create_params.rb +1130 -0
  384. data/lib/stripe/params/setup_intent_list_params.rb +62 -0
  385. data/lib/stripe/params/setup_intent_retrieve_params.rb +16 -0
  386. data/lib/stripe/params/setup_intent_update_params.rb +1025 -0
  387. data/lib/stripe/params/setup_intent_verify_microdeposits_params.rb +19 -0
  388. data/lib/stripe/params/shipping_rate_create_params.rb +103 -0
  389. data/lib/stripe/params/shipping_rate_list_params.rb +56 -0
  390. data/lib/stripe/params/shipping_rate_retrieve_params.rb +13 -0
  391. data/lib/stripe/params/shipping_rate_update_params.rb +44 -0
  392. data/lib/stripe/params/sigma/scheduled_query_run_list_params.rb +24 -0
  393. data/lib/stripe/params/sigma/scheduled_query_run_retrieve_params.rb +15 -0
  394. data/lib/stripe/params/source_create_params.rb +317 -0
  395. data/lib/stripe/params/source_detach_params.rb +13 -0
  396. data/lib/stripe/params/source_retrieve_params.rb +16 -0
  397. data/lib/stripe/params/source_transaction_list_params.rb +22 -0
  398. data/lib/stripe/params/source_update_params.rb +259 -0
  399. data/lib/stripe/params/source_verify_params.rb +16 -0
  400. data/lib/stripe/params/subscription_cancel_params.rb +33 -0
  401. data/lib/stripe/params/subscription_create_params.rb +704 -0
  402. data/lib/stripe/params/subscription_delete_discount_params.rb +6 -0
  403. data/lib/stripe/params/subscription_item_create_params.rb +134 -0
  404. data/lib/stripe/params/subscription_item_delete_params.rb +19 -0
  405. data/lib/stripe/params/subscription_item_list_params.rb +31 -0
  406. data/lib/stripe/params/subscription_item_retrieve_params.rb +13 -0
  407. data/lib/stripe/params/subscription_item_update_params.rb +134 -0
  408. data/lib/stripe/params/subscription_list_params.rb +129 -0
  409. data/lib/stripe/params/subscription_migrate_params.rb +35 -0
  410. data/lib/stripe/params/subscription_resume_params.rb +27 -0
  411. data/lib/stripe/params/subscription_retrieve_params.rb +13 -0
  412. data/lib/stripe/params/subscription_schedule_cancel_params.rb +19 -0
  413. data/lib/stripe/params/subscription_schedule_create_params.rb +590 -0
  414. data/lib/stripe/params/subscription_schedule_list_params.rb +122 -0
  415. data/lib/stripe/params/subscription_schedule_release_params.rb +16 -0
  416. data/lib/stripe/params/subscription_schedule_retrieve_params.rb +13 -0
  417. data/lib/stripe/params/subscription_schedule_update_params.rb +562 -0
  418. data/lib/stripe/params/subscription_search_params.rb +22 -0
  419. data/lib/stripe/params/subscription_update_params.rb +683 -0
  420. data/lib/stripe/params/tax/calculation_create_params.rb +206 -0
  421. data/lib/stripe/params/tax/calculation_line_item_list_params.rb +24 -0
  422. data/lib/stripe/params/tax/calculation_list_line_items_params.rb +24 -0
  423. data/lib/stripe/params/tax/calculation_retrieve_params.rb +15 -0
  424. data/lib/stripe/params/tax/registration_create_params.rb +2018 -0
  425. data/lib/stripe/params/tax/registration_list_params.rb +27 -0
  426. data/lib/stripe/params/tax/registration_retrieve_params.rb +15 -0
  427. data/lib/stripe/params/tax/registration_update_params.rb +21 -0
  428. data/lib/stripe/params/tax/settings_retrieve_params.rb +15 -0
  429. data/lib/stripe/params/tax/settings_update_params.rb +71 -0
  430. data/lib/stripe/params/tax/transaction_create_from_calculation_params.rb +27 -0
  431. data/lib/stripe/params/tax/transaction_create_reversal_params.rb +87 -0
  432. data/lib/stripe/params/tax/transaction_line_item_list_params.rb +24 -0
  433. data/lib/stripe/params/tax/transaction_list_line_items_params.rb +24 -0
  434. data/lib/stripe/params/tax/transaction_retrieve_params.rb +15 -0
  435. data/lib/stripe/params/tax_code_list_params.rb +22 -0
  436. data/lib/stripe/params/tax_code_retrieve_params.rb +13 -0
  437. data/lib/stripe/params/tax_id_create_params.rb +36 -0
  438. data/lib/stripe/params/tax_id_delete_params.rb +6 -0
  439. data/lib/stripe/params/tax_id_list_params.rb +39 -0
  440. data/lib/stripe/params/tax_id_retrieve_params.rb +13 -0
  441. data/lib/stripe/params/tax_rate_create_params.rb +55 -0
  442. data/lib/stripe/params/tax_rate_list_params.rb +56 -0
  443. data/lib/stripe/params/tax_rate_retrieve_params.rb +13 -0
  444. data/lib/stripe/params/tax_rate_update_params.rb +47 -0
  445. data/lib/stripe/params/terminal/configuration_create_params.rb +593 -0
  446. data/lib/stripe/params/terminal/configuration_delete_params.rb +8 -0
  447. data/lib/stripe/params/terminal/configuration_list_params.rb +33 -0
  448. data/lib/stripe/params/terminal/configuration_retrieve_params.rb +15 -0
  449. data/lib/stripe/params/terminal/configuration_update_params.rb +593 -0
  450. data/lib/stripe/params/terminal/connection_token_create_params.rb +18 -0
  451. data/lib/stripe/params/terminal/location_create_params.rb +153 -0
  452. data/lib/stripe/params/terminal/location_delete_params.rb +8 -0
  453. data/lib/stripe/params/terminal/location_list_params.rb +24 -0
  454. data/lib/stripe/params/terminal/location_retrieve_params.rb +15 -0
  455. data/lib/stripe/params/terminal/location_update_params.rb +153 -0
  456. data/lib/stripe/params/terminal/reader_cancel_action_params.rb +15 -0
  457. data/lib/stripe/params/terminal/reader_collect_inputs_params.rb +96 -0
  458. data/lib/stripe/params/terminal/reader_collect_payment_method_params.rb +51 -0
  459. data/lib/stripe/params/terminal/reader_confirm_payment_intent_params.rb +29 -0
  460. data/lib/stripe/params/terminal/reader_create_params.rb +27 -0
  461. data/lib/stripe/params/terminal/reader_delete_params.rb +8 -0
  462. data/lib/stripe/params/terminal/reader_list_params.rb +45 -0
  463. data/lib/stripe/params/terminal/reader_present_payment_method_params.rb +72 -0
  464. data/lib/stripe/params/terminal/reader_process_payment_intent_params.rb +55 -0
  465. data/lib/stripe/params/terminal/reader_process_setup_intent_params.rb +32 -0
  466. data/lib/stripe/params/terminal/reader_refund_payment_params.rb +53 -0
  467. data/lib/stripe/params/terminal/reader_retrieve_params.rb +15 -0
  468. data/lib/stripe/params/terminal/reader_set_reader_display_params.rb +52 -0
  469. data/lib/stripe/params/terminal/reader_succeed_input_collection_params.rb +18 -0
  470. data/lib/stripe/params/terminal/reader_timeout_input_collection_params.rb +15 -0
  471. data/lib/stripe/params/terminal/reader_update_params.rb +21 -0
  472. data/lib/stripe/params/test_helpers/confirmation_token_create_params.rb +652 -0
  473. data/lib/stripe/params/test_helpers/customer_fund_cash_balance_params.rb +24 -0
  474. data/lib/stripe/params/test_helpers/issuing/authorization_capture_params.rb +267 -0
  475. data/lib/stripe/params/test_helpers/issuing/authorization_create_params.rb +359 -0
  476. data/lib/stripe/params/test_helpers/issuing/authorization_expire_params.rb +17 -0
  477. data/lib/stripe/params/test_helpers/issuing/authorization_finalize_amount_params.rb +145 -0
  478. data/lib/stripe/params/test_helpers/issuing/authorization_increment_params.rb +23 -0
  479. data/lib/stripe/params/test_helpers/issuing/authorization_respond_params.rb +20 -0
  480. data/lib/stripe/params/test_helpers/issuing/authorization_reverse_params.rb +20 -0
  481. data/lib/stripe/params/test_helpers/issuing/card_deliver_card_params.rb +17 -0
  482. data/lib/stripe/params/test_helpers/issuing/card_fail_card_params.rb +17 -0
  483. data/lib/stripe/params/test_helpers/issuing/card_return_card_params.rb +17 -0
  484. data/lib/stripe/params/test_helpers/issuing/card_ship_card_params.rb +17 -0
  485. data/lib/stripe/params/test_helpers/issuing/card_submit_card_params.rb +17 -0
  486. data/lib/stripe/params/test_helpers/issuing/personalization_design_activate_params.rb +17 -0
  487. data/lib/stripe/params/test_helpers/issuing/personalization_design_deactivate_params.rb +17 -0
  488. data/lib/stripe/params/test_helpers/issuing/personalization_design_reject_params.rb +31 -0
  489. data/lib/stripe/params/test_helpers/issuing/transaction_create_force_capture_params.rb +318 -0
  490. data/lib/stripe/params/test_helpers/issuing/transaction_create_unlinked_refund_params.rb +318 -0
  491. data/lib/stripe/params/test_helpers/issuing/transaction_refund_params.rb +20 -0
  492. data/lib/stripe/params/test_helpers/refund_expire_params.rb +15 -0
  493. data/lib/stripe/params/test_helpers/terminal/reader_present_payment_method_params.rb +74 -0
  494. data/lib/stripe/params/test_helpers/terminal/reader_succeed_input_collection_params.rb +20 -0
  495. data/lib/stripe/params/test_helpers/terminal/reader_timeout_input_collection_params.rb +17 -0
  496. data/lib/stripe/params/test_helpers/test_clock_advance_params.rb +18 -0
  497. data/lib/stripe/params/test_helpers/test_clock_create_params.rb +21 -0
  498. data/lib/stripe/params/test_helpers/test_clock_delete_params.rb +8 -0
  499. data/lib/stripe/params/test_helpers/test_clock_list_params.rb +24 -0
  500. data/lib/stripe/params/test_helpers/test_clock_retrieve_params.rb +15 -0
  501. data/lib/stripe/params/test_helpers/treasury/inbound_transfer_fail_params.rb +28 -0
  502. data/lib/stripe/params/test_helpers/treasury/inbound_transfer_return_inbound_transfer_params.rb +17 -0
  503. data/lib/stripe/params/test_helpers/treasury/inbound_transfer_succeed_params.rb +17 -0
  504. data/lib/stripe/params/test_helpers/treasury/outbound_payment_fail_params.rb +17 -0
  505. data/lib/stripe/params/test_helpers/treasury/outbound_payment_post_params.rb +17 -0
  506. data/lib/stripe/params/test_helpers/treasury/outbound_payment_return_outbound_payment_params.rb +28 -0
  507. data/lib/stripe/params/test_helpers/treasury/outbound_payment_update_params.rb +57 -0
  508. data/lib/stripe/params/test_helpers/treasury/outbound_transfer_fail_params.rb +17 -0
  509. data/lib/stripe/params/test_helpers/treasury/outbound_transfer_post_params.rb +17 -0
  510. data/lib/stripe/params/test_helpers/treasury/outbound_transfer_return_outbound_transfer_params.rb +28 -0
  511. data/lib/stripe/params/test_helpers/treasury/outbound_transfer_update_params.rb +57 -0
  512. data/lib/stripe/params/test_helpers/treasury/received_credit_create_params.rb +68 -0
  513. data/lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb +68 -0
  514. data/lib/stripe/params/token_create_params.rb +1191 -0
  515. data/lib/stripe/params/token_retrieve_params.rb +13 -0
  516. data/lib/stripe/params/topup_cancel_params.rb +13 -0
  517. data/lib/stripe/params/topup_create_params.rb +43 -0
  518. data/lib/stripe/params/topup_list_params.rb +74 -0
  519. data/lib/stripe/params/topup_retrieve_params.rb +13 -0
  520. data/lib/stripe/params/topup_update_params.rb +19 -0
  521. data/lib/stripe/params/transfer_create_params.rb +47 -0
  522. data/lib/stripe/params/transfer_list_params.rb +56 -0
  523. data/lib/stripe/params/transfer_retrieve_params.rb +13 -0
  524. data/lib/stripe/params/transfer_reversal_create_params.rb +31 -0
  525. data/lib/stripe/params/transfer_reversal_list_params.rb +22 -0
  526. data/lib/stripe/params/transfer_reversal_retrieve_params.rb +13 -0
  527. data/lib/stripe/params/transfer_reversal_update_params.rb +16 -0
  528. data/lib/stripe/params/transfer_update_params.rb +19 -0
  529. data/lib/stripe/params/treasury/credit_reversal_create_params.rb +21 -0
  530. data/lib/stripe/params/treasury/credit_reversal_list_params.rb +41 -0
  531. data/lib/stripe/params/treasury/credit_reversal_retrieve_params.rb +15 -0
  532. data/lib/stripe/params/treasury/debit_reversal_create_params.rb +21 -0
  533. data/lib/stripe/params/treasury/debit_reversal_list_params.rb +45 -0
  534. data/lib/stripe/params/treasury/debit_reversal_retrieve_params.rb +15 -0
  535. data/lib/stripe/params/treasury/financial_account_close_params.rb +32 -0
  536. data/lib/stripe/params/treasury/financial_account_create_params.rb +201 -0
  537. data/lib/stripe/params/treasury/financial_account_features_retrieve_params.rb +15 -0
  538. data/lib/stripe/params/treasury/financial_account_features_update_params.rb +163 -0
  539. data/lib/stripe/params/treasury/financial_account_list_params.rb +54 -0
  540. data/lib/stripe/params/treasury/financial_account_retrieve_features_params.rb +15 -0
  541. data/lib/stripe/params/treasury/financial_account_retrieve_params.rb +15 -0
  542. data/lib/stripe/params/treasury/financial_account_update_features_params.rb +163 -0
  543. data/lib/stripe/params/treasury/financial_account_update_params.rb +216 -0
  544. data/lib/stripe/params/treasury/inbound_transfer_cancel_params.rb +15 -0
  545. data/lib/stripe/params/treasury/inbound_transfer_create_params.rb +45 -0
  546. data/lib/stripe/params/treasury/inbound_transfer_fail_params.rb +26 -0
  547. data/lib/stripe/params/treasury/inbound_transfer_list_params.rb +37 -0
  548. data/lib/stripe/params/treasury/inbound_transfer_retrieve_params.rb +15 -0
  549. data/lib/stripe/params/treasury/inbound_transfer_return_inbound_transfer_params.rb +15 -0
  550. data/lib/stripe/params/treasury/inbound_transfer_succeed_params.rb +15 -0
  551. data/lib/stripe/params/treasury/outbound_payment_cancel_params.rb +15 -0
  552. data/lib/stripe/params/treasury/outbound_payment_create_params.rb +190 -0
  553. data/lib/stripe/params/treasury/outbound_payment_fail_params.rb +15 -0
  554. data/lib/stripe/params/treasury/outbound_payment_list_params.rb +62 -0
  555. data/lib/stripe/params/treasury/outbound_payment_post_params.rb +15 -0
  556. data/lib/stripe/params/treasury/outbound_payment_retrieve_params.rb +15 -0
  557. data/lib/stripe/params/treasury/outbound_payment_return_outbound_payment_params.rb +26 -0
  558. data/lib/stripe/params/treasury/outbound_payment_update_params.rb +55 -0
  559. data/lib/stripe/params/treasury/outbound_transfer_cancel_params.rb +15 -0
  560. data/lib/stripe/params/treasury/outbound_transfer_create_params.rb +81 -0
  561. data/lib/stripe/params/treasury/outbound_transfer_fail_params.rb +15 -0
  562. data/lib/stripe/params/treasury/outbound_transfer_list_params.rb +37 -0
  563. data/lib/stripe/params/treasury/outbound_transfer_post_params.rb +15 -0
  564. data/lib/stripe/params/treasury/outbound_transfer_retrieve_params.rb +15 -0
  565. data/lib/stripe/params/treasury/outbound_transfer_return_outbound_transfer_params.rb +26 -0
  566. data/lib/stripe/params/treasury/outbound_transfer_update_params.rb +55 -0
  567. data/lib/stripe/params/treasury/received_credit_create_params.rb +66 -0
  568. data/lib/stripe/params/treasury/received_credit_list_params.rb +49 -0
  569. data/lib/stripe/params/treasury/received_credit_retrieve_params.rb +15 -0
  570. data/lib/stripe/params/treasury/received_debit_create_params.rb +66 -0
  571. data/lib/stripe/params/treasury/received_debit_list_params.rb +37 -0
  572. data/lib/stripe/params/treasury/received_debit_retrieve_params.rb +15 -0
  573. data/lib/stripe/params/treasury/transaction_entry_list_params.rb +84 -0
  574. data/lib/stripe/params/treasury/transaction_entry_retrieve_params.rb +15 -0
  575. data/lib/stripe/params/treasury/transaction_list_params.rb +92 -0
  576. data/lib/stripe/params/treasury/transaction_retrieve_params.rb +15 -0
  577. data/lib/stripe/params/v2/billing/meter_event_adjustment_create_params.rb +31 -0
  578. data/lib/stripe/params/v2/billing/meter_event_create_params.rb +33 -0
  579. data/lib/stripe/params/v2/billing/meter_event_session_create_params.rb +10 -0
  580. data/lib/stripe/params/v2/billing/meter_event_stream_create_params.rb +41 -0
  581. data/lib/stripe/params/v2/core/event_destination_create_params.rb +79 -0
  582. data/lib/stripe/params/v2/core/event_destination_delete_params.rb +10 -0
  583. data/lib/stripe/params/v2/core/event_destination_disable_params.rb +10 -0
  584. data/lib/stripe/params/v2/core/event_destination_enable_params.rb +10 -0
  585. data/lib/stripe/params/v2/core/event_destination_list_params.rb +20 -0
  586. data/lib/stripe/params/v2/core/event_destination_ping_params.rb +10 -0
  587. data/lib/stripe/params/v2/core/event_destination_retrieve_params.rb +17 -0
  588. data/lib/stripe/params/v2/core/event_destination_update_params.rb +47 -0
  589. data/lib/stripe/params/v2/core/event_list_params.rb +22 -0
  590. data/lib/stripe/params/v2/core/event_retrieve_params.rb +10 -0
  591. data/lib/stripe/params/webhook_endpoint_create_params.rb +39 -0
  592. data/lib/stripe/params/webhook_endpoint_delete_params.rb +6 -0
  593. data/lib/stripe/params/webhook_endpoint_list_params.rb +22 -0
  594. data/lib/stripe/params/webhook_endpoint_retrieve_params.rb +13 -0
  595. data/lib/stripe/params/webhook_endpoint_update_params.rb +35 -0
  596. data/lib/stripe/params.rb +588 -0
  597. data/lib/stripe/request_options.rb +14 -5
  598. data/lib/stripe/resources/account.rb +448 -4265
  599. data/lib/stripe/resources/account_link.rb +8 -47
  600. data/lib/stripe/resources/account_session.rb +340 -657
  601. data/lib/stripe/resources/apple_pay_domain.rb +8 -40
  602. data/lib/stripe/resources/application.rb +8 -0
  603. data/lib/stripe/resources/application_fee.rb +12 -44
  604. data/lib/stripe/resources/application_fee_refund.rb +8 -0
  605. data/lib/stripe/resources/apps/secret.rb +12 -112
  606. data/lib/stripe/resources/balance.rb +159 -0
  607. data/lib/stripe/resources/balance_settings.rb +92 -0
  608. data/lib/stripe/resources/balance_transaction.rb +12 -56
  609. data/lib/stripe/resources/bank_account.rb +40 -0
  610. data/lib/stripe/resources/billing/alert.rb +20 -100
  611. data/lib/stripe/resources/billing/alert_triggered.rb +8 -0
  612. data/lib/stripe/resources/billing/credit_balance_summary.rb +48 -0
  613. data/lib/stripe/resources/billing/credit_balance_transaction.rb +73 -29
  614. data/lib/stripe/resources/billing/credit_grant.rb +42 -151
  615. data/lib/stripe/resources/billing/meter.rb +40 -116
  616. data/lib/stripe/resources/billing/meter_event.rb +8 -20
  617. data/lib/stripe/resources/billing/meter_event_adjustment.rb +12 -22
  618. data/lib/stripe/resources/billing/meter_event_summary.rb +8 -0
  619. data/lib/stripe/resources/billing_portal/configuration.rb +120 -473
  620. data/lib/stripe/resources/billing_portal/session.rb +98 -170
  621. data/lib/stripe/resources/capability.rb +56 -0
  622. data/lib/stripe/resources/card.rb +17 -1
  623. data/lib/stripe/resources/cash_balance.rb +16 -0
  624. data/lib/stripe/resources/charge.rb +958 -414
  625. data/lib/stripe/resources/checkout/session.rb +1039 -2501
  626. data/lib/stripe/resources/climate/order.rb +28 -89
  627. data/lib/stripe/resources/climate/product.rb +13 -15
  628. data/lib/stripe/resources/climate/supplier.rb +13 -15
  629. data/lib/stripe/resources/confirmation_token.rb +895 -683
  630. data/lib/stripe/resources/connect_collection_transfer.rb +8 -0
  631. data/lib/stripe/resources/country_spec.rb +29 -15
  632. data/lib/stripe/resources/coupon.rb +19 -137
  633. data/lib/stripe/resources/credit_note.rb +66 -504
  634. data/lib/stripe/resources/credit_note_line_item.rb +44 -0
  635. data/lib/stripe/resources/customer.rb +81 -675
  636. data/lib/stripe/resources/customer_balance_transaction.rb +8 -0
  637. data/lib/stripe/resources/customer_cash_balance_transaction.rb +108 -0
  638. data/lib/stripe/resources/customer_session.rb +49 -93
  639. data/lib/stripe/resources/discount.rb +24 -4
  640. data/lib/stripe/resources/dispute.rb +159 -365
  641. data/lib/stripe/resources/entitlements/active_entitlement.rb +8 -26
  642. data/lib/stripe/resources/entitlements/active_entitlement_summary.rb +8 -0
  643. data/lib/stripe/resources/entitlements/feature.rb +8 -66
  644. data/lib/stripe/resources/ephemeral_key.rb +8 -8
  645. data/lib/stripe/resources/event.rb +20 -52
  646. data/lib/stripe/resources/exchange_rate.rb +18 -17
  647. data/lib/stripe/resources/file.rb +8 -79
  648. data/lib/stripe/resources/file_link.rb +8 -84
  649. data/lib/stripe/resources/financial_connections/account.rb +66 -110
  650. data/lib/stripe/resources/financial_connections/account_owner.rb +8 -0
  651. data/lib/stripe/resources/financial_connections/account_ownership.rb +8 -0
  652. data/lib/stripe/resources/financial_connections/session.rb +20 -55
  653. data/lib/stripe/resources/financial_connections/transaction.rb +12 -57
  654. data/lib/stripe/resources/forwarding/request.rb +48 -93
  655. data/lib/stripe/resources/funding_instructions.rb +217 -24
  656. data/lib/stripe/resources/identity/verification_report.rb +165 -56
  657. data/lib/stripe/resources/identity/verification_session.rb +124 -237
  658. data/lib/stripe/resources/invoice.rb +489 -2882
  659. data/lib/stripe/resources/invoice_item.rb +69 -309
  660. data/lib/stripe/resources/invoice_line_item.rb +126 -199
  661. data/lib/stripe/resources/invoice_payment.rb +20 -42
  662. data/lib/stripe/resources/invoice_rendering_template.rb +8 -38
  663. data/lib/stripe/resources/issuing/authorization.rb +173 -836
  664. data/lib/stripe/resources/issuing/card.rb +98 -499
  665. data/lib/stripe/resources/issuing/cardholder.rb +108 -514
  666. data/lib/stripe/resources/issuing/dispute.rb +93 -620
  667. data/lib/stripe/resources/issuing/personalization_design.rb +32 -221
  668. data/lib/stripe/resources/issuing/physical_bundle.rb +13 -28
  669. data/lib/stripe/resources/issuing/token.rb +57 -60
  670. data/lib/stripe/resources/issuing/transaction.rb +147 -696
  671. data/lib/stripe/resources/line_item.rb +24 -0
  672. data/lib/stripe/resources/login_link.rb +8 -0
  673. data/lib/stripe/resources/mandate.rb +225 -12
  674. data/lib/stripe/resources/payment_intent.rb +1129 -7346
  675. data/lib/stripe/resources/payment_link.rb +333 -1357
  676. data/lib/stripe/resources/payment_method.rb +807 -784
  677. data/lib/stripe/resources/payment_method_configuration.rb +940 -2311
  678. data/lib/stripe/resources/payment_method_domain.rb +107 -63
  679. data/lib/stripe/resources/payout.rb +12 -150
  680. data/lib/stripe/resources/person.rb +184 -4
  681. data/lib/stripe/resources/plan.rb +20 -235
  682. data/lib/stripe/resources/price.rb +66 -480
  683. data/lib/stripe/resources/product.rb +23 -411
  684. data/lib/stripe/resources/product_feature.rb +8 -0
  685. data/lib/stripe/resources/promotion_code.rb +40 -172
  686. data/lib/stripe/resources/quote.rb +219 -651
  687. data/lib/stripe/resources/radar/early_fraud_warning.rb +8 -51
  688. data/lib/stripe/resources/radar/value_list.rb +8 -92
  689. data/lib/stripe/resources/radar/value_list_item.rb +8 -68
  690. data/lib/stripe/resources/refund.rb +367 -152
  691. data/lib/stripe/resources/reporting/report_run.rb +12 -93
  692. data/lib/stripe/resources/reporting/report_type.rb +8 -8
  693. data/lib/stripe/resources/reserve_transaction.rb +8 -0
  694. data/lib/stripe/resources/reversal.rb +8 -0
  695. data/lib/stripe/resources/review.rb +20 -43
  696. data/lib/stripe/resources/setup_attempt.rb +286 -65
  697. data/lib/stripe/resources/setup_intent.rb +336 -3359
  698. data/lib/stripe/resources/shipping_rate.rb +44 -187
  699. data/lib/stripe/resources/sigma/scheduled_query_run.rb +13 -15
  700. data/lib/stripe/resources/source.rb +268 -583
  701. data/lib/stripe/resources/source_mandate_notification.rb +32 -0
  702. data/lib/stripe/resources/source_transaction.rb +54 -0
  703. data/lib/stripe/resources/subscription.rb +272 -1581
  704. data/lib/stripe/resources/subscription_item.rb +12 -298
  705. data/lib/stripe/resources/subscription_schedule.rb +236 -1282
  706. data/lib/stripe/resources/tax/calculation.rb +111 -220
  707. data/lib/stripe/resources/tax/calculation_line_item.rb +32 -0
  708. data/lib/stripe/resources/tax/registration.rb +1274 -2096
  709. data/lib/stripe/resources/tax/settings.rb +61 -64
  710. data/lib/stripe/resources/tax/transaction.rb +95 -122
  711. data/lib/stripe/resources/tax/transaction_line_item.rb +16 -0
  712. data/lib/stripe/resources/tax_code.rb +8 -17
  713. data/lib/stripe/resources/tax_deducted_at_source.rb +8 -0
  714. data/lib/stripe/resources/tax_id.rb +20 -65
  715. data/lib/stripe/resources/tax_rate.rb +12 -142
  716. data/lib/stripe/resources/terminal/configuration.rb +302 -1173
  717. data/lib/stripe/resources/terminal/connection_token.rb +8 -11
  718. data/lib/stripe/resources/terminal/location.rb +72 -126
  719. data/lib/stripe/resources/terminal/reader.rb +237 -501
  720. data/lib/stripe/resources/test_helpers/test_clock.rb +20 -43
  721. data/lib/stripe/resources/token.rb +8 -1191
  722. data/lib/stripe/resources/topup.rb +8 -132
  723. data/lib/stripe/resources/transfer.rb +8 -109
  724. data/lib/stripe/resources/treasury/credit_reversal.rb +12 -46
  725. data/lib/stripe/resources/treasury/debit_reversal.rb +20 -50
  726. data/lib/stripe/resources/treasury/financial_account.rb +55 -639
  727. data/lib/stripe/resources/treasury/financial_account_features.rb +192 -0
  728. data/lib/stripe/resources/treasury/inbound_transfer.rb +67 -115
  729. data/lib/stripe/resources/treasury/outbound_payment.rb +104 -334
  730. data/lib/stripe/resources/treasury/outbound_transfer.rb +95 -200
  731. data/lib/stripe/resources/treasury/received_credit.rb +78 -101
  732. data/lib/stripe/resources/treasury/received_debit.rb +70 -89
  733. data/lib/stripe/resources/treasury/transaction.rb +32 -82
  734. data/lib/stripe/resources/treasury/transaction_entry.rb +20 -74
  735. data/lib/stripe/resources/v2/billing/meter_event.rb +8 -0
  736. data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +16 -0
  737. data/lib/stripe/resources/v2/billing/meter_event_session.rb +8 -0
  738. data/lib/stripe/resources/v2/core/event.rb +67 -0
  739. data/lib/stripe/resources/v2/core/event_destination.rb +119 -0
  740. data/lib/stripe/resources/v2/core/event_notification.rb +62 -0
  741. data/lib/stripe/resources/v2/deleted_object.rb +21 -0
  742. data/lib/stripe/resources/webhook_endpoint.rb +8 -85
  743. data/lib/stripe/resources.rb +4 -2
  744. data/lib/stripe/services/account_capability_service.rb +0 -32
  745. data/lib/stripe/services/account_external_account_service.rb +0 -249
  746. data/lib/stripe/services/account_link_service.rb +0 -48
  747. data/lib/stripe/services/account_login_link_service.rb +0 -9
  748. data/lib/stripe/services/account_person_service.rb +0 -958
  749. data/lib/stripe/services/account_service.rb +0 -4149
  750. data/lib/stripe/services/account_session_service.rb +0 -637
  751. data/lib/stripe/services/apple_pay_domain_service.rb +0 -50
  752. data/lib/stripe/services/application_fee_refund_service.rb +0 -54
  753. data/lib/stripe/services/application_fee_service.rb +0 -57
  754. data/lib/stripe/services/apps/secret_service.rb +0 -116
  755. data/lib/stripe/services/balance_service.rb +0 -9
  756. data/lib/stripe/services/balance_settings_service.rb +30 -0
  757. data/lib/stripe/services/balance_transaction_service.rb +0 -69
  758. data/lib/stripe/services/billing/alert_service.rb +0 -113
  759. data/lib/stripe/services/billing/credit_balance_summary_service.rb +0 -48
  760. data/lib/stripe/services/billing/credit_balance_transaction_service.rb +0 -40
  761. data/lib/stripe/services/billing/credit_grant_service.rb +0 -166
  762. data/lib/stripe/services/billing/meter_event_adjustment_service.rb +0 -26
  763. data/lib/stripe/services/billing/meter_event_service.rb +0 -21
  764. data/lib/stripe/services/billing/meter_event_summary_service.rb +0 -39
  765. data/lib/stripe/services/billing/meter_service.rb +0 -130
  766. data/lib/stripe/services/billing_portal/configuration_service.rb +0 -486
  767. data/lib/stripe/services/billing_portal/session_service.rb +0 -173
  768. data/lib/stripe/services/charge_service.rb +0 -402
  769. data/lib/stripe/services/checkout/session_line_item_service.rb +0 -18
  770. data/lib/stripe/services/checkout/session_service.rb +0 -2494
  771. data/lib/stripe/services/climate/order_service.rb +0 -102
  772. data/lib/stripe/services/climate/product_service.rb +0 -27
  773. data/lib/stripe/services/climate/supplier_service.rb +0 -27
  774. data/lib/stripe/services/confirmation_token_service.rb +0 -9
  775. data/lib/stripe/services/country_spec_service.rb +0 -27
  776. data/lib/stripe/services/coupon_service.rb +0 -151
  777. data/lib/stripe/services/credit_note_line_item_service.rb +0 -18
  778. data/lib/stripe/services/credit_note_preview_lines_service.rb +0 -152
  779. data/lib/stripe/services/credit_note_service.rb +0 -365
  780. data/lib/stripe/services/customer_balance_transaction_service.rb +0 -63
  781. data/lib/stripe/services/customer_cash_balance_service.rb +0 -29
  782. data/lib/stripe/services/customer_cash_balance_transaction_service.rb +0 -27
  783. data/lib/stripe/services/customer_funding_instructions_service.rb +0 -42
  784. data/lib/stripe/services/customer_payment_method_service.rb +0 -40
  785. data/lib/stripe/services/customer_payment_source_service.rb +0 -179
  786. data/lib/stripe/services/customer_service.rb +0 -575
  787. data/lib/stripe/services/customer_session_service.rb +0 -96
  788. data/lib/stripe/services/customer_tax_id_service.rb +0 -44
  789. data/lib/stripe/services/dispute_service.rb +0 -374
  790. data/lib/stripe/services/entitlements/active_entitlement_service.rb +0 -36
  791. data/lib/stripe/services/entitlements/feature_service.rb +0 -76
  792. data/lib/stripe/services/ephemeral_key_service.rb +0 -36
  793. data/lib/stripe/services/event_service.rb +0 -65
  794. data/lib/stripe/services/exchange_rate_service.rb +4 -27
  795. data/lib/stripe/services/file_link_service.rb +0 -94
  796. data/lib/stripe/services/file_service.rb +0 -89
  797. data/lib/stripe/services/financial_connections/account_owner_service.rb +0 -27
  798. data/lib/stripe/services/financial_connections/account_service.rb +0 -96
  799. data/lib/stripe/services/financial_connections/session_service.rb +0 -68
  800. data/lib/stripe/services/financial_connections/transaction_service.rb +0 -70
  801. data/lib/stripe/services/forwarding/request_service.rb +0 -106
  802. data/lib/stripe/services/identity/verification_report_service.rb +0 -65
  803. data/lib/stripe/services/identity/verification_session_service.rb +0 -247
  804. data/lib/stripe/services/invoice_item_service.rb +0 -333
  805. data/lib/stripe/services/invoice_line_item_service.rb +0 -221
  806. data/lib/stripe/services/invoice_payment_service.rb +0 -55
  807. data/lib/stripe/services/invoice_rendering_template_service.rb +0 -51
  808. data/lib/stripe/services/invoice_service.rb +0 -2778
  809. data/lib/stripe/services/issuing/authorization_service.rb +0 -104
  810. data/lib/stripe/services/issuing/card_service.rb +0 -463
  811. data/lib/stripe/services/issuing/cardholder_service.rb +0 -525
  812. data/lib/stripe/services/issuing/dispute_service.rb +0 -633
  813. data/lib/stripe/services/issuing/personalization_design_service.rb +0 -193
  814. data/lib/stripe/services/issuing/physical_bundle_service.rb +0 -40
  815. data/lib/stripe/services/issuing/token_service.rb +0 -73
  816. data/lib/stripe/services/issuing/transaction_service.rb +0 -77
  817. data/lib/stripe/services/mandate_service.rb +0 -9
  818. data/lib/stripe/services/payment_intent_service.rb +0 -7332
  819. data/lib/stripe/services/payment_link_line_item_service.rb +0 -18
  820. data/lib/stripe/services/payment_link_service.rb +0 -1352
  821. data/lib/stripe/services/payment_method_configuration_service.rb +0 -2256
  822. data/lib/stripe/services/payment_method_domain_service.rb +0 -76
  823. data/lib/stripe/services/payment_method_service.rb +0 -762
  824. data/lib/stripe/services/payout_service.rb +0 -163
  825. data/lib/stripe/services/plan_service.rb +0 -248
  826. data/lib/stripe/services/price_service.rb +0 -493
  827. data/lib/stripe/services/product_feature_service.rb +0 -41
  828. data/lib/stripe/services/product_service.rb +0 -424
  829. data/lib/stripe/services/promotion_code_service.rb +1 -179
  830. data/lib/stripe/services/quote_computed_upfront_line_items_service.rb +0 -18
  831. data/lib/stripe/services/quote_line_item_service.rb +0 -18
  832. data/lib/stripe/services/quote_service.rb +0 -628
  833. data/lib/stripe/services/radar/early_fraud_warning_service.rb +0 -61
  834. data/lib/stripe/services/radar/value_list_item_service.rb +0 -78
  835. data/lib/stripe/services/radar/value_list_service.rb +0 -102
  836. data/lib/stripe/services/refund_service.rb +0 -137
  837. data/lib/stripe/services/reporting/report_run_service.rb +0 -106
  838. data/lib/stripe/services/reporting/report_type_service.rb +0 -18
  839. data/lib/stripe/services/review_service.rb +0 -56
  840. data/lib/stripe/services/setup_attempt_service.rb +0 -51
  841. data/lib/stripe/services/setup_intent_service.rb +0 -3275
  842. data/lib/stripe/services/shipping_rate_service.rb +0 -200
  843. data/lib/stripe/services/sigma/scheduled_query_run_service.rb +0 -27
  844. data/lib/stripe/services/source_service.rb +0 -601
  845. data/lib/stripe/services/source_transaction_service.rb +0 -18
  846. data/lib/stripe/services/subscription_item_service.rb +0 -311
  847. data/lib/stripe/services/subscription_schedule_service.rb +0 -1295
  848. data/lib/stripe/services/subscription_service.rb +0 -1594
  849. data/lib/stripe/services/tax/calculation_line_item_service.rb +0 -18
  850. data/lib/stripe/services/tax/calculation_service.rb +0 -209
  851. data/lib/stripe/services/tax/registration_service.rb +0 -2063
  852. data/lib/stripe/services/tax/settings_service.rb +0 -74
  853. data/lib/stripe/services/tax/transaction_line_item_service.rb +0 -18
  854. data/lib/stripe/services/tax/transaction_service.rb +0 -111
  855. data/lib/stripe/services/tax_code_service.rb +0 -27
  856. data/lib/stripe/services/tax_id_service.rb +0 -78
  857. data/lib/stripe/services/tax_rate_service.rb +0 -155
  858. data/lib/stripe/services/terminal/configuration_service.rb +0 -1186
  859. data/lib/stripe/services/terminal/connection_token_service.rb +0 -12
  860. data/lib/stripe/services/terminal/location_service.rb +0 -143
  861. data/lib/stripe/services/terminal/reader_service.rb +0 -427
  862. data/lib/stripe/services/test_helpers/confirmation_token_service.rb +0 -641
  863. data/lib/stripe/services/test_helpers/customer_service.rb +0 -18
  864. data/lib/stripe/services/test_helpers/issuing/authorization_service.rb +0 -745
  865. data/lib/stripe/services/test_helpers/issuing/card_service.rb +0 -45
  866. data/lib/stripe/services/test_helpers/issuing/personalization_design_service.rb +0 -41
  867. data/lib/stripe/services/test_helpers/issuing/transaction_service.rb +0 -632
  868. data/lib/stripe/services/test_helpers/refund_service.rb +0 -9
  869. data/lib/stripe/services/test_helpers/terminal/reader_service.rb +0 -87
  870. data/lib/stripe/services/test_helpers/test_clock_service.rb +0 -56
  871. data/lib/stripe/services/test_helpers/treasury/inbound_transfer_service.rb +0 -38
  872. data/lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb +0 -87
  873. data/lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb +0 -87
  874. data/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +0 -60
  875. data/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +0 -60
  876. data/lib/stripe/services/token_service.rb +0 -1201
  877. data/lib/stripe/services/topup_service.rb +0 -142
  878. data/lib/stripe/services/transfer_reversal_service.rb +0 -66
  879. data/lib/stripe/services/transfer_service.rb +0 -119
  880. data/lib/stripe/services/treasury/credit_reversal_service.rb +0 -59
  881. data/lib/stripe/services/treasury/debit_reversal_service.rb +0 -63
  882. data/lib/stripe/services/treasury/financial_account_features_service.rb +0 -166
  883. data/lib/stripe/services/treasury/financial_account_service.rb +0 -488
  884. data/lib/stripe/services/treasury/inbound_transfer_service.rb +0 -88
  885. data/lib/stripe/services/treasury/outbound_payment_service.rb +0 -258
  886. data/lib/stripe/services/treasury/outbound_transfer_service.rb +0 -124
  887. data/lib/stripe/services/treasury/received_credit_service.rb +0 -52
  888. data/lib/stripe/services/treasury/received_debit_service.rb +0 -40
  889. data/lib/stripe/services/treasury/transaction_entry_service.rb +0 -87
  890. data/lib/stripe/services/treasury/transaction_service.rb +0 -95
  891. data/lib/stripe/services/v1_services.rb +2 -1
  892. data/lib/stripe/services/v2/billing/meter_event_adjustment_service.rb +0 -23
  893. data/lib/stripe/services/v2/billing/meter_event_service.rb +0 -25
  894. data/lib/stripe/services/v2/billing/meter_event_session_service.rb +0 -2
  895. data/lib/stripe/services/v2/billing/meter_event_stream_service.rb +0 -33
  896. data/lib/stripe/services/v2/core/event_destination_service.rb +0 -137
  897. data/lib/stripe/services/v2/core/event_service.rb +0 -16
  898. data/lib/stripe/services/webhook_endpoint_service.rb +0 -95
  899. data/lib/stripe/services.rb +1 -0
  900. data/lib/stripe/stripe_client.rb +8 -5
  901. data/lib/stripe/stripe_configuration.rb +1 -6
  902. data/lib/stripe/stripe_context.rb +68 -0
  903. data/lib/stripe/stripe_object.rb +33 -9
  904. data/lib/stripe/util.rb +24 -13
  905. data/lib/stripe/version.rb +1 -1
  906. data/lib/stripe.rb +3 -1
  907. data/rbi/stripe/resources/v2/core/event_notification.rbi +43 -0
  908. data/rbi/stripe/stripe_client.rbi +17 -0
  909. data/rbi/stripe.rbi +132984 -0
  910. metadata +600 -345
  911. data/API_VERSION +0 -1
  912. data/CHANGELOG.md +0 -1769
  913. data/CODE_OF_CONDUCT.md +0 -77
  914. data/CONTRIBUTING.md +0 -25
  915. data/CONTRIBUTORS +0 -3
  916. data/Gemfile +0 -41
  917. data/History.txt +0 -1
  918. data/LICENSE +0 -21
  919. data/Makefile +0 -22
  920. data/OPENAPI_VERSION +0 -1
  921. data/README.md +0 -426
  922. data/Rakefile +0 -34
  923. data/VERSION +0 -1
  924. data/examples/README.md +0 -16
  925. data/examples/example_template.rb +0 -36
  926. data/examples/meter_event_stream.rb +0 -57
  927. data/examples/thinevent_webhook_handler.rb +0 -39
  928. data/justfile +0 -43
  929. data/lib/stripe/resources/v2/event.rb +0 -41
  930. data/lib/stripe/resources/v2/event_destination.rb +0 -73
  931. data/lib/stripe/thin_event.rb +0 -37
  932. data/rbi/stripe/resources/account.rbi +0 -4991
  933. data/rbi/stripe/resources/account_link.rbi +0 -76
  934. data/rbi/stripe/resources/account_session.rbi +0 -1173
  935. data/rbi/stripe/resources/apple_pay_domain.rbi +0 -88
  936. data/rbi/stripe/resources/application.rbi +0 -20
  937. data/rbi/stripe/resources/application_fee.rbi +0 -118
  938. data/rbi/stripe/resources/application_fee_refund.rbi +0 -37
  939. data/rbi/stripe/resources/apps/secret.rbi +0 -195
  940. data/rbi/stripe/resources/balance.rbi +0 -230
  941. data/rbi/stripe/resources/balance_transaction.rbi +0 -147
  942. data/rbi/stripe/resources/bank_account.rbi +0 -127
  943. data/rbi/stripe/resources/billing/alert.rbi +0 -201
  944. data/rbi/stripe/resources/billing/alert_triggered.rbi +0 -28
  945. data/rbi/stripe/resources/billing/credit_balance_summary.rbi +0 -63
  946. data/rbi/stripe/resources/billing/credit_balance_transaction.rbi +0 -147
  947. data/rbi/stripe/resources/billing/credit_grant.rbi +0 -291
  948. data/rbi/stripe/resources/billing/meter.rbi +0 -226
  949. data/rbi/stripe/resources/billing/meter_event.rbi +0 -64
  950. data/rbi/stripe/resources/billing/meter_event_adjustment.rbi +0 -64
  951. data/rbi/stripe/resources/billing/meter_event_summary.rbi +0 -35
  952. data/rbi/stripe/resources/billing_portal/configuration.rbi +0 -712
  953. data/rbi/stripe/resources/billing_portal/session.rbi +0 -345
  954. data/rbi/stripe/resources/capability.rbi +0 -125
  955. data/rbi/stripe/resources/card.rbi +0 -125
  956. data/rbi/stripe/resources/cash_balance.rbi +0 -32
  957. data/rbi/stripe/resources/charge.rbi +0 -2136
  958. data/rbi/stripe/resources/checkout/session.rbi +0 -4105
  959. data/rbi/stripe/resources/climate/order.rbi +0 -245
  960. data/rbi/stripe/resources/climate/product.rbi +0 -75
  961. data/rbi/stripe/resources/climate/supplier.rbi +0 -72
  962. data/rbi/stripe/resources/confirmation_token.rbi +0 -1818
  963. data/rbi/stripe/resources/connect_collection_transfer.rbi +0 -26
  964. data/rbi/stripe/resources/country_spec.rbi +0 -85
  965. data/rbi/stripe/resources/coupon.rbi +0 -250
  966. data/rbi/stripe/resources/credit_note.rbi +0 -752
  967. data/rbi/stripe/resources/credit_note_line_item.rbi +0 -101
  968. data/rbi/stripe/resources/customer.rbi +0 -993
  969. data/rbi/stripe/resources/customer_balance_transaction.rbi +0 -56
  970. data/rbi/stripe/resources/customer_cash_balance_transaction.rbi +0 -151
  971. data/rbi/stripe/resources/customer_session.rbi +0 -200
  972. data/rbi/stripe/resources/discount.rbi +0 -53
  973. data/rbi/stripe/resources/dispute.rbi +0 -761
  974. data/rbi/stripe/resources/entitlements/active_entitlement.rbi +0 -58
  975. data/rbi/stripe/resources/entitlements/active_entitlement_summary.rbi +0 -23
  976. data/rbi/stripe/resources/entitlements/feature.rbi +0 -117
  977. data/rbi/stripe/resources/ephemeral_key.rbi +0 -44
  978. data/rbi/stripe/resources/event.rbi +0 -137
  979. data/rbi/stripe/resources/exchange_rate.rbi +0 -66
  980. data/rbi/stripe/resources/file.rbi +0 -143
  981. data/rbi/stripe/resources/file_link.rbi +0 -141
  982. data/rbi/stripe/resources/financial_connections/account.rbi +0 -339
  983. data/rbi/stripe/resources/financial_connections/account_owner.rbi +0 -35
  984. data/rbi/stripe/resources/financial_connections/account_ownership.rbi +0 -23
  985. data/rbi/stripe/resources/financial_connections/session.rbi +0 -123
  986. data/rbi/stripe/resources/financial_connections/transaction.rbi +0 -124
  987. data/rbi/stripe/resources/forwarding/request.rbi +0 -216
  988. data/rbi/stripe/resources/funding_instructions.rbi +0 -437
  989. data/rbi/stripe/resources/identity/verification_report.rbi +0 -360
  990. data/rbi/stripe/resources/identity/verification_session.rbi +0 -564
  991. data/rbi/stripe/resources/invoice.rbi +0 -3894
  992. data/rbi/stripe/resources/invoice_item.rbi +0 -470
  993. data/rbi/stripe/resources/invoice_line_item.rbi +0 -432
  994. data/rbi/stripe/resources/invoice_payment.rbi +0 -121
  995. data/rbi/stripe/resources/invoice_rendering_template.rbi +0 -104
  996. data/rbi/stripe/resources/issuing/authorization.rbi +0 -1283
  997. data/rbi/stripe/resources/issuing/card.rbi +0 -749
  998. data/rbi/stripe/resources/issuing/cardholder.rbi +0 -744
  999. data/rbi/stripe/resources/issuing/dispute.rbi +0 -913
  1000. data/rbi/stripe/resources/issuing/personalization_design.rbi +0 -338
  1001. data/rbi/stripe/resources/issuing/physical_bundle.rbi +0 -79
  1002. data/rbi/stripe/resources/issuing/token.rbi +0 -226
  1003. data/rbi/stripe/resources/issuing/transaction.rbi +0 -1061
  1004. data/rbi/stripe/resources/line_item.rbi +0 -72
  1005. data/rbi/stripe/resources/login_link.rbi +0 -19
  1006. data/rbi/stripe/resources/mandate.rbi +0 -191
  1007. data/rbi/stripe/resources/payment_intent.rbi +0 -10011
  1008. data/rbi/stripe/resources/payment_link.rbi +0 -1891
  1009. data/rbi/stripe/resources/payment_method.rbi +0 -1770
  1010. data/rbi/stripe/resources/payment_method_configuration.rbi +0 -3550
  1011. data/rbi/stripe/resources/payment_method_domain.rbi +0 -228
  1012. data/rbi/stripe/resources/payout.rbi +0 -307
  1013. data/rbi/stripe/resources/person.rbi +0 -401
  1014. data/rbi/stripe/resources/plan.rbi +0 -371
  1015. data/rbi/stripe/resources/price.rbi +0 -694
  1016. data/rbi/stripe/resources/product.rbi +0 -553
  1017. data/rbi/stripe/resources/product_feature.rbi +0 -26
  1018. data/rbi/stripe/resources/promotion_code.rbi +0 -264
  1019. data/rbi/stripe/resources/quote.rbi +0 -1137
  1020. data/rbi/stripe/resources/radar/early_fraud_warning.rbi +0 -98
  1021. data/rbi/stripe/resources/radar/value_list.rbi +0 -168
  1022. data/rbi/stripe/resources/radar/value_list_item.rbi +0 -129
  1023. data/rbi/stripe/resources/refund.rbi +0 -523
  1024. data/rbi/stripe/resources/reporting/report_run.rbi +0 -191
  1025. data/rbi/stripe/resources/reporting/report_type.rbi +0 -57
  1026. data/rbi/stripe/resources/reserve_transaction.rbi +0 -23
  1027. data/rbi/stripe/resources/reversal.rbi +0 -51
  1028. data/rbi/stripe/resources/review.rbi +0 -154
  1029. data/rbi/stripe/resources/setup_attempt.rbi +0 -477
  1030. data/rbi/stripe/resources/setup_intent.rbi +0 -3974
  1031. data/rbi/stripe/resources/shipping_rate.rbi +0 -305
  1032. data/rbi/stripe/resources/sigma/scheduled_query_run.rbi +0 -75
  1033. data/rbi/stripe/resources/source.rbi +0 -1496
  1034. data/rbi/stripe/resources/source_mandate_notification.rbi +0 -77
  1035. data/rbi/stripe/resources/source_transaction.rbi +0 -127
  1036. data/rbi/stripe/resources/subscription.rbi +0 -2154
  1037. data/rbi/stripe/resources/subscription_item.rbi +0 -404
  1038. data/rbi/stripe/resources/subscription_schedule.rbi +0 -1795
  1039. data/rbi/stripe/resources/tax/calculation.rbi +0 -478
  1040. data/rbi/stripe/resources/tax/calculation_line_item.rbi +0 -91
  1041. data/rbi/stripe/resources/tax/registration.rbi +0 -3216
  1042. data/rbi/stripe/resources/tax/settings.rbi +0 -141
  1043. data/rbi/stripe/resources/tax/transaction.rbi +0 -351
  1044. data/rbi/stripe/resources/tax/transaction_line_item.rbi +0 -54
  1045. data/rbi/stripe/resources/tax_code.rbi +0 -44
  1046. data/rbi/stripe/resources/tax_deducted_at_source.rbi +0 -23
  1047. data/rbi/stripe/resources/tax_id.rbi +0 -165
  1048. data/rbi/stripe/resources/tax_rate.rbi +0 -239
  1049. data/rbi/stripe/resources/terminal/configuration.rbi +0 -1647
  1050. data/rbi/stripe/resources/terminal/connection_token.rbi +0 -37
  1051. data/rbi/stripe/resources/terminal/location.rbi +0 -222
  1052. data/rbi/stripe/resources/terminal/reader.rbi +0 -1016
  1053. data/rbi/stripe/resources/test_helpers/test_clock.rbi +0 -132
  1054. data/rbi/stripe/resources/token.rbi +0 -1281
  1055. data/rbi/stripe/resources/topup.rbi +0 -222
  1056. data/rbi/stripe/resources/transfer.rbi +0 -199
  1057. data/rbi/stripe/resources/treasury/credit_reversal.rbi +0 -119
  1058. data/rbi/stripe/resources/treasury/debit_reversal.rbi +0 -131
  1059. data/rbi/stripe/resources/treasury/financial_account.rbi +0 -869
  1060. data/rbi/stripe/resources/treasury/financial_account_features.rbi +0 -260
  1061. data/rbi/stripe/resources/treasury/inbound_transfer.rbi +0 -295
  1062. data/rbi/stripe/resources/treasury/outbound_payment.rbi +0 -592
  1063. data/rbi/stripe/resources/treasury/outbound_transfer.rbi +0 -431
  1064. data/rbi/stripe/resources/treasury/received_credit.rbi +0 -302
  1065. data/rbi/stripe/resources/treasury/received_debit.rbi +0 -256
  1066. data/rbi/stripe/resources/treasury/transaction.rbi +0 -215
  1067. data/rbi/stripe/resources/treasury/transaction_entry.rbi +0 -192
  1068. data/rbi/stripe/resources/v2/amount.rbi +0 -14
  1069. data/rbi/stripe/resources/v2/billing/meter_event.rbi +0 -37
  1070. data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +0 -41
  1071. data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +0 -31
  1072. data/rbi/stripe/resources/v2/event.rbi +0 -48
  1073. data/rbi/stripe/resources/v2/event_destination.rbi +0 -91
  1074. data/rbi/stripe/resources/webhook_endpoint.rbi +0 -168
  1075. data/rbi/stripe/services/account_capability_service.rbi +0 -51
  1076. data/rbi/stripe/services/account_external_account_service.rbi +0 -304
  1077. data/rbi/stripe/services/account_link_service.rbi +0 -60
  1078. data/rbi/stripe/services/account_login_link_service.rbi +0 -22
  1079. data/rbi/stripe/services/account_person_service.rbi +0 -1007
  1080. data/rbi/stripe/services/account_service.rbi +0 -4281
  1081. data/rbi/stripe/services/account_session_service.rbi +0 -748
  1082. data/rbi/stripe/services/apple_pay_domain_service.rbi +0 -76
  1083. data/rbi/stripe/services/application_fee_refund_service.rbi +0 -93
  1084. data/rbi/stripe/services/application_fee_service.rbi +0 -78
  1085. data/rbi/stripe/services/apps/secret_service.rbi +0 -151
  1086. data/rbi/stripe/services/apps_service.rbi +0 -9
  1087. data/rbi/stripe/services/balance_service.rbi +0 -21
  1088. data/rbi/stripe/services/balance_transaction_service.rbi +0 -93
  1089. data/rbi/stripe/services/billing/alert_service.rbi +0 -152
  1090. data/rbi/stripe/services/billing/credit_balance_summary_service.rbi +0 -68
  1091. data/rbi/stripe/services/billing/credit_balance_transaction_service.rbi +0 -59
  1092. data/rbi/stripe/services/billing/credit_grant_service.rbi +0 -211
  1093. data/rbi/stripe/services/billing/meter_event_adjustment_service.rbi +0 -42
  1094. data/rbi/stripe/services/billing/meter_event_service.rbi +0 -42
  1095. data/rbi/stripe/services/billing/meter_event_summary_service.rbi +0 -54
  1096. data/rbi/stripe/services/billing/meter_service.rbi +0 -163
  1097. data/rbi/stripe/services/billing_portal/configuration_service.rbi +0 -561
  1098. data/rbi/stripe/services/billing_portal/session_service.rbi +0 -204
  1099. data/rbi/stripe/services/billing_portal_service.rbi +0 -10
  1100. data/rbi/stripe/services/billing_service.rbi +0 -15
  1101. data/rbi/stripe/services/charge_service.rbi +0 -448
  1102. data/rbi/stripe/services/checkout/session_line_item_service.rbi +0 -33
  1103. data/rbi/stripe/services/checkout/session_service.rbi +0 -2697
  1104. data/rbi/stripe/services/checkout_service.rbi +0 -9
  1105. data/rbi/stripe/services/climate/order_service.rbi +0 -142
  1106. data/rbi/stripe/services/climate/product_service.rbi +0 -46
  1107. data/rbi/stripe/services/climate/supplier_service.rbi +0 -46
  1108. data/rbi/stripe/services/climate_service.rbi +0 -11
  1109. data/rbi/stripe/services/confirmation_token_service.rbi +0 -20
  1110. data/rbi/stripe/services/country_spec_service.rbi +0 -44
  1111. data/rbi/stripe/services/coupon_service.rbi +0 -194
  1112. data/rbi/stripe/services/credit_note_line_item_service.rbi +0 -31
  1113. data/rbi/stripe/services/credit_note_preview_lines_service.rbi +0 -167
  1114. data/rbi/stripe/services/credit_note_service.rbi +0 -415
  1115. data/rbi/stripe/services/customer_balance_transaction_service.rbi +0 -92
  1116. data/rbi/stripe/services/customer_cash_balance_service.rbi +0 -45
  1117. data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +0 -44
  1118. data/rbi/stripe/services/customer_funding_instructions_service.rbi +0 -59
  1119. data/rbi/stripe/services/customer_payment_method_service.rbi +0 -57
  1120. data/rbi/stripe/services/customer_payment_source_service.rbi +0 -232
  1121. data/rbi/stripe/services/customer_service.rbi +0 -635
  1122. data/rbi/stripe/services/customer_session_service.rbi +0 -116
  1123. data/rbi/stripe/services/customer_tax_id_service.rbi +0 -70
  1124. data/rbi/stripe/services/dispute_service.rbi +0 -424
  1125. data/rbi/stripe/services/entitlements/active_entitlement_service.rbi +0 -55
  1126. data/rbi/stripe/services/entitlements/feature_service.rbi +0 -107
  1127. data/rbi/stripe/services/entitlements_service.rbi +0 -10
  1128. data/rbi/stripe/services/ephemeral_key_service.rbi +0 -53
  1129. data/rbi/stripe/services/event_service.rbi +0 -83
  1130. data/rbi/stripe/services/exchange_rate_service.rbi +0 -44
  1131. data/rbi/stripe/services/file_link_service.rbi +0 -124
  1132. data/rbi/stripe/services/file_service.rbi +0 -116
  1133. data/rbi/stripe/services/financial_connections/account_owner_service.rbi +0 -42
  1134. data/rbi/stripe/services/financial_connections/account_service.rbi +0 -133
  1135. data/rbi/stripe/services/financial_connections/session_service.rbi +0 -88
  1136. data/rbi/stripe/services/financial_connections/transaction_service.rbi +0 -92
  1137. data/rbi/stripe/services/financial_connections_service.rbi +0 -11
  1138. data/rbi/stripe/services/forwarding/request_service.rbi +0 -134
  1139. data/rbi/stripe/services/forwarding_service.rbi +0 -9
  1140. data/rbi/stripe/services/identity/verification_report_service.rbi +0 -87
  1141. data/rbi/stripe/services/identity/verification_session_service.rbi +0 -339
  1142. data/rbi/stripe/services/identity_service.rbi +0 -10
  1143. data/rbi/stripe/services/invoice_item_service.rbi +0 -366
  1144. data/rbi/stripe/services/invoice_line_item_service.rbi +0 -259
  1145. data/rbi/stripe/services/invoice_payment_service.rbi +0 -71
  1146. data/rbi/stripe/services/invoice_rendering_template_service.rbi +0 -82
  1147. data/rbi/stripe/services/invoice_service.rbi +0 -3073
  1148. data/rbi/stripe/services/issuing/authorization_service.rbi +0 -146
  1149. data/rbi/stripe/services/issuing/card_service.rbi +0 -503
  1150. data/rbi/stripe/services/issuing/cardholder_service.rbi +0 -587
  1151. data/rbi/stripe/services/issuing/dispute_service.rbi +0 -707
  1152. data/rbi/stripe/services/issuing/personalization_design_service.rbi +0 -243
  1153. data/rbi/stripe/services/issuing/physical_bundle_service.rbi +0 -59
  1154. data/rbi/stripe/services/issuing/token_service.rbi +0 -99
  1155. data/rbi/stripe/services/issuing/transaction_service.rbi +0 -105
  1156. data/rbi/stripe/services/issuing_service.rbi +0 -16
  1157. data/rbi/stripe/services/mandate_service.rbi +0 -20
  1158. data/rbi/stripe/services/payment_intent_service.rbi +0 -8010
  1159. data/rbi/stripe/services/payment_link_line_item_service.rbi +0 -31
  1160. data/rbi/stripe/services/payment_link_service.rbi +0 -1441
  1161. data/rbi/stripe/services/payment_method_configuration_service.rbi +0 -2487
  1162. data/rbi/stripe/services/payment_method_domain_service.rbi +0 -112
  1163. data/rbi/stripe/services/payment_method_service.rbi +0 -781
  1164. data/rbi/stripe/services/payout_service.rbi +0 -209
  1165. data/rbi/stripe/services/plan_service.rbi +0 -282
  1166. data/rbi/stripe/services/price_service.rbi +0 -546
  1167. data/rbi/stripe/services/product_feature_service.rbi +0 -67
  1168. data/rbi/stripe/services/product_service.rbi +0 -477
  1169. data/rbi/stripe/services/promotion_code_service.rbi +0 -214
  1170. data/rbi/stripe/services/quote_computed_upfront_line_items_service.rbi +0 -31
  1171. data/rbi/stripe/services/quote_line_item_service.rbi +0 -31
  1172. data/rbi/stripe/services/quote_service.rbi +0 -695
  1173. data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +0 -85
  1174. data/rbi/stripe/services/radar/value_list_item_service.rbi +0 -109
  1175. data/rbi/stripe/services/radar/value_list_service.rbi +0 -141
  1176. data/rbi/stripe/services/radar_service.rbi +0 -11
  1177. data/rbi/stripe/services/refund_service.rbi +0 -185
  1178. data/rbi/stripe/services/reporting/report_run_service.rbi +0 -135
  1179. data/rbi/stripe/services/reporting/report_type_service.rbi +0 -35
  1180. data/rbi/stripe/services/reporting_service.rbi +0 -10
  1181. data/rbi/stripe/services/review_service.rbi +0 -84
  1182. data/rbi/stripe/services/setup_attempt_service.rbi +0 -65
  1183. data/rbi/stripe/services/setup_intent_service.rbi +0 -3709
  1184. data/rbi/stripe/services/shipping_rate_service.rbi +0 -241
  1185. data/rbi/stripe/services/sigma/scheduled_query_run_service.rbi +0 -46
  1186. data/rbi/stripe/services/sigma_service.rbi +0 -9
  1187. data/rbi/stripe/services/source_service.rbi +0 -663
  1188. data/rbi/stripe/services/source_transaction_service.rbi +0 -31
  1189. data/rbi/stripe/services/subscription_item_service.rbi +0 -350
  1190. data/rbi/stripe/services/subscription_schedule_service.rbi +0 -1425
  1191. data/rbi/stripe/services/subscription_service.rbi +0 -1768
  1192. data/rbi/stripe/services/tax/calculation_line_item_service.rbi +0 -33
  1193. data/rbi/stripe/services/tax/calculation_service.rbi +0 -234
  1194. data/rbi/stripe/services/tax/registration_service.rbi +0 -2278
  1195. data/rbi/stripe/services/tax/settings_service.rbi +0 -93
  1196. data/rbi/stripe/services/tax/transaction_line_item_service.rbi +0 -33
  1197. data/rbi/stripe/services/tax/transaction_service.rbi +0 -146
  1198. data/rbi/stripe/services/tax_code_service.rbi +0 -44
  1199. data/rbi/stripe/services/tax_id_service.rbi +0 -110
  1200. data/rbi/stripe/services/tax_rate_service.rbi +0 -185
  1201. data/rbi/stripe/services/tax_service.rbi +0 -12
  1202. data/rbi/stripe/services/terminal/configuration_service.rbi +0 -1328
  1203. data/rbi/stripe/services/terminal/connection_token_service.rbi +0 -25
  1204. data/rbi/stripe/services/terminal/location_service.rbi +0 -182
  1205. data/rbi/stripe/services/terminal/reader_service.rbi +0 -540
  1206. data/rbi/stripe/services/terminal_service.rbi +0 -12
  1207. data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +0 -746
  1208. data/rbi/stripe/services/test_helpers/customer_service.rbi +0 -33
  1209. data/rbi/stripe/services/test_helpers/issuing/authorization_service.rbi +0 -848
  1210. data/rbi/stripe/services/test_helpers/issuing/card_service.rbi +0 -76
  1211. data/rbi/stripe/services/test_helpers/issuing/personalization_design_service.rbi +0 -69
  1212. data/rbi/stripe/services/test_helpers/issuing/transaction_service.rbi +0 -711
  1213. data/rbi/stripe/services/test_helpers/issuing_service.rbi +0 -14
  1214. data/rbi/stripe/services/test_helpers/refund_service.rbi +0 -22
  1215. data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +0 -117
  1216. data/rbi/stripe/services/test_helpers/terminal_service.rbi +0 -11
  1217. data/rbi/stripe/services/test_helpers/test_clock_service.rbi +0 -90
  1218. data/rbi/stripe/services/test_helpers/treasury/inbound_transfer_service.rbi +0 -64
  1219. data/rbi/stripe/services/test_helpers/treasury/outbound_payment_service.rbi +0 -125
  1220. data/rbi/stripe/services/test_helpers/treasury/outbound_transfer_service.rbi +0 -125
  1221. data/rbi/stripe/services/test_helpers/treasury/received_credit_service.rbi +0 -87
  1222. data/rbi/stripe/services/test_helpers/treasury/received_debit_service.rbi +0 -87
  1223. data/rbi/stripe/services/test_helpers/treasury_service.rbi +0 -15
  1224. data/rbi/stripe/services/test_helpers_service.rbi +0 -15
  1225. data/rbi/stripe/services/token_service.rbi +0 -1255
  1226. data/rbi/stripe/services/topup_service.rbi +0 -176
  1227. data/rbi/stripe/services/transfer_reversal_service.rbi +0 -101
  1228. data/rbi/stripe/services/transfer_service.rbi +0 -152
  1229. data/rbi/stripe/services/treasury/credit_reversal_service.rbi +0 -84
  1230. data/rbi/stripe/services/treasury/debit_reversal_service.rbi +0 -88
  1231. data/rbi/stripe/services/treasury/financial_account_features_service.rbi +0 -198
  1232. data/rbi/stripe/services/treasury/financial_account_service.rbi +0 -566
  1233. data/rbi/stripe/services/treasury/inbound_transfer_service.rbi +0 -117
  1234. data/rbi/stripe/services/treasury/outbound_payment_service.rbi +0 -304
  1235. data/rbi/stripe/services/treasury/outbound_transfer_service.rbi +0 -157
  1236. data/rbi/stripe/services/treasury/received_credit_service.rbi +0 -72
  1237. data/rbi/stripe/services/treasury/received_debit_service.rbi +0 -59
  1238. data/rbi/stripe/services/treasury/transaction_entry_service.rbi +0 -111
  1239. data/rbi/stripe/services/treasury/transaction_service.rbi +0 -122
  1240. data/rbi/stripe/services/treasury_service.rbi +0 -18
  1241. data/rbi/stripe/services/v1_services.rbi +0 -77
  1242. data/rbi/stripe/services/v2/billing/meter_event_adjustment_service.rbi +0 -39
  1243. data/rbi/stripe/services/v2/billing/meter_event_service.rbi +0 -42
  1244. data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +0 -18
  1245. data/rbi/stripe/services/v2/billing/meter_event_stream_service.rbi +0 -55
  1246. data/rbi/stripe/services/v2/billing_service.rbi +0 -14
  1247. data/rbi/stripe/services/v2/core/event_destination_service.rbi +0 -192
  1248. data/rbi/stripe/services/v2/core/event_service.rbi +0 -36
  1249. data/rbi/stripe/services/v2/core_service.rbi +0 -12
  1250. data/rbi/stripe/services/v2_services.rbi +0 -10
  1251. data/rbi/stripe/services/webhook_endpoint_service.rbi +0 -129
  1252. data/stripe.gemspec +0 -44
@@ -34,11 +34,27 @@ module Stripe
34
34
  attr_reader :preference
35
35
  # The effective display preference value.
36
36
  attr_reader :value
37
+
38
+ def self.inner_class_types
39
+ @inner_class_types = {}
40
+ end
41
+
42
+ def self.field_remappings
43
+ @field_remappings = {}
44
+ end
37
45
  end
38
46
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
39
47
  attr_reader :available
40
48
  # Attribute for field display_preference
41
49
  attr_reader :display_preference
50
+
51
+ def self.inner_class_types
52
+ @inner_class_types = { display_preference: DisplayPreference }
53
+ end
54
+
55
+ def self.field_remappings
56
+ @field_remappings = {}
57
+ end
42
58
  end
43
59
 
44
60
  class Affirm < Stripe::StripeObject
@@ -49,11 +65,27 @@ module Stripe
49
65
  attr_reader :preference
50
66
  # The effective display preference value.
51
67
  attr_reader :value
68
+
69
+ def self.inner_class_types
70
+ @inner_class_types = {}
71
+ end
72
+
73
+ def self.field_remappings
74
+ @field_remappings = {}
75
+ end
52
76
  end
53
77
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
54
78
  attr_reader :available
55
79
  # Attribute for field display_preference
56
80
  attr_reader :display_preference
81
+
82
+ def self.inner_class_types
83
+ @inner_class_types = { display_preference: DisplayPreference }
84
+ end
85
+
86
+ def self.field_remappings
87
+ @field_remappings = {}
88
+ end
57
89
  end
58
90
 
59
91
  class AfterpayClearpay < Stripe::StripeObject
@@ -64,11 +96,27 @@ module Stripe
64
96
  attr_reader :preference
65
97
  # The effective display preference value.
66
98
  attr_reader :value
99
+
100
+ def self.inner_class_types
101
+ @inner_class_types = {}
102
+ end
103
+
104
+ def self.field_remappings
105
+ @field_remappings = {}
106
+ end
67
107
  end
68
108
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
69
109
  attr_reader :available
70
110
  # Attribute for field display_preference
71
111
  attr_reader :display_preference
112
+
113
+ def self.inner_class_types
114
+ @inner_class_types = { display_preference: DisplayPreference }
115
+ end
116
+
117
+ def self.field_remappings
118
+ @field_remappings = {}
119
+ end
72
120
  end
73
121
 
74
122
  class Alipay < Stripe::StripeObject
@@ -79,11 +127,27 @@ module Stripe
79
127
  attr_reader :preference
80
128
  # The effective display preference value.
81
129
  attr_reader :value
130
+
131
+ def self.inner_class_types
132
+ @inner_class_types = {}
133
+ end
134
+
135
+ def self.field_remappings
136
+ @field_remappings = {}
137
+ end
82
138
  end
83
139
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
84
140
  attr_reader :available
85
141
  # Attribute for field display_preference
86
142
  attr_reader :display_preference
143
+
144
+ def self.inner_class_types
145
+ @inner_class_types = { display_preference: DisplayPreference }
146
+ end
147
+
148
+ def self.field_remappings
149
+ @field_remappings = {}
150
+ end
87
151
  end
88
152
 
89
153
  class Alma < Stripe::StripeObject
@@ -94,11 +158,27 @@ module Stripe
94
158
  attr_reader :preference
95
159
  # The effective display preference value.
96
160
  attr_reader :value
161
+
162
+ def self.inner_class_types
163
+ @inner_class_types = {}
164
+ end
165
+
166
+ def self.field_remappings
167
+ @field_remappings = {}
168
+ end
97
169
  end
98
170
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
99
171
  attr_reader :available
100
172
  # Attribute for field display_preference
101
173
  attr_reader :display_preference
174
+
175
+ def self.inner_class_types
176
+ @inner_class_types = { display_preference: DisplayPreference }
177
+ end
178
+
179
+ def self.field_remappings
180
+ @field_remappings = {}
181
+ end
102
182
  end
103
183
 
104
184
  class AmazonPay < Stripe::StripeObject
@@ -109,11 +189,27 @@ module Stripe
109
189
  attr_reader :preference
110
190
  # The effective display preference value.
111
191
  attr_reader :value
192
+
193
+ def self.inner_class_types
194
+ @inner_class_types = {}
195
+ end
196
+
197
+ def self.field_remappings
198
+ @field_remappings = {}
199
+ end
112
200
  end
113
201
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
114
202
  attr_reader :available
115
203
  # Attribute for field display_preference
116
204
  attr_reader :display_preference
205
+
206
+ def self.inner_class_types
207
+ @inner_class_types = { display_preference: DisplayPreference }
208
+ end
209
+
210
+ def self.field_remappings
211
+ @field_remappings = {}
212
+ end
117
213
  end
118
214
 
119
215
  class ApplePay < Stripe::StripeObject
@@ -124,11 +220,27 @@ module Stripe
124
220
  attr_reader :preference
125
221
  # The effective display preference value.
126
222
  attr_reader :value
223
+
224
+ def self.inner_class_types
225
+ @inner_class_types = {}
226
+ end
227
+
228
+ def self.field_remappings
229
+ @field_remappings = {}
230
+ end
127
231
  end
128
232
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
129
233
  attr_reader :available
130
234
  # Attribute for field display_preference
131
235
  attr_reader :display_preference
236
+
237
+ def self.inner_class_types
238
+ @inner_class_types = { display_preference: DisplayPreference }
239
+ end
240
+
241
+ def self.field_remappings
242
+ @field_remappings = {}
243
+ end
132
244
  end
133
245
 
134
246
  class AuBecsDebit < Stripe::StripeObject
@@ -139,11 +251,27 @@ module Stripe
139
251
  attr_reader :preference
140
252
  # The effective display preference value.
141
253
  attr_reader :value
254
+
255
+ def self.inner_class_types
256
+ @inner_class_types = {}
257
+ end
258
+
259
+ def self.field_remappings
260
+ @field_remappings = {}
261
+ end
142
262
  end
143
263
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
144
264
  attr_reader :available
145
265
  # Attribute for field display_preference
146
266
  attr_reader :display_preference
267
+
268
+ def self.inner_class_types
269
+ @inner_class_types = { display_preference: DisplayPreference }
270
+ end
271
+
272
+ def self.field_remappings
273
+ @field_remappings = {}
274
+ end
147
275
  end
148
276
 
149
277
  class BacsDebit < Stripe::StripeObject
@@ -154,11 +282,27 @@ module Stripe
154
282
  attr_reader :preference
155
283
  # The effective display preference value.
156
284
  attr_reader :value
285
+
286
+ def self.inner_class_types
287
+ @inner_class_types = {}
288
+ end
289
+
290
+ def self.field_remappings
291
+ @field_remappings = {}
292
+ end
157
293
  end
158
294
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
159
295
  attr_reader :available
160
296
  # Attribute for field display_preference
161
297
  attr_reader :display_preference
298
+
299
+ def self.inner_class_types
300
+ @inner_class_types = { display_preference: DisplayPreference }
301
+ end
302
+
303
+ def self.field_remappings
304
+ @field_remappings = {}
305
+ end
162
306
  end
163
307
 
164
308
  class Bancontact < Stripe::StripeObject
@@ -169,11 +313,27 @@ module Stripe
169
313
  attr_reader :preference
170
314
  # The effective display preference value.
171
315
  attr_reader :value
316
+
317
+ def self.inner_class_types
318
+ @inner_class_types = {}
319
+ end
320
+
321
+ def self.field_remappings
322
+ @field_remappings = {}
323
+ end
172
324
  end
173
325
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
174
326
  attr_reader :available
175
327
  # Attribute for field display_preference
176
328
  attr_reader :display_preference
329
+
330
+ def self.inner_class_types
331
+ @inner_class_types = { display_preference: DisplayPreference }
332
+ end
333
+
334
+ def self.field_remappings
335
+ @field_remappings = {}
336
+ end
177
337
  end
178
338
 
179
339
  class Billie < Stripe::StripeObject
@@ -184,11 +344,27 @@ module Stripe
184
344
  attr_reader :preference
185
345
  # The effective display preference value.
186
346
  attr_reader :value
347
+
348
+ def self.inner_class_types
349
+ @inner_class_types = {}
350
+ end
351
+
352
+ def self.field_remappings
353
+ @field_remappings = {}
354
+ end
187
355
  end
188
356
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
189
357
  attr_reader :available
190
358
  # Attribute for field display_preference
191
359
  attr_reader :display_preference
360
+
361
+ def self.inner_class_types
362
+ @inner_class_types = { display_preference: DisplayPreference }
363
+ end
364
+
365
+ def self.field_remappings
366
+ @field_remappings = {}
367
+ end
192
368
  end
193
369
 
194
370
  class Blik < Stripe::StripeObject
@@ -199,11 +375,27 @@ module Stripe
199
375
  attr_reader :preference
200
376
  # The effective display preference value.
201
377
  attr_reader :value
378
+
379
+ def self.inner_class_types
380
+ @inner_class_types = {}
381
+ end
382
+
383
+ def self.field_remappings
384
+ @field_remappings = {}
385
+ end
202
386
  end
203
387
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
204
388
  attr_reader :available
205
389
  # Attribute for field display_preference
206
390
  attr_reader :display_preference
391
+
392
+ def self.inner_class_types
393
+ @inner_class_types = { display_preference: DisplayPreference }
394
+ end
395
+
396
+ def self.field_remappings
397
+ @field_remappings = {}
398
+ end
207
399
  end
208
400
 
209
401
  class Boleto < Stripe::StripeObject
@@ -214,11 +406,27 @@ module Stripe
214
406
  attr_reader :preference
215
407
  # The effective display preference value.
216
408
  attr_reader :value
409
+
410
+ def self.inner_class_types
411
+ @inner_class_types = {}
412
+ end
413
+
414
+ def self.field_remappings
415
+ @field_remappings = {}
416
+ end
217
417
  end
218
418
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
219
419
  attr_reader :available
220
420
  # Attribute for field display_preference
221
421
  attr_reader :display_preference
422
+
423
+ def self.inner_class_types
424
+ @inner_class_types = { display_preference: DisplayPreference }
425
+ end
426
+
427
+ def self.field_remappings
428
+ @field_remappings = {}
429
+ end
222
430
  end
223
431
 
224
432
  class Card < Stripe::StripeObject
@@ -229,11 +437,27 @@ module Stripe
229
437
  attr_reader :preference
230
438
  # The effective display preference value.
231
439
  attr_reader :value
440
+
441
+ def self.inner_class_types
442
+ @inner_class_types = {}
443
+ end
444
+
445
+ def self.field_remappings
446
+ @field_remappings = {}
447
+ end
232
448
  end
233
449
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
234
450
  attr_reader :available
235
451
  # Attribute for field display_preference
236
452
  attr_reader :display_preference
453
+
454
+ def self.inner_class_types
455
+ @inner_class_types = { display_preference: DisplayPreference }
456
+ end
457
+
458
+ def self.field_remappings
459
+ @field_remappings = {}
460
+ end
237
461
  end
238
462
 
239
463
  class CartesBancaires < Stripe::StripeObject
@@ -244,11 +468,27 @@ module Stripe
244
468
  attr_reader :preference
245
469
  # The effective display preference value.
246
470
  attr_reader :value
471
+
472
+ def self.inner_class_types
473
+ @inner_class_types = {}
474
+ end
475
+
476
+ def self.field_remappings
477
+ @field_remappings = {}
478
+ end
247
479
  end
248
480
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
249
481
  attr_reader :available
250
482
  # Attribute for field display_preference
251
483
  attr_reader :display_preference
484
+
485
+ def self.inner_class_types
486
+ @inner_class_types = { display_preference: DisplayPreference }
487
+ end
488
+
489
+ def self.field_remappings
490
+ @field_remappings = {}
491
+ end
252
492
  end
253
493
 
254
494
  class Cashapp < Stripe::StripeObject
@@ -259,11 +499,27 @@ module Stripe
259
499
  attr_reader :preference
260
500
  # The effective display preference value.
261
501
  attr_reader :value
502
+
503
+ def self.inner_class_types
504
+ @inner_class_types = {}
505
+ end
506
+
507
+ def self.field_remappings
508
+ @field_remappings = {}
509
+ end
262
510
  end
263
511
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
264
512
  attr_reader :available
265
513
  # Attribute for field display_preference
266
514
  attr_reader :display_preference
515
+
516
+ def self.inner_class_types
517
+ @inner_class_types = { display_preference: DisplayPreference }
518
+ end
519
+
520
+ def self.field_remappings
521
+ @field_remappings = {}
522
+ end
267
523
  end
268
524
 
269
525
  class CustomerBalance < Stripe::StripeObject
@@ -274,11 +530,27 @@ module Stripe
274
530
  attr_reader :preference
275
531
  # The effective display preference value.
276
532
  attr_reader :value
533
+
534
+ def self.inner_class_types
535
+ @inner_class_types = {}
536
+ end
537
+
538
+ def self.field_remappings
539
+ @field_remappings = {}
540
+ end
277
541
  end
278
542
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
279
543
  attr_reader :available
280
544
  # Attribute for field display_preference
281
545
  attr_reader :display_preference
546
+
547
+ def self.inner_class_types
548
+ @inner_class_types = { display_preference: DisplayPreference }
549
+ end
550
+
551
+ def self.field_remappings
552
+ @field_remappings = {}
553
+ end
282
554
  end
283
555
 
284
556
  class Eps < Stripe::StripeObject
@@ -289,11 +561,27 @@ module Stripe
289
561
  attr_reader :preference
290
562
  # The effective display preference value.
291
563
  attr_reader :value
564
+
565
+ def self.inner_class_types
566
+ @inner_class_types = {}
567
+ end
568
+
569
+ def self.field_remappings
570
+ @field_remappings = {}
571
+ end
292
572
  end
293
573
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
294
574
  attr_reader :available
295
575
  # Attribute for field display_preference
296
576
  attr_reader :display_preference
577
+
578
+ def self.inner_class_types
579
+ @inner_class_types = { display_preference: DisplayPreference }
580
+ end
581
+
582
+ def self.field_remappings
583
+ @field_remappings = {}
584
+ end
297
585
  end
298
586
 
299
587
  class Fpx < Stripe::StripeObject
@@ -304,11 +592,27 @@ module Stripe
304
592
  attr_reader :preference
305
593
  # The effective display preference value.
306
594
  attr_reader :value
595
+
596
+ def self.inner_class_types
597
+ @inner_class_types = {}
598
+ end
599
+
600
+ def self.field_remappings
601
+ @field_remappings = {}
602
+ end
307
603
  end
308
604
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
309
605
  attr_reader :available
310
606
  # Attribute for field display_preference
311
607
  attr_reader :display_preference
608
+
609
+ def self.inner_class_types
610
+ @inner_class_types = { display_preference: DisplayPreference }
611
+ end
612
+
613
+ def self.field_remappings
614
+ @field_remappings = {}
615
+ end
312
616
  end
313
617
 
314
618
  class Giropay < Stripe::StripeObject
@@ -319,11 +623,27 @@ module Stripe
319
623
  attr_reader :preference
320
624
  # The effective display preference value.
321
625
  attr_reader :value
626
+
627
+ def self.inner_class_types
628
+ @inner_class_types = {}
629
+ end
630
+
631
+ def self.field_remappings
632
+ @field_remappings = {}
633
+ end
322
634
  end
323
635
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
324
636
  attr_reader :available
325
637
  # Attribute for field display_preference
326
638
  attr_reader :display_preference
639
+
640
+ def self.inner_class_types
641
+ @inner_class_types = { display_preference: DisplayPreference }
642
+ end
643
+
644
+ def self.field_remappings
645
+ @field_remappings = {}
646
+ end
327
647
  end
328
648
 
329
649
  class GooglePay < Stripe::StripeObject
@@ -334,11 +654,27 @@ module Stripe
334
654
  attr_reader :preference
335
655
  # The effective display preference value.
336
656
  attr_reader :value
657
+
658
+ def self.inner_class_types
659
+ @inner_class_types = {}
660
+ end
661
+
662
+ def self.field_remappings
663
+ @field_remappings = {}
664
+ end
337
665
  end
338
666
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
339
667
  attr_reader :available
340
668
  # Attribute for field display_preference
341
669
  attr_reader :display_preference
670
+
671
+ def self.inner_class_types
672
+ @inner_class_types = { display_preference: DisplayPreference }
673
+ end
674
+
675
+ def self.field_remappings
676
+ @field_remappings = {}
677
+ end
342
678
  end
343
679
 
344
680
  class Grabpay < Stripe::StripeObject
@@ -349,11 +685,27 @@ module Stripe
349
685
  attr_reader :preference
350
686
  # The effective display preference value.
351
687
  attr_reader :value
688
+
689
+ def self.inner_class_types
690
+ @inner_class_types = {}
691
+ end
692
+
693
+ def self.field_remappings
694
+ @field_remappings = {}
695
+ end
352
696
  end
353
697
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
354
698
  attr_reader :available
355
699
  # Attribute for field display_preference
356
700
  attr_reader :display_preference
701
+
702
+ def self.inner_class_types
703
+ @inner_class_types = { display_preference: DisplayPreference }
704
+ end
705
+
706
+ def self.field_remappings
707
+ @field_remappings = {}
708
+ end
357
709
  end
358
710
 
359
711
  class Ideal < Stripe::StripeObject
@@ -364,11 +716,27 @@ module Stripe
364
716
  attr_reader :preference
365
717
  # The effective display preference value.
366
718
  attr_reader :value
719
+
720
+ def self.inner_class_types
721
+ @inner_class_types = {}
722
+ end
723
+
724
+ def self.field_remappings
725
+ @field_remappings = {}
726
+ end
367
727
  end
368
728
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
369
729
  attr_reader :available
370
730
  # Attribute for field display_preference
371
731
  attr_reader :display_preference
732
+
733
+ def self.inner_class_types
734
+ @inner_class_types = { display_preference: DisplayPreference }
735
+ end
736
+
737
+ def self.field_remappings
738
+ @field_remappings = {}
739
+ end
372
740
  end
373
741
 
374
742
  class Jcb < Stripe::StripeObject
@@ -379,11 +747,27 @@ module Stripe
379
747
  attr_reader :preference
380
748
  # The effective display preference value.
381
749
  attr_reader :value
750
+
751
+ def self.inner_class_types
752
+ @inner_class_types = {}
753
+ end
754
+
755
+ def self.field_remappings
756
+ @field_remappings = {}
757
+ end
382
758
  end
383
759
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
384
760
  attr_reader :available
385
761
  # Attribute for field display_preference
386
762
  attr_reader :display_preference
763
+
764
+ def self.inner_class_types
765
+ @inner_class_types = { display_preference: DisplayPreference }
766
+ end
767
+
768
+ def self.field_remappings
769
+ @field_remappings = {}
770
+ end
387
771
  end
388
772
 
389
773
  class KakaoPay < Stripe::StripeObject
@@ -394,11 +778,27 @@ module Stripe
394
778
  attr_reader :preference
395
779
  # The effective display preference value.
396
780
  attr_reader :value
781
+
782
+ def self.inner_class_types
783
+ @inner_class_types = {}
784
+ end
785
+
786
+ def self.field_remappings
787
+ @field_remappings = {}
788
+ end
397
789
  end
398
790
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
399
791
  attr_reader :available
400
792
  # Attribute for field display_preference
401
793
  attr_reader :display_preference
794
+
795
+ def self.inner_class_types
796
+ @inner_class_types = { display_preference: DisplayPreference }
797
+ end
798
+
799
+ def self.field_remappings
800
+ @field_remappings = {}
801
+ end
402
802
  end
403
803
 
404
804
  class Klarna < Stripe::StripeObject
@@ -409,11 +809,27 @@ module Stripe
409
809
  attr_reader :preference
410
810
  # The effective display preference value.
411
811
  attr_reader :value
812
+
813
+ def self.inner_class_types
814
+ @inner_class_types = {}
815
+ end
816
+
817
+ def self.field_remappings
818
+ @field_remappings = {}
819
+ end
412
820
  end
413
821
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
414
822
  attr_reader :available
415
823
  # Attribute for field display_preference
416
824
  attr_reader :display_preference
825
+
826
+ def self.inner_class_types
827
+ @inner_class_types = { display_preference: DisplayPreference }
828
+ end
829
+
830
+ def self.field_remappings
831
+ @field_remappings = {}
832
+ end
417
833
  end
418
834
 
419
835
  class Konbini < Stripe::StripeObject
@@ -424,11 +840,27 @@ module Stripe
424
840
  attr_reader :preference
425
841
  # The effective display preference value.
426
842
  attr_reader :value
843
+
844
+ def self.inner_class_types
845
+ @inner_class_types = {}
846
+ end
847
+
848
+ def self.field_remappings
849
+ @field_remappings = {}
850
+ end
427
851
  end
428
852
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
429
853
  attr_reader :available
430
854
  # Attribute for field display_preference
431
855
  attr_reader :display_preference
856
+
857
+ def self.inner_class_types
858
+ @inner_class_types = { display_preference: DisplayPreference }
859
+ end
860
+
861
+ def self.field_remappings
862
+ @field_remappings = {}
863
+ end
432
864
  end
433
865
 
434
866
  class KrCard < Stripe::StripeObject
@@ -439,11 +871,27 @@ module Stripe
439
871
  attr_reader :preference
440
872
  # The effective display preference value.
441
873
  attr_reader :value
874
+
875
+ def self.inner_class_types
876
+ @inner_class_types = {}
877
+ end
878
+
879
+ def self.field_remappings
880
+ @field_remappings = {}
881
+ end
442
882
  end
443
883
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
444
884
  attr_reader :available
445
885
  # Attribute for field display_preference
446
886
  attr_reader :display_preference
887
+
888
+ def self.inner_class_types
889
+ @inner_class_types = { display_preference: DisplayPreference }
890
+ end
891
+
892
+ def self.field_remappings
893
+ @field_remappings = {}
894
+ end
447
895
  end
448
896
 
449
897
  class Link < Stripe::StripeObject
@@ -454,11 +902,27 @@ module Stripe
454
902
  attr_reader :preference
455
903
  # The effective display preference value.
456
904
  attr_reader :value
905
+
906
+ def self.inner_class_types
907
+ @inner_class_types = {}
908
+ end
909
+
910
+ def self.field_remappings
911
+ @field_remappings = {}
912
+ end
457
913
  end
458
914
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
459
915
  attr_reader :available
460
916
  # Attribute for field display_preference
461
917
  attr_reader :display_preference
918
+
919
+ def self.inner_class_types
920
+ @inner_class_types = { display_preference: DisplayPreference }
921
+ end
922
+
923
+ def self.field_remappings
924
+ @field_remappings = {}
925
+ end
462
926
  end
463
927
 
464
928
  class Mobilepay < Stripe::StripeObject
@@ -469,11 +933,27 @@ module Stripe
469
933
  attr_reader :preference
470
934
  # The effective display preference value.
471
935
  attr_reader :value
936
+
937
+ def self.inner_class_types
938
+ @inner_class_types = {}
939
+ end
940
+
941
+ def self.field_remappings
942
+ @field_remappings = {}
943
+ end
472
944
  end
473
945
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
474
946
  attr_reader :available
475
947
  # Attribute for field display_preference
476
948
  attr_reader :display_preference
949
+
950
+ def self.inner_class_types
951
+ @inner_class_types = { display_preference: DisplayPreference }
952
+ end
953
+
954
+ def self.field_remappings
955
+ @field_remappings = {}
956
+ end
477
957
  end
478
958
 
479
959
  class Multibanco < Stripe::StripeObject
@@ -484,11 +964,27 @@ module Stripe
484
964
  attr_reader :preference
485
965
  # The effective display preference value.
486
966
  attr_reader :value
967
+
968
+ def self.inner_class_types
969
+ @inner_class_types = {}
970
+ end
971
+
972
+ def self.field_remappings
973
+ @field_remappings = {}
974
+ end
487
975
  end
488
976
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
489
977
  attr_reader :available
490
978
  # Attribute for field display_preference
491
979
  attr_reader :display_preference
980
+
981
+ def self.inner_class_types
982
+ @inner_class_types = { display_preference: DisplayPreference }
983
+ end
984
+
985
+ def self.field_remappings
986
+ @field_remappings = {}
987
+ end
492
988
  end
493
989
 
494
990
  class NaverPay < Stripe::StripeObject
@@ -499,11 +995,27 @@ module Stripe
499
995
  attr_reader :preference
500
996
  # The effective display preference value.
501
997
  attr_reader :value
998
+
999
+ def self.inner_class_types
1000
+ @inner_class_types = {}
1001
+ end
1002
+
1003
+ def self.field_remappings
1004
+ @field_remappings = {}
1005
+ end
502
1006
  end
503
1007
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
504
1008
  attr_reader :available
505
1009
  # Attribute for field display_preference
506
1010
  attr_reader :display_preference
1011
+
1012
+ def self.inner_class_types
1013
+ @inner_class_types = { display_preference: DisplayPreference }
1014
+ end
1015
+
1016
+ def self.field_remappings
1017
+ @field_remappings = {}
1018
+ end
507
1019
  end
508
1020
 
509
1021
  class NzBankAccount < Stripe::StripeObject
@@ -514,74 +1026,30 @@ module Stripe
514
1026
  attr_reader :preference
515
1027
  # The effective display preference value.
516
1028
  attr_reader :value
517
- end
518
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
519
- attr_reader :available
520
- # Attribute for field display_preference
521
- attr_reader :display_preference
522
- end
523
1029
 
524
- class Oxxo < Stripe::StripeObject
525
- class DisplayPreference < Stripe::StripeObject
526
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
527
- attr_reader :overridable
528
- # The account's display preference.
529
- attr_reader :preference
530
- # The effective display preference value.
531
- attr_reader :value
532
- end
533
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
534
- attr_reader :available
535
- # Attribute for field display_preference
536
- attr_reader :display_preference
537
- end
1030
+ def self.inner_class_types
1031
+ @inner_class_types = {}
1032
+ end
538
1033
 
539
- class P24 < Stripe::StripeObject
540
- class DisplayPreference < Stripe::StripeObject
541
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
542
- attr_reader :overridable
543
- # The account's display preference.
544
- attr_reader :preference
545
- # The effective display preference value.
546
- attr_reader :value
1034
+ def self.field_remappings
1035
+ @field_remappings = {}
1036
+ end
547
1037
  end
548
1038
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
549
1039
  attr_reader :available
550
1040
  # Attribute for field display_preference
551
1041
  attr_reader :display_preference
552
- end
553
1042
 
554
- class PayByBank < Stripe::StripeObject
555
- class DisplayPreference < Stripe::StripeObject
556
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
557
- attr_reader :overridable
558
- # The account's display preference.
559
- attr_reader :preference
560
- # The effective display preference value.
561
- attr_reader :value
1043
+ def self.inner_class_types
1044
+ @inner_class_types = { display_preference: DisplayPreference }
562
1045
  end
563
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
564
- attr_reader :available
565
- # Attribute for field display_preference
566
- attr_reader :display_preference
567
- end
568
1046
 
569
- class Payco < Stripe::StripeObject
570
- class DisplayPreference < Stripe::StripeObject
571
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
572
- attr_reader :overridable
573
- # The account's display preference.
574
- attr_reader :preference
575
- # The effective display preference value.
576
- attr_reader :value
1047
+ def self.field_remappings
1048
+ @field_remappings = {}
577
1049
  end
578
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
579
- attr_reader :available
580
- # Attribute for field display_preference
581
- attr_reader :display_preference
582
1050
  end
583
1051
 
584
- class Paynow < Stripe::StripeObject
1052
+ class Oxxo < Stripe::StripeObject
585
1053
  class DisplayPreference < Stripe::StripeObject
586
1054
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
587
1055
  attr_reader :overridable
@@ -589,74 +1057,30 @@ module Stripe
589
1057
  attr_reader :preference
590
1058
  # The effective display preference value.
591
1059
  attr_reader :value
592
- end
593
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
594
- attr_reader :available
595
- # Attribute for field display_preference
596
- attr_reader :display_preference
597
- end
598
1060
 
599
- class Paypal < Stripe::StripeObject
600
- class DisplayPreference < Stripe::StripeObject
601
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
602
- attr_reader :overridable
603
- # The account's display preference.
604
- attr_reader :preference
605
- # The effective display preference value.
606
- attr_reader :value
607
- end
608
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
609
- attr_reader :available
610
- # Attribute for field display_preference
611
- attr_reader :display_preference
612
- end
1061
+ def self.inner_class_types
1062
+ @inner_class_types = {}
1063
+ end
613
1064
 
614
- class Pix < Stripe::StripeObject
615
- class DisplayPreference < Stripe::StripeObject
616
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
617
- attr_reader :overridable
618
- # The account's display preference.
619
- attr_reader :preference
620
- # The effective display preference value.
621
- attr_reader :value
1065
+ def self.field_remappings
1066
+ @field_remappings = {}
1067
+ end
622
1068
  end
623
1069
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
624
1070
  attr_reader :available
625
1071
  # Attribute for field display_preference
626
1072
  attr_reader :display_preference
627
- end
628
1073
 
629
- class Promptpay < Stripe::StripeObject
630
- class DisplayPreference < Stripe::StripeObject
631
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
632
- attr_reader :overridable
633
- # The account's display preference.
634
- attr_reader :preference
635
- # The effective display preference value.
636
- attr_reader :value
1074
+ def self.inner_class_types
1075
+ @inner_class_types = { display_preference: DisplayPreference }
637
1076
  end
638
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
639
- attr_reader :available
640
- # Attribute for field display_preference
641
- attr_reader :display_preference
642
- end
643
1077
 
644
- class RevolutPay < Stripe::StripeObject
645
- class DisplayPreference < Stripe::StripeObject
646
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
647
- attr_reader :overridable
648
- # The account's display preference.
649
- attr_reader :preference
650
- # The effective display preference value.
651
- attr_reader :value
1078
+ def self.field_remappings
1079
+ @field_remappings = {}
652
1080
  end
653
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
654
- attr_reader :available
655
- # Attribute for field display_preference
656
- attr_reader :display_preference
657
1081
  end
658
1082
 
659
- class SamsungPay < Stripe::StripeObject
1083
+ class P24 < Stripe::StripeObject
660
1084
  class DisplayPreference < Stripe::StripeObject
661
1085
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
662
1086
  attr_reader :overridable
@@ -664,74 +1088,30 @@ module Stripe
664
1088
  attr_reader :preference
665
1089
  # The effective display preference value.
666
1090
  attr_reader :value
667
- end
668
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
669
- attr_reader :available
670
- # Attribute for field display_preference
671
- attr_reader :display_preference
672
- end
673
1091
 
674
- class Satispay < Stripe::StripeObject
675
- class DisplayPreference < Stripe::StripeObject
676
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
677
- attr_reader :overridable
678
- # The account's display preference.
679
- attr_reader :preference
680
- # The effective display preference value.
681
- attr_reader :value
682
- end
683
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
684
- attr_reader :available
685
- # Attribute for field display_preference
686
- attr_reader :display_preference
687
- end
1092
+ def self.inner_class_types
1093
+ @inner_class_types = {}
1094
+ end
688
1095
 
689
- class SepaDebit < Stripe::StripeObject
690
- class DisplayPreference < Stripe::StripeObject
691
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
692
- attr_reader :overridable
693
- # The account's display preference.
694
- attr_reader :preference
695
- # The effective display preference value.
696
- attr_reader :value
1096
+ def self.field_remappings
1097
+ @field_remappings = {}
1098
+ end
697
1099
  end
698
1100
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
699
1101
  attr_reader :available
700
1102
  # Attribute for field display_preference
701
1103
  attr_reader :display_preference
702
- end
703
1104
 
704
- class Sofort < Stripe::StripeObject
705
- class DisplayPreference < Stripe::StripeObject
706
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
707
- attr_reader :overridable
708
- # The account's display preference.
709
- attr_reader :preference
710
- # The effective display preference value.
711
- attr_reader :value
1105
+ def self.inner_class_types
1106
+ @inner_class_types = { display_preference: DisplayPreference }
712
1107
  end
713
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
714
- attr_reader :available
715
- # Attribute for field display_preference
716
- attr_reader :display_preference
717
- end
718
1108
 
719
- class Swish < Stripe::StripeObject
720
- class DisplayPreference < Stripe::StripeObject
721
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
722
- attr_reader :overridable
723
- # The account's display preference.
724
- attr_reader :preference
725
- # The effective display preference value.
726
- attr_reader :value
1109
+ def self.field_remappings
1110
+ @field_remappings = {}
727
1111
  end
728
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
729
- attr_reader :available
730
- # Attribute for field display_preference
731
- attr_reader :display_preference
732
1112
  end
733
1113
 
734
- class Twint < Stripe::StripeObject
1114
+ class PayByBank < Stripe::StripeObject
735
1115
  class DisplayPreference < Stripe::StripeObject
736
1116
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
737
1117
  attr_reader :overridable
@@ -739,2302 +1119,491 @@ module Stripe
739
1119
  attr_reader :preference
740
1120
  # The effective display preference value.
741
1121
  attr_reader :value
1122
+
1123
+ def self.inner_class_types
1124
+ @inner_class_types = {}
1125
+ end
1126
+
1127
+ def self.field_remappings
1128
+ @field_remappings = {}
1129
+ end
742
1130
  end
743
1131
  # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
744
1132
  attr_reader :available
745
1133
  # Attribute for field display_preference
746
1134
  attr_reader :display_preference
747
- end
748
1135
 
749
- class UsBankAccount < Stripe::StripeObject
750
- class DisplayPreference < Stripe::StripeObject
751
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
752
- attr_reader :overridable
753
- # The account's display preference.
754
- attr_reader :preference
755
- # The effective display preference value.
756
- attr_reader :value
1136
+ def self.inner_class_types
1137
+ @inner_class_types = { display_preference: DisplayPreference }
757
1138
  end
758
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
759
- attr_reader :available
760
- # Attribute for field display_preference
761
- attr_reader :display_preference
762
- end
763
1139
 
764
- class WechatPay < Stripe::StripeObject
765
- class DisplayPreference < Stripe::StripeObject
766
- # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
767
- attr_reader :overridable
768
- # The account's display preference.
769
- attr_reader :preference
770
- # The effective display preference value.
771
- attr_reader :value
1140
+ def self.field_remappings
1141
+ @field_remappings = {}
772
1142
  end
773
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
774
- attr_reader :available
775
- # Attribute for field display_preference
776
- attr_reader :display_preference
777
1143
  end
778
1144
 
779
- class Zip < Stripe::StripeObject
1145
+ class Payco < Stripe::StripeObject
780
1146
  class DisplayPreference < Stripe::StripeObject
781
1147
  # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
782
1148
  attr_reader :overridable
783
1149
  # The account's display preference.
784
1150
  attr_reader :preference
785
- # The effective display preference value.
786
- attr_reader :value
787
- end
788
- # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
789
- attr_reader :available
790
- # Attribute for field display_preference
791
- attr_reader :display_preference
792
- end
793
-
794
- class ListParams < Stripe::RequestParams
795
- # The Connect application to filter by.
796
- attr_accessor :application
797
- # 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.
798
- attr_accessor :ending_before
799
- # Specifies which fields in the response should be expanded.
800
- attr_accessor :expand
801
- # A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
802
- attr_accessor :limit
803
- # 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.
804
- attr_accessor :starting_after
805
-
806
- def initialize(
807
- application: nil,
808
- ending_before: nil,
809
- expand: nil,
810
- limit: nil,
811
- starting_after: nil
812
- )
813
- @application = application
814
- @ending_before = ending_before
815
- @expand = expand
816
- @limit = limit
817
- @starting_after = starting_after
818
- end
819
- end
820
-
821
- class CreateParams < Stripe::RequestParams
822
- class AcssDebit < Stripe::RequestParams
823
- class DisplayPreference < Stripe::RequestParams
824
- # The account's preference for whether or not to display this payment method.
825
- attr_accessor :preference
826
-
827
- def initialize(preference: nil)
828
- @preference = preference
829
- end
830
- end
831
- # Whether or not the payment method should be displayed.
832
- attr_accessor :display_preference
833
-
834
- def initialize(display_preference: nil)
835
- @display_preference = display_preference
836
- end
837
- end
838
-
839
- class Affirm < Stripe::RequestParams
840
- class DisplayPreference < Stripe::RequestParams
841
- # The account's preference for whether or not to display this payment method.
842
- attr_accessor :preference
843
-
844
- def initialize(preference: nil)
845
- @preference = preference
846
- end
847
- end
848
- # Whether or not the payment method should be displayed.
849
- attr_accessor :display_preference
850
-
851
- def initialize(display_preference: nil)
852
- @display_preference = display_preference
853
- end
854
- end
855
-
856
- class AfterpayClearpay < Stripe::RequestParams
857
- class DisplayPreference < Stripe::RequestParams
858
- # The account's preference for whether or not to display this payment method.
859
- attr_accessor :preference
860
-
861
- def initialize(preference: nil)
862
- @preference = preference
863
- end
864
- end
865
- # Whether or not the payment method should be displayed.
866
- attr_accessor :display_preference
867
-
868
- def initialize(display_preference: nil)
869
- @display_preference = display_preference
870
- end
871
- end
872
-
873
- class Alipay < Stripe::RequestParams
874
- class DisplayPreference < Stripe::RequestParams
875
- # The account's preference for whether or not to display this payment method.
876
- attr_accessor :preference
877
-
878
- def initialize(preference: nil)
879
- @preference = preference
880
- end
881
- end
882
- # Whether or not the payment method should be displayed.
883
- attr_accessor :display_preference
884
-
885
- def initialize(display_preference: nil)
886
- @display_preference = display_preference
887
- end
888
- end
889
-
890
- class Alma < Stripe::RequestParams
891
- class DisplayPreference < Stripe::RequestParams
892
- # The account's preference for whether or not to display this payment method.
893
- attr_accessor :preference
894
-
895
- def initialize(preference: nil)
896
- @preference = preference
897
- end
898
- end
899
- # Whether or not the payment method should be displayed.
900
- attr_accessor :display_preference
901
-
902
- def initialize(display_preference: nil)
903
- @display_preference = display_preference
904
- end
905
- end
906
-
907
- class AmazonPay < Stripe::RequestParams
908
- class DisplayPreference < Stripe::RequestParams
909
- # The account's preference for whether or not to display this payment method.
910
- attr_accessor :preference
911
-
912
- def initialize(preference: nil)
913
- @preference = preference
914
- end
915
- end
916
- # Whether or not the payment method should be displayed.
917
- attr_accessor :display_preference
918
-
919
- def initialize(display_preference: nil)
920
- @display_preference = display_preference
921
- end
922
- end
923
-
924
- class ApplePay < Stripe::RequestParams
925
- class DisplayPreference < Stripe::RequestParams
926
- # The account's preference for whether or not to display this payment method.
927
- attr_accessor :preference
928
-
929
- def initialize(preference: nil)
930
- @preference = preference
931
- end
932
- end
933
- # Whether or not the payment method should be displayed.
934
- attr_accessor :display_preference
935
-
936
- def initialize(display_preference: nil)
937
- @display_preference = display_preference
938
- end
939
- end
940
-
941
- class ApplePayLater < Stripe::RequestParams
942
- class DisplayPreference < Stripe::RequestParams
943
- # The account's preference for whether or not to display this payment method.
944
- attr_accessor :preference
945
-
946
- def initialize(preference: nil)
947
- @preference = preference
948
- end
949
- end
950
- # Whether or not the payment method should be displayed.
951
- attr_accessor :display_preference
952
-
953
- def initialize(display_preference: nil)
954
- @display_preference = display_preference
955
- end
956
- end
957
-
958
- class AuBecsDebit < Stripe::RequestParams
959
- class DisplayPreference < Stripe::RequestParams
960
- # The account's preference for whether or not to display this payment method.
961
- attr_accessor :preference
962
-
963
- def initialize(preference: nil)
964
- @preference = preference
965
- end
966
- end
967
- # Whether or not the payment method should be displayed.
968
- attr_accessor :display_preference
969
-
970
- def initialize(display_preference: nil)
971
- @display_preference = display_preference
972
- end
973
- end
974
-
975
- class BacsDebit < Stripe::RequestParams
976
- class DisplayPreference < Stripe::RequestParams
977
- # The account's preference for whether or not to display this payment method.
978
- attr_accessor :preference
979
-
980
- def initialize(preference: nil)
981
- @preference = preference
982
- end
983
- end
984
- # Whether or not the payment method should be displayed.
985
- attr_accessor :display_preference
986
-
987
- def initialize(display_preference: nil)
988
- @display_preference = display_preference
989
- end
990
- end
991
-
992
- class Bancontact < Stripe::RequestParams
993
- class DisplayPreference < Stripe::RequestParams
994
- # The account's preference for whether or not to display this payment method.
995
- attr_accessor :preference
996
-
997
- def initialize(preference: nil)
998
- @preference = preference
999
- end
1000
- end
1001
- # Whether or not the payment method should be displayed.
1002
- attr_accessor :display_preference
1003
-
1004
- def initialize(display_preference: nil)
1005
- @display_preference = display_preference
1006
- end
1007
- end
1008
-
1009
- class Billie < Stripe::RequestParams
1010
- class DisplayPreference < Stripe::RequestParams
1011
- # The account's preference for whether or not to display this payment method.
1012
- attr_accessor :preference
1013
-
1014
- def initialize(preference: nil)
1015
- @preference = preference
1016
- end
1017
- end
1018
- # Whether or not the payment method should be displayed.
1019
- attr_accessor :display_preference
1020
-
1021
- def initialize(display_preference: nil)
1022
- @display_preference = display_preference
1023
- end
1024
- end
1025
-
1026
- class Blik < Stripe::RequestParams
1027
- class DisplayPreference < Stripe::RequestParams
1028
- # The account's preference for whether or not to display this payment method.
1029
- attr_accessor :preference
1030
-
1031
- def initialize(preference: nil)
1032
- @preference = preference
1033
- end
1034
- end
1035
- # Whether or not the payment method should be displayed.
1036
- attr_accessor :display_preference
1037
-
1038
- def initialize(display_preference: nil)
1039
- @display_preference = display_preference
1040
- end
1041
- end
1042
-
1043
- class Boleto < Stripe::RequestParams
1044
- class DisplayPreference < Stripe::RequestParams
1045
- # The account's preference for whether or not to display this payment method.
1046
- attr_accessor :preference
1047
-
1048
- def initialize(preference: nil)
1049
- @preference = preference
1050
- end
1051
- end
1052
- # Whether or not the payment method should be displayed.
1053
- attr_accessor :display_preference
1054
-
1055
- def initialize(display_preference: nil)
1056
- @display_preference = display_preference
1057
- end
1058
- end
1059
-
1060
- class Card < Stripe::RequestParams
1061
- class DisplayPreference < Stripe::RequestParams
1062
- # The account's preference for whether or not to display this payment method.
1063
- attr_accessor :preference
1064
-
1065
- def initialize(preference: nil)
1066
- @preference = preference
1067
- end
1068
- end
1069
- # Whether or not the payment method should be displayed.
1070
- attr_accessor :display_preference
1071
-
1072
- def initialize(display_preference: nil)
1073
- @display_preference = display_preference
1074
- end
1075
- end
1076
-
1077
- class CartesBancaires < Stripe::RequestParams
1078
- class DisplayPreference < Stripe::RequestParams
1079
- # The account's preference for whether or not to display this payment method.
1080
- attr_accessor :preference
1081
-
1082
- def initialize(preference: nil)
1083
- @preference = preference
1084
- end
1085
- end
1086
- # Whether or not the payment method should be displayed.
1087
- attr_accessor :display_preference
1088
-
1089
- def initialize(display_preference: nil)
1090
- @display_preference = display_preference
1091
- end
1092
- end
1093
-
1094
- class Cashapp < Stripe::RequestParams
1095
- class DisplayPreference < Stripe::RequestParams
1096
- # The account's preference for whether or not to display this payment method.
1097
- attr_accessor :preference
1098
-
1099
- def initialize(preference: nil)
1100
- @preference = preference
1101
- end
1102
- end
1103
- # Whether or not the payment method should be displayed.
1104
- attr_accessor :display_preference
1105
-
1106
- def initialize(display_preference: nil)
1107
- @display_preference = display_preference
1108
- end
1109
- end
1110
-
1111
- class CustomerBalance < Stripe::RequestParams
1112
- class DisplayPreference < Stripe::RequestParams
1113
- # The account's preference for whether or not to display this payment method.
1114
- attr_accessor :preference
1115
-
1116
- def initialize(preference: nil)
1117
- @preference = preference
1118
- end
1119
- end
1120
- # Whether or not the payment method should be displayed.
1121
- attr_accessor :display_preference
1122
-
1123
- def initialize(display_preference: nil)
1124
- @display_preference = display_preference
1125
- end
1126
- end
1127
-
1128
- class Eps < Stripe::RequestParams
1129
- class DisplayPreference < Stripe::RequestParams
1130
- # The account's preference for whether or not to display this payment method.
1131
- attr_accessor :preference
1132
-
1133
- def initialize(preference: nil)
1134
- @preference = preference
1135
- end
1136
- end
1137
- # Whether or not the payment method should be displayed.
1138
- attr_accessor :display_preference
1139
-
1140
- def initialize(display_preference: nil)
1141
- @display_preference = display_preference
1142
- end
1143
- end
1144
-
1145
- class Fpx < Stripe::RequestParams
1146
- class DisplayPreference < Stripe::RequestParams
1147
- # The account's preference for whether or not to display this payment method.
1148
- attr_accessor :preference
1149
-
1150
- def initialize(preference: nil)
1151
- @preference = preference
1152
- end
1153
- end
1154
- # Whether or not the payment method should be displayed.
1155
- attr_accessor :display_preference
1156
-
1157
- def initialize(display_preference: nil)
1158
- @display_preference = display_preference
1159
- end
1160
- end
1161
-
1162
- class Giropay < Stripe::RequestParams
1163
- class DisplayPreference < Stripe::RequestParams
1164
- # The account's preference for whether or not to display this payment method.
1165
- attr_accessor :preference
1166
-
1167
- def initialize(preference: nil)
1168
- @preference = preference
1169
- end
1170
- end
1171
- # Whether or not the payment method should be displayed.
1172
- attr_accessor :display_preference
1173
-
1174
- def initialize(display_preference: nil)
1175
- @display_preference = display_preference
1176
- end
1177
- end
1178
-
1179
- class GooglePay < Stripe::RequestParams
1180
- class DisplayPreference < Stripe::RequestParams
1181
- # The account's preference for whether or not to display this payment method.
1182
- attr_accessor :preference
1183
-
1184
- def initialize(preference: nil)
1185
- @preference = preference
1186
- end
1187
- end
1188
- # Whether or not the payment method should be displayed.
1189
- attr_accessor :display_preference
1190
-
1191
- def initialize(display_preference: nil)
1192
- @display_preference = display_preference
1193
- end
1194
- end
1195
-
1196
- class Grabpay < Stripe::RequestParams
1197
- class DisplayPreference < Stripe::RequestParams
1198
- # The account's preference for whether or not to display this payment method.
1199
- attr_accessor :preference
1200
-
1201
- def initialize(preference: nil)
1202
- @preference = preference
1203
- end
1204
- end
1205
- # Whether or not the payment method should be displayed.
1206
- attr_accessor :display_preference
1207
-
1208
- def initialize(display_preference: nil)
1209
- @display_preference = display_preference
1210
- end
1211
- end
1212
-
1213
- class Ideal < Stripe::RequestParams
1214
- class DisplayPreference < Stripe::RequestParams
1215
- # The account's preference for whether or not to display this payment method.
1216
- attr_accessor :preference
1217
-
1218
- def initialize(preference: nil)
1219
- @preference = preference
1220
- end
1221
- end
1222
- # Whether or not the payment method should be displayed.
1223
- attr_accessor :display_preference
1224
-
1225
- def initialize(display_preference: nil)
1226
- @display_preference = display_preference
1227
- end
1228
- end
1229
-
1230
- class Jcb < Stripe::RequestParams
1231
- class DisplayPreference < Stripe::RequestParams
1232
- # The account's preference for whether or not to display this payment method.
1233
- attr_accessor :preference
1234
-
1235
- def initialize(preference: nil)
1236
- @preference = preference
1237
- end
1238
- end
1239
- # Whether or not the payment method should be displayed.
1240
- attr_accessor :display_preference
1241
-
1242
- def initialize(display_preference: nil)
1243
- @display_preference = display_preference
1244
- end
1245
- end
1246
-
1247
- class KakaoPay < Stripe::RequestParams
1248
- class DisplayPreference < Stripe::RequestParams
1249
- # The account's preference for whether or not to display this payment method.
1250
- attr_accessor :preference
1251
-
1252
- def initialize(preference: nil)
1253
- @preference = preference
1254
- end
1255
- end
1256
- # Whether or not the payment method should be displayed.
1257
- attr_accessor :display_preference
1258
-
1259
- def initialize(display_preference: nil)
1260
- @display_preference = display_preference
1261
- end
1262
- end
1263
-
1264
- class Klarna < Stripe::RequestParams
1265
- class DisplayPreference < Stripe::RequestParams
1266
- # The account's preference for whether or not to display this payment method.
1267
- attr_accessor :preference
1268
-
1269
- def initialize(preference: nil)
1270
- @preference = preference
1271
- end
1272
- end
1273
- # Whether or not the payment method should be displayed.
1274
- attr_accessor :display_preference
1275
-
1276
- def initialize(display_preference: nil)
1277
- @display_preference = display_preference
1278
- end
1279
- end
1280
-
1281
- class Konbini < Stripe::RequestParams
1282
- class DisplayPreference < Stripe::RequestParams
1283
- # The account's preference for whether or not to display this payment method.
1284
- attr_accessor :preference
1285
-
1286
- def initialize(preference: nil)
1287
- @preference = preference
1288
- end
1289
- end
1290
- # Whether or not the payment method should be displayed.
1291
- attr_accessor :display_preference
1292
-
1293
- def initialize(display_preference: nil)
1294
- @display_preference = display_preference
1295
- end
1296
- end
1297
-
1298
- class KrCard < Stripe::RequestParams
1299
- class DisplayPreference < Stripe::RequestParams
1300
- # The account's preference for whether or not to display this payment method.
1301
- attr_accessor :preference
1302
-
1303
- def initialize(preference: nil)
1304
- @preference = preference
1305
- end
1306
- end
1307
- # Whether or not the payment method should be displayed.
1308
- attr_accessor :display_preference
1309
-
1310
- def initialize(display_preference: nil)
1311
- @display_preference = display_preference
1312
- end
1313
- end
1314
-
1315
- class Link < Stripe::RequestParams
1316
- class DisplayPreference < Stripe::RequestParams
1317
- # The account's preference for whether or not to display this payment method.
1318
- attr_accessor :preference
1319
-
1320
- def initialize(preference: nil)
1321
- @preference = preference
1322
- end
1323
- end
1324
- # Whether or not the payment method should be displayed.
1325
- attr_accessor :display_preference
1326
-
1327
- def initialize(display_preference: nil)
1328
- @display_preference = display_preference
1329
- end
1330
- end
1331
-
1332
- class Mobilepay < Stripe::RequestParams
1333
- class DisplayPreference < Stripe::RequestParams
1334
- # The account's preference for whether or not to display this payment method.
1335
- attr_accessor :preference
1336
-
1337
- def initialize(preference: nil)
1338
- @preference = preference
1339
- end
1340
- end
1341
- # Whether or not the payment method should be displayed.
1342
- attr_accessor :display_preference
1343
-
1344
- def initialize(display_preference: nil)
1345
- @display_preference = display_preference
1346
- end
1347
- end
1348
-
1349
- class Multibanco < Stripe::RequestParams
1350
- class DisplayPreference < Stripe::RequestParams
1351
- # The account's preference for whether or not to display this payment method.
1352
- attr_accessor :preference
1353
-
1354
- def initialize(preference: nil)
1355
- @preference = preference
1356
- end
1357
- end
1358
- # Whether or not the payment method should be displayed.
1359
- attr_accessor :display_preference
1360
-
1361
- def initialize(display_preference: nil)
1362
- @display_preference = display_preference
1363
- end
1364
- end
1365
-
1366
- class NaverPay < Stripe::RequestParams
1367
- class DisplayPreference < Stripe::RequestParams
1368
- # The account's preference for whether or not to display this payment method.
1369
- attr_accessor :preference
1370
-
1371
- def initialize(preference: nil)
1372
- @preference = preference
1373
- end
1374
- end
1375
- # Whether or not the payment method should be displayed.
1376
- attr_accessor :display_preference
1377
-
1378
- def initialize(display_preference: nil)
1379
- @display_preference = display_preference
1380
- end
1381
- end
1382
-
1383
- class NzBankAccount < Stripe::RequestParams
1384
- class DisplayPreference < Stripe::RequestParams
1385
- # The account's preference for whether or not to display this payment method.
1386
- attr_accessor :preference
1387
-
1388
- def initialize(preference: nil)
1389
- @preference = preference
1390
- end
1391
- end
1392
- # Whether or not the payment method should be displayed.
1393
- attr_accessor :display_preference
1394
-
1395
- def initialize(display_preference: nil)
1396
- @display_preference = display_preference
1397
- end
1398
- end
1399
-
1400
- class Oxxo < Stripe::RequestParams
1401
- class DisplayPreference < Stripe::RequestParams
1402
- # The account's preference for whether or not to display this payment method.
1403
- attr_accessor :preference
1404
-
1405
- def initialize(preference: nil)
1406
- @preference = preference
1407
- end
1408
- end
1409
- # Whether or not the payment method should be displayed.
1410
- attr_accessor :display_preference
1411
-
1412
- def initialize(display_preference: nil)
1413
- @display_preference = display_preference
1414
- end
1415
- end
1416
-
1417
- class P24 < Stripe::RequestParams
1418
- class DisplayPreference < Stripe::RequestParams
1419
- # The account's preference for whether or not to display this payment method.
1420
- attr_accessor :preference
1421
-
1422
- def initialize(preference: nil)
1423
- @preference = preference
1424
- end
1425
- end
1426
- # Whether or not the payment method should be displayed.
1427
- attr_accessor :display_preference
1428
-
1429
- def initialize(display_preference: nil)
1430
- @display_preference = display_preference
1431
- end
1432
- end
1433
-
1434
- class PayByBank < Stripe::RequestParams
1435
- class DisplayPreference < Stripe::RequestParams
1436
- # The account's preference for whether or not to display this payment method.
1437
- attr_accessor :preference
1438
-
1439
- def initialize(preference: nil)
1440
- @preference = preference
1441
- end
1442
- end
1443
- # Whether or not the payment method should be displayed.
1444
- attr_accessor :display_preference
1445
-
1446
- def initialize(display_preference: nil)
1447
- @display_preference = display_preference
1448
- end
1449
- end
1450
-
1451
- class Payco < Stripe::RequestParams
1452
- class DisplayPreference < Stripe::RequestParams
1453
- # The account's preference for whether or not to display this payment method.
1454
- attr_accessor :preference
1455
-
1456
- def initialize(preference: nil)
1457
- @preference = preference
1458
- end
1459
- end
1460
- # Whether or not the payment method should be displayed.
1461
- attr_accessor :display_preference
1462
-
1463
- def initialize(display_preference: nil)
1464
- @display_preference = display_preference
1465
- end
1466
- end
1467
-
1468
- class Paynow < Stripe::RequestParams
1469
- class DisplayPreference < Stripe::RequestParams
1470
- # The account's preference for whether or not to display this payment method.
1471
- attr_accessor :preference
1472
-
1473
- def initialize(preference: nil)
1474
- @preference = preference
1475
- end
1476
- end
1477
- # Whether or not the payment method should be displayed.
1478
- attr_accessor :display_preference
1479
-
1480
- def initialize(display_preference: nil)
1481
- @display_preference = display_preference
1482
- end
1483
- end
1484
-
1485
- class Paypal < Stripe::RequestParams
1486
- class DisplayPreference < Stripe::RequestParams
1487
- # The account's preference for whether or not to display this payment method.
1488
- attr_accessor :preference
1489
-
1490
- def initialize(preference: nil)
1491
- @preference = preference
1492
- end
1493
- end
1494
- # Whether or not the payment method should be displayed.
1495
- attr_accessor :display_preference
1496
-
1497
- def initialize(display_preference: nil)
1498
- @display_preference = display_preference
1499
- end
1500
- end
1501
-
1502
- class Pix < Stripe::RequestParams
1503
- class DisplayPreference < Stripe::RequestParams
1504
- # The account's preference for whether or not to display this payment method.
1505
- attr_accessor :preference
1506
-
1507
- def initialize(preference: nil)
1508
- @preference = preference
1509
- end
1510
- end
1511
- # Whether or not the payment method should be displayed.
1512
- attr_accessor :display_preference
1513
-
1514
- def initialize(display_preference: nil)
1515
- @display_preference = display_preference
1516
- end
1517
- end
1518
-
1519
- class Promptpay < Stripe::RequestParams
1520
- class DisplayPreference < Stripe::RequestParams
1521
- # The account's preference for whether or not to display this payment method.
1522
- attr_accessor :preference
1523
-
1524
- def initialize(preference: nil)
1525
- @preference = preference
1526
- end
1527
- end
1528
- # Whether or not the payment method should be displayed.
1529
- attr_accessor :display_preference
1530
-
1531
- def initialize(display_preference: nil)
1532
- @display_preference = display_preference
1533
- end
1534
- end
1535
-
1536
- class RevolutPay < Stripe::RequestParams
1537
- class DisplayPreference < Stripe::RequestParams
1538
- # The account's preference for whether or not to display this payment method.
1539
- attr_accessor :preference
1540
-
1541
- def initialize(preference: nil)
1542
- @preference = preference
1543
- end
1544
- end
1545
- # Whether or not the payment method should be displayed.
1546
- attr_accessor :display_preference
1547
-
1548
- def initialize(display_preference: nil)
1549
- @display_preference = display_preference
1550
- end
1551
- end
1552
-
1553
- class SamsungPay < Stripe::RequestParams
1554
- class DisplayPreference < Stripe::RequestParams
1555
- # The account's preference for whether or not to display this payment method.
1556
- attr_accessor :preference
1557
-
1558
- def initialize(preference: nil)
1559
- @preference = preference
1560
- end
1561
- end
1562
- # Whether or not the payment method should be displayed.
1563
- attr_accessor :display_preference
1564
-
1565
- def initialize(display_preference: nil)
1566
- @display_preference = display_preference
1567
- end
1568
- end
1569
-
1570
- class Satispay < Stripe::RequestParams
1571
- class DisplayPreference < Stripe::RequestParams
1572
- # The account's preference for whether or not to display this payment method.
1573
- attr_accessor :preference
1574
-
1575
- def initialize(preference: nil)
1576
- @preference = preference
1577
- end
1578
- end
1579
- # Whether or not the payment method should be displayed.
1580
- attr_accessor :display_preference
1581
-
1582
- def initialize(display_preference: nil)
1583
- @display_preference = display_preference
1584
- end
1585
- end
1586
-
1587
- class SepaDebit < Stripe::RequestParams
1588
- class DisplayPreference < Stripe::RequestParams
1589
- # The account's preference for whether or not to display this payment method.
1590
- attr_accessor :preference
1591
-
1592
- def initialize(preference: nil)
1593
- @preference = preference
1594
- end
1595
- end
1596
- # Whether or not the payment method should be displayed.
1597
- attr_accessor :display_preference
1598
-
1599
- def initialize(display_preference: nil)
1600
- @display_preference = display_preference
1601
- end
1602
- end
1603
-
1604
- class Sofort < Stripe::RequestParams
1605
- class DisplayPreference < Stripe::RequestParams
1606
- # The account's preference for whether or not to display this payment method.
1607
- attr_accessor :preference
1608
-
1609
- def initialize(preference: nil)
1610
- @preference = preference
1611
- end
1612
- end
1613
- # Whether or not the payment method should be displayed.
1614
- attr_accessor :display_preference
1615
-
1616
- def initialize(display_preference: nil)
1617
- @display_preference = display_preference
1618
- end
1619
- end
1620
-
1621
- class Swish < Stripe::RequestParams
1622
- class DisplayPreference < Stripe::RequestParams
1623
- # The account's preference for whether or not to display this payment method.
1624
- attr_accessor :preference
1625
-
1626
- def initialize(preference: nil)
1627
- @preference = preference
1628
- end
1629
- end
1630
- # Whether or not the payment method should be displayed.
1631
- attr_accessor :display_preference
1632
-
1633
- def initialize(display_preference: nil)
1634
- @display_preference = display_preference
1635
- end
1636
- end
1637
-
1638
- class Twint < Stripe::RequestParams
1639
- class DisplayPreference < Stripe::RequestParams
1640
- # The account's preference for whether or not to display this payment method.
1641
- attr_accessor :preference
1642
-
1643
- def initialize(preference: nil)
1644
- @preference = preference
1645
- end
1646
- end
1647
- # Whether or not the payment method should be displayed.
1648
- attr_accessor :display_preference
1649
-
1650
- def initialize(display_preference: nil)
1651
- @display_preference = display_preference
1652
- end
1653
- end
1654
-
1655
- class UsBankAccount < Stripe::RequestParams
1656
- class DisplayPreference < Stripe::RequestParams
1657
- # The account's preference for whether or not to display this payment method.
1658
- attr_accessor :preference
1659
-
1660
- def initialize(preference: nil)
1661
- @preference = preference
1662
- end
1663
- end
1664
- # Whether or not the payment method should be displayed.
1665
- attr_accessor :display_preference
1666
-
1667
- def initialize(display_preference: nil)
1668
- @display_preference = display_preference
1669
- end
1670
- end
1671
-
1672
- class WechatPay < Stripe::RequestParams
1673
- class DisplayPreference < Stripe::RequestParams
1674
- # The account's preference for whether or not to display this payment method.
1675
- attr_accessor :preference
1676
-
1677
- def initialize(preference: nil)
1678
- @preference = preference
1679
- end
1680
- end
1681
- # Whether or not the payment method should be displayed.
1682
- attr_accessor :display_preference
1683
-
1684
- def initialize(display_preference: nil)
1685
- @display_preference = display_preference
1686
- end
1687
- end
1688
-
1689
- class Zip < Stripe::RequestParams
1690
- class DisplayPreference < Stripe::RequestParams
1691
- # The account's preference for whether or not to display this payment method.
1692
- attr_accessor :preference
1693
-
1694
- def initialize(preference: nil)
1695
- @preference = preference
1696
- end
1697
- end
1698
- # Whether or not the payment method should be displayed.
1699
- attr_accessor :display_preference
1700
-
1701
- def initialize(display_preference: nil)
1702
- @display_preference = display_preference
1703
- end
1704
- end
1705
- # Canadian pre-authorized debit payments, check this [page](https://stripe.com/docs/payments/acss-debit) for more details like country availability.
1706
- attr_accessor :acss_debit
1707
- # [Affirm](https://www.affirm.com/) gives your customers a way to split purchases over a series of payments. Depending on the purchase, they can pay with four interest-free payments (Split Pay) or pay over a longer term (Installments), which might include interest. Check this [page](https://stripe.com/docs/payments/affirm) for more details like country availability.
1708
- attr_accessor :affirm
1709
- # Afterpay gives your customers a way to pay for purchases in installments, check this [page](https://stripe.com/docs/payments/afterpay-clearpay) for more details like country availability. Afterpay is particularly popular among businesses selling fashion, beauty, and sports products.
1710
- attr_accessor :afterpay_clearpay
1711
- # Alipay is a digital wallet in China that has more than a billion active users worldwide. Alipay users can pay on the web or on a mobile device using login credentials or their Alipay app. Alipay has a low dispute rate and reduces fraud by authenticating payments using the customer's login credentials. Check this [page](https://stripe.com/docs/payments/alipay) for more details.
1712
- attr_accessor :alipay
1713
- # Alma is a Buy Now, Pay Later payment method that offers customers the ability to pay in 2, 3, or 4 installments.
1714
- attr_accessor :alma
1715
- # Amazon Pay is a wallet payment method that lets your customers check out the same way as on Amazon.
1716
- attr_accessor :amazon_pay
1717
- # Stripe users can accept [Apple Pay](https://stripe.com/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](https://stripe.com/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
1718
- attr_accessor :apple_pay
1719
- # Apple Pay Later, a payment method for customers to buy now and pay later, gives your customers a way to split purchases into four installments across six weeks.
1720
- attr_accessor :apple_pay_later
1721
- # Stripe users in Australia can accept Bulk Electronic Clearing System (BECS) direct debit payments from customers with an Australian bank account. Check this [page](https://stripe.com/docs/payments/au-becs-debit) for more details.
1722
- attr_accessor :au_becs_debit
1723
- # Stripe users in the UK can accept Bacs Direct Debit payments from customers with a UK bank account, check this [page](https://stripe.com/docs/payments/payment-methods/bacs-debit) for more details.
1724
- attr_accessor :bacs_debit
1725
- # Bancontact is the most popular online payment method in Belgium, with over 15 million cards in circulation. [Customers](https://stripe.com/docs/api/customers) use a Bancontact card or mobile app linked to a Belgian bank account to make online payments that are secure, guaranteed, and confirmed immediately. Check this [page](https://stripe.com/docs/payments/bancontact) for more details.
1726
- attr_accessor :bancontact
1727
- # Billie is a [single-use](https://docs.stripe.com/payments/payment-methods#usage) payment method that offers businesses Pay by Invoice where they offer payment terms ranging from 7-120 days. Customers are redirected from your website or app, authorize the payment with Billie, then return to your website or app. You get [immediate notification](/payments/payment-methods#payment-notification) of whether the payment succeeded or failed.
1728
- attr_accessor :billie
1729
- # BLIK is a [single use](https://stripe.com/docs/payments/payment-methods#usage) payment method that requires customers to authenticate their payments. When customers want to pay online using BLIK, they request a six-digit code from their banking application and enter it into the payment collection form. Check this [page](https://stripe.com/docs/payments/blik) for more details.
1730
- attr_accessor :blik
1731
- # Boleto is an official (regulated by the Central Bank of Brazil) payment method in Brazil. Check this [page](https://stripe.com/docs/payments/boleto) for more details.
1732
- attr_accessor :boleto
1733
- # Cards are a popular way for consumers and businesses to pay online or in person. Stripe supports global and local card networks.
1734
- attr_accessor :card
1735
- # Cartes Bancaires is France's local card network. More than 95% of these cards are co-branded with either Visa or Mastercard, meaning you can process these cards over either Cartes Bancaires or the Visa or Mastercard networks. Check this [page](https://stripe.com/docs/payments/cartes-bancaires) for more details.
1736
- attr_accessor :cartes_bancaires
1737
- # Cash App is a popular consumer app in the US that allows customers to bank, invest, send, and receive money using their digital wallet. Check this [page](https://stripe.com/docs/payments/cash-app-pay) for more details.
1738
- attr_accessor :cashapp
1739
- # Uses a customer’s [cash balance](https://stripe.com/docs/payments/customer-balance) for the payment. The cash balance can be funded via a bank transfer. Check this [page](https://stripe.com/docs/payments/bank-transfers) for more details.
1740
- attr_accessor :customer_balance
1741
- # EPS is an Austria-based payment method that allows customers to complete transactions online using their bank credentials. EPS is supported by all Austrian banks and is accepted by over 80% of Austrian online retailers. Check this [page](https://stripe.com/docs/payments/eps) for more details.
1742
- attr_accessor :eps
1743
- # Specifies which fields in the response should be expanded.
1744
- attr_accessor :expand
1745
- # Financial Process Exchange (FPX) is a Malaysia-based payment method that allows customers to complete transactions online using their bank credentials. Bank Negara Malaysia (BNM), the Central Bank of Malaysia, and eleven other major Malaysian financial institutions are members of the PayNet Group, which owns and operates FPX. It is one of the most popular online payment methods in Malaysia, with nearly 90 million transactions in 2018 according to BNM. Check this [page](https://stripe.com/docs/payments/fpx) for more details.
1746
- attr_accessor :fpx
1747
- # giropay is a German payment method based on online banking, introduced in 2006. It allows customers to complete transactions online using their online banking environment, with funds debited from their bank account. Depending on their bank, customers confirm payments on giropay using a second factor of authentication or a PIN. giropay accounts for 10% of online checkouts in Germany. Check this [page](https://stripe.com/docs/payments/giropay) for more details.
1748
- attr_accessor :giropay
1749
- # Google Pay allows customers to make payments in your app or website using any credit or debit card saved to their Google Account, including those from Google Play, YouTube, Chrome, or an Android device. Use the Google Pay API to request any credit or debit card stored in your customer's Google account. Check this [page](https://stripe.com/docs/google-pay) for more details.
1750
- attr_accessor :google_pay
1751
- # GrabPay is a payment method developed by [Grab](https://www.grab.com/sg/consumer/finance/pay/). GrabPay is a digital wallet - customers maintain a balance in their wallets that they pay out with. Check this [page](https://stripe.com/docs/payments/grabpay) for more details.
1752
- attr_accessor :grabpay
1753
- # iDEAL is a Netherlands-based payment method that allows customers to complete transactions online using their bank credentials. All major Dutch banks are members of Currence, the scheme that operates iDEAL, making it the most popular online payment method in the Netherlands with a share of online transactions close to 55%. Check this [page](https://stripe.com/docs/payments/ideal) for more details.
1754
- attr_accessor :ideal
1755
- # JCB is a credit card company based in Japan. JCB is currently available in Japan to businesses approved by JCB, and available to all businesses in Australia, Canada, Hong Kong, Japan, New Zealand, Singapore, Switzerland, United Kingdom, United States, and all countries in the European Economic Area except Iceland. Check this [page](https://support.stripe.com/questions/accepting-japan-credit-bureau-%28jcb%29-payments) for more details.
1756
- attr_accessor :jcb
1757
- # Kakao Pay is a popular local wallet available in South Korea.
1758
- attr_accessor :kakao_pay
1759
- # Klarna gives customers a range of [payment options](https://stripe.com/docs/payments/klarna#payment-options) during checkout. Available payment options vary depending on the customer's billing address and the transaction amount. These payment options make it convenient for customers to purchase items in all price ranges. Check this [page](https://stripe.com/docs/payments/klarna) for more details.
1760
- attr_accessor :klarna
1761
- # Konbini allows customers in Japan to pay for bills and online purchases at convenience stores with cash. Check this [page](https://stripe.com/docs/payments/konbini) for more details.
1762
- attr_accessor :konbini
1763
- # Korean cards let users pay using locally issued cards from South Korea.
1764
- attr_accessor :kr_card
1765
- # [Link](https://stripe.com/docs/payments/link) is a payment method network. With Link, users save their payment details once, then reuse that information to pay with one click for any business on the network.
1766
- attr_accessor :link
1767
- # MobilePay is a [single-use](https://stripe.com/docs/payments/payment-methods#usage) card wallet payment method used in Denmark and Finland. It allows customers to [authenticate and approve](https://stripe.com/docs/payments/payment-methods#customer-actions) payments using the MobilePay app. Check this [page](https://stripe.com/docs/payments/mobilepay) for more details.
1768
- attr_accessor :mobilepay
1769
- # Stripe users in Europe and the United States can accept Multibanco payments from customers in Portugal using [Sources](https://stripe.com/docs/sources)—a single integration path for creating payments using any supported method.
1770
- attr_accessor :multibanco
1771
- # Configuration name.
1772
- attr_accessor :name
1773
- # Naver Pay is a popular local wallet available in South Korea.
1774
- attr_accessor :naver_pay
1775
- # Stripe users in New Zealand can accept Bulk Electronic Clearing System (BECS) direct debit payments from customers with a New Zeland bank account. Check this [page](https://stripe.com/docs/payments/nz-bank-account) for more details.
1776
- attr_accessor :nz_bank_account
1777
- # OXXO is a Mexican chain of convenience stores with thousands of locations across Latin America and represents nearly 20% of online transactions in Mexico. OXXO allows customers to pay bills and online purchases in-store with cash. Check this [page](https://stripe.com/docs/payments/oxxo) for more details.
1778
- attr_accessor :oxxo
1779
- # Przelewy24 is a Poland-based payment method aggregator that allows customers to complete transactions online using bank transfers and other methods. Bank transfers account for 30% of online payments in Poland and Przelewy24 provides a way for customers to pay with over 165 banks. Check this [page](https://stripe.com/docs/payments/p24) for more details.
1780
- attr_accessor :p24
1781
- # Configuration's parent configuration. Specify to create a child configuration.
1782
- attr_accessor :parent
1783
- # Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
1784
- attr_accessor :pay_by_bank
1785
- # PAYCO is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
1786
- attr_accessor :payco
1787
- # PayNow is a Singapore-based payment method that allows customers to make a payment using their preferred app from participating banks and participating non-bank financial institutions. Check this [page](https://stripe.com/docs/payments/paynow) for more details.
1788
- attr_accessor :paynow
1789
- # PayPal, a digital wallet popular with customers in Europe, allows your customers worldwide to pay using their PayPal account. Check this [page](https://stripe.com/docs/payments/paypal) for more details.
1790
- attr_accessor :paypal
1791
- # Pix is a payment method popular in Brazil. When paying with Pix, customers authenticate and approve payments by scanning a QR code in their preferred banking app. Check this [page](https://docs.stripe.com/payments/pix) for more details.
1792
- attr_accessor :pix
1793
- # PromptPay is a Thailand-based payment method that allows customers to make a payment using their preferred app from participating banks. Check this [page](https://stripe.com/docs/payments/promptpay) for more details.
1794
- attr_accessor :promptpay
1795
- # Revolut Pay, developed by Revolut, a global finance app, is a digital wallet payment method. Revolut Pay uses the customer’s stored balance or cards to fund the payment, and offers the option for non-Revolut customers to save their details after their first purchase.
1796
- attr_accessor :revolut_pay
1797
- # Samsung Pay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
1798
- attr_accessor :samsung_pay
1799
- # Satispay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage) payment method where customers are required to [authenticate](/payments/payment-methods#customer-actions) their payment. Customers pay by being redirected from your website or app, authorizing the payment with Satispay, then returning to your website or app. You get [immediate notification](/payments/payment-methods#payment-notification) of whether the payment succeeded or failed.
1800
- attr_accessor :satispay
1801
- # The [Single Euro Payments Area (SEPA)](https://en.wikipedia.org/wiki/Single_Euro_Payments_Area) is an initiative of the European Union to simplify payments within and across member countries. SEPA established and enforced banking standards to allow for the direct debiting of every EUR-denominated bank account within the SEPA region, check this [page](https://stripe.com/docs/payments/sepa-debit) for more details.
1802
- attr_accessor :sepa_debit
1803
- # Stripe users in Europe and the United States can use the [Payment Intents API](https://stripe.com/docs/payments/payment-intents)—a single integration path for creating payments using any supported method—to accept [Sofort](https://www.sofort.com/) payments from customers. Check this [page](https://stripe.com/docs/payments/sofort) for more details.
1804
- attr_accessor :sofort
1805
- # Swish is a [real-time](https://stripe.com/docs/payments/real-time) payment method popular in Sweden. It allows customers to [authenticate and approve](https://stripe.com/docs/payments/payment-methods#customer-actions) payments using the Swish mobile app and the Swedish BankID mobile app. Check this [page](https://stripe.com/docs/payments/swish) for more details.
1806
- attr_accessor :swish
1807
- # Twint is a payment method popular in Switzerland. It allows customers to pay using their mobile phone. Check this [page](https://docs.stripe.com/payments/twint) for more details.
1808
- attr_accessor :twint
1809
- # Stripe users in the United States can accept ACH direct debit payments from customers with a US bank account using the Automated Clearing House (ACH) payments system operated by Nacha. Check this [page](https://stripe.com/docs/payments/ach-direct-debit) for more details.
1810
- attr_accessor :us_bank_account
1811
- # WeChat, owned by Tencent, is China's leading mobile app with over 1 billion monthly active users. Chinese consumers can use WeChat Pay to pay for goods and services inside of businesses' apps and websites. WeChat Pay users buy most frequently in gaming, e-commerce, travel, online education, and food/nutrition. Check this [page](https://stripe.com/docs/payments/wechat-pay) for more details.
1812
- attr_accessor :wechat_pay
1813
- # Zip gives your customers a way to split purchases over a series of payments. Check this [page](https://stripe.com/docs/payments/zip) for more details like country availability.
1814
- attr_accessor :zip
1815
-
1816
- def initialize(
1817
- acss_debit: nil,
1818
- affirm: nil,
1819
- afterpay_clearpay: nil,
1820
- alipay: nil,
1821
- alma: nil,
1822
- amazon_pay: nil,
1823
- apple_pay: nil,
1824
- apple_pay_later: nil,
1825
- au_becs_debit: nil,
1826
- bacs_debit: nil,
1827
- bancontact: nil,
1828
- billie: nil,
1829
- blik: nil,
1830
- boleto: nil,
1831
- card: nil,
1832
- cartes_bancaires: nil,
1833
- cashapp: nil,
1834
- customer_balance: nil,
1835
- eps: nil,
1836
- expand: nil,
1837
- fpx: nil,
1838
- giropay: nil,
1839
- google_pay: nil,
1840
- grabpay: nil,
1841
- ideal: nil,
1842
- jcb: nil,
1843
- kakao_pay: nil,
1844
- klarna: nil,
1845
- konbini: nil,
1846
- kr_card: nil,
1847
- link: nil,
1848
- mobilepay: nil,
1849
- multibanco: nil,
1850
- name: nil,
1851
- naver_pay: nil,
1852
- nz_bank_account: nil,
1853
- oxxo: nil,
1854
- p24: nil,
1855
- parent: nil,
1856
- pay_by_bank: nil,
1857
- payco: nil,
1858
- paynow: nil,
1859
- paypal: nil,
1860
- pix: nil,
1861
- promptpay: nil,
1862
- revolut_pay: nil,
1863
- samsung_pay: nil,
1864
- satispay: nil,
1865
- sepa_debit: nil,
1866
- sofort: nil,
1867
- swish: nil,
1868
- twint: nil,
1869
- us_bank_account: nil,
1870
- wechat_pay: nil,
1871
- zip: nil
1872
- )
1873
- @acss_debit = acss_debit
1874
- @affirm = affirm
1875
- @afterpay_clearpay = afterpay_clearpay
1876
- @alipay = alipay
1877
- @alma = alma
1878
- @amazon_pay = amazon_pay
1879
- @apple_pay = apple_pay
1880
- @apple_pay_later = apple_pay_later
1881
- @au_becs_debit = au_becs_debit
1882
- @bacs_debit = bacs_debit
1883
- @bancontact = bancontact
1884
- @billie = billie
1885
- @blik = blik
1886
- @boleto = boleto
1887
- @card = card
1888
- @cartes_bancaires = cartes_bancaires
1889
- @cashapp = cashapp
1890
- @customer_balance = customer_balance
1891
- @eps = eps
1892
- @expand = expand
1893
- @fpx = fpx
1894
- @giropay = giropay
1895
- @google_pay = google_pay
1896
- @grabpay = grabpay
1897
- @ideal = ideal
1898
- @jcb = jcb
1899
- @kakao_pay = kakao_pay
1900
- @klarna = klarna
1901
- @konbini = konbini
1902
- @kr_card = kr_card
1903
- @link = link
1904
- @mobilepay = mobilepay
1905
- @multibanco = multibanco
1906
- @name = name
1907
- @naver_pay = naver_pay
1908
- @nz_bank_account = nz_bank_account
1909
- @oxxo = oxxo
1910
- @p24 = p24
1911
- @parent = parent
1912
- @pay_by_bank = pay_by_bank
1913
- @payco = payco
1914
- @paynow = paynow
1915
- @paypal = paypal
1916
- @pix = pix
1917
- @promptpay = promptpay
1918
- @revolut_pay = revolut_pay
1919
- @samsung_pay = samsung_pay
1920
- @satispay = satispay
1921
- @sepa_debit = sepa_debit
1922
- @sofort = sofort
1923
- @swish = swish
1924
- @twint = twint
1925
- @us_bank_account = us_bank_account
1926
- @wechat_pay = wechat_pay
1927
- @zip = zip
1928
- end
1929
- end
1930
-
1931
- class UpdateParams < Stripe::RequestParams
1932
- class AcssDebit < Stripe::RequestParams
1933
- class DisplayPreference < Stripe::RequestParams
1934
- # The account's preference for whether or not to display this payment method.
1935
- attr_accessor :preference
1936
-
1937
- def initialize(preference: nil)
1938
- @preference = preference
1939
- end
1940
- end
1941
- # Whether or not the payment method should be displayed.
1942
- attr_accessor :display_preference
1943
-
1944
- def initialize(display_preference: nil)
1945
- @display_preference = display_preference
1946
- end
1947
- end
1948
-
1949
- class Affirm < Stripe::RequestParams
1950
- class DisplayPreference < Stripe::RequestParams
1951
- # The account's preference for whether or not to display this payment method.
1952
- attr_accessor :preference
1953
-
1954
- def initialize(preference: nil)
1955
- @preference = preference
1956
- end
1957
- end
1958
- # Whether or not the payment method should be displayed.
1959
- attr_accessor :display_preference
1960
-
1961
- def initialize(display_preference: nil)
1962
- @display_preference = display_preference
1963
- end
1964
- end
1965
-
1966
- class AfterpayClearpay < Stripe::RequestParams
1967
- class DisplayPreference < Stripe::RequestParams
1968
- # The account's preference for whether or not to display this payment method.
1969
- attr_accessor :preference
1970
-
1971
- def initialize(preference: nil)
1972
- @preference = preference
1973
- end
1974
- end
1975
- # Whether or not the payment method should be displayed.
1976
- attr_accessor :display_preference
1977
-
1978
- def initialize(display_preference: nil)
1979
- @display_preference = display_preference
1980
- end
1981
- end
1982
-
1983
- class Alipay < Stripe::RequestParams
1984
- class DisplayPreference < Stripe::RequestParams
1985
- # The account's preference for whether or not to display this payment method.
1986
- attr_accessor :preference
1987
-
1988
- def initialize(preference: nil)
1989
- @preference = preference
1990
- end
1991
- end
1992
- # Whether or not the payment method should be displayed.
1993
- attr_accessor :display_preference
1994
-
1995
- def initialize(display_preference: nil)
1996
- @display_preference = display_preference
1997
- end
1998
- end
1999
-
2000
- class Alma < Stripe::RequestParams
2001
- class DisplayPreference < Stripe::RequestParams
2002
- # The account's preference for whether or not to display this payment method.
2003
- attr_accessor :preference
2004
-
2005
- def initialize(preference: nil)
2006
- @preference = preference
2007
- end
2008
- end
2009
- # Whether or not the payment method should be displayed.
2010
- attr_accessor :display_preference
2011
-
2012
- def initialize(display_preference: nil)
2013
- @display_preference = display_preference
2014
- end
2015
- end
2016
-
2017
- class AmazonPay < Stripe::RequestParams
2018
- class DisplayPreference < Stripe::RequestParams
2019
- # The account's preference for whether or not to display this payment method.
2020
- attr_accessor :preference
2021
-
2022
- def initialize(preference: nil)
2023
- @preference = preference
2024
- end
2025
- end
2026
- # Whether or not the payment method should be displayed.
2027
- attr_accessor :display_preference
2028
-
2029
- def initialize(display_preference: nil)
2030
- @display_preference = display_preference
2031
- end
2032
- end
2033
-
2034
- class ApplePay < Stripe::RequestParams
2035
- class DisplayPreference < Stripe::RequestParams
2036
- # The account's preference for whether or not to display this payment method.
2037
- attr_accessor :preference
2038
-
2039
- def initialize(preference: nil)
2040
- @preference = preference
2041
- end
2042
- end
2043
- # Whether or not the payment method should be displayed.
2044
- attr_accessor :display_preference
2045
-
2046
- def initialize(display_preference: nil)
2047
- @display_preference = display_preference
2048
- end
2049
- end
2050
-
2051
- class ApplePayLater < Stripe::RequestParams
2052
- class DisplayPreference < Stripe::RequestParams
2053
- # The account's preference for whether or not to display this payment method.
2054
- attr_accessor :preference
2055
-
2056
- def initialize(preference: nil)
2057
- @preference = preference
2058
- end
2059
- end
2060
- # Whether or not the payment method should be displayed.
2061
- attr_accessor :display_preference
2062
-
2063
- def initialize(display_preference: nil)
2064
- @display_preference = display_preference
2065
- end
2066
- end
2067
-
2068
- class AuBecsDebit < Stripe::RequestParams
2069
- class DisplayPreference < Stripe::RequestParams
2070
- # The account's preference for whether or not to display this payment method.
2071
- attr_accessor :preference
2072
-
2073
- def initialize(preference: nil)
2074
- @preference = preference
2075
- end
2076
- end
2077
- # Whether or not the payment method should be displayed.
2078
- attr_accessor :display_preference
2079
-
2080
- def initialize(display_preference: nil)
2081
- @display_preference = display_preference
2082
- end
2083
- end
2084
-
2085
- class BacsDebit < Stripe::RequestParams
2086
- class DisplayPreference < Stripe::RequestParams
2087
- # The account's preference for whether or not to display this payment method.
2088
- attr_accessor :preference
2089
-
2090
- def initialize(preference: nil)
2091
- @preference = preference
2092
- end
2093
- end
2094
- # Whether or not the payment method should be displayed.
2095
- attr_accessor :display_preference
2096
-
2097
- def initialize(display_preference: nil)
2098
- @display_preference = display_preference
2099
- end
2100
- end
2101
-
2102
- class Bancontact < Stripe::RequestParams
2103
- class DisplayPreference < Stripe::RequestParams
2104
- # The account's preference for whether or not to display this payment method.
2105
- attr_accessor :preference
2106
-
2107
- def initialize(preference: nil)
2108
- @preference = preference
2109
- end
2110
- end
2111
- # Whether or not the payment method should be displayed.
2112
- attr_accessor :display_preference
2113
-
2114
- def initialize(display_preference: nil)
2115
- @display_preference = display_preference
2116
- end
2117
- end
2118
-
2119
- class Billie < Stripe::RequestParams
2120
- class DisplayPreference < Stripe::RequestParams
2121
- # The account's preference for whether or not to display this payment method.
2122
- attr_accessor :preference
2123
-
2124
- def initialize(preference: nil)
2125
- @preference = preference
2126
- end
2127
- end
2128
- # Whether or not the payment method should be displayed.
2129
- attr_accessor :display_preference
2130
-
2131
- def initialize(display_preference: nil)
2132
- @display_preference = display_preference
2133
- end
2134
- end
2135
-
2136
- class Blik < Stripe::RequestParams
2137
- class DisplayPreference < Stripe::RequestParams
2138
- # The account's preference for whether or not to display this payment method.
2139
- attr_accessor :preference
2140
-
2141
- def initialize(preference: nil)
2142
- @preference = preference
2143
- end
2144
- end
2145
- # Whether or not the payment method should be displayed.
2146
- attr_accessor :display_preference
2147
-
2148
- def initialize(display_preference: nil)
2149
- @display_preference = display_preference
2150
- end
2151
- end
2152
-
2153
- class Boleto < Stripe::RequestParams
2154
- class DisplayPreference < Stripe::RequestParams
2155
- # The account's preference for whether or not to display this payment method.
2156
- attr_accessor :preference
2157
-
2158
- def initialize(preference: nil)
2159
- @preference = preference
2160
- end
2161
- end
2162
- # Whether or not the payment method should be displayed.
2163
- attr_accessor :display_preference
2164
-
2165
- def initialize(display_preference: nil)
2166
- @display_preference = display_preference
2167
- end
2168
- end
2169
-
2170
- class Card < Stripe::RequestParams
2171
- class DisplayPreference < Stripe::RequestParams
2172
- # The account's preference for whether or not to display this payment method.
2173
- attr_accessor :preference
2174
-
2175
- def initialize(preference: nil)
2176
- @preference = preference
2177
- end
2178
- end
2179
- # Whether or not the payment method should be displayed.
2180
- attr_accessor :display_preference
2181
-
2182
- def initialize(display_preference: nil)
2183
- @display_preference = display_preference
2184
- end
2185
- end
2186
-
2187
- class CartesBancaires < Stripe::RequestParams
2188
- class DisplayPreference < Stripe::RequestParams
2189
- # The account's preference for whether or not to display this payment method.
2190
- attr_accessor :preference
2191
-
2192
- def initialize(preference: nil)
2193
- @preference = preference
2194
- end
2195
- end
2196
- # Whether or not the payment method should be displayed.
2197
- attr_accessor :display_preference
2198
-
2199
- def initialize(display_preference: nil)
2200
- @display_preference = display_preference
2201
- end
2202
- end
2203
-
2204
- class Cashapp < Stripe::RequestParams
2205
- class DisplayPreference < Stripe::RequestParams
2206
- # The account's preference for whether or not to display this payment method.
2207
- attr_accessor :preference
2208
-
2209
- def initialize(preference: nil)
2210
- @preference = preference
2211
- end
2212
- end
2213
- # Whether or not the payment method should be displayed.
2214
- attr_accessor :display_preference
2215
-
2216
- def initialize(display_preference: nil)
2217
- @display_preference = display_preference
2218
- end
2219
- end
2220
-
2221
- class CustomerBalance < Stripe::RequestParams
2222
- class DisplayPreference < Stripe::RequestParams
2223
- # The account's preference for whether or not to display this payment method.
2224
- attr_accessor :preference
2225
-
2226
- def initialize(preference: nil)
2227
- @preference = preference
2228
- end
2229
- end
2230
- # Whether or not the payment method should be displayed.
2231
- attr_accessor :display_preference
2232
-
2233
- def initialize(display_preference: nil)
2234
- @display_preference = display_preference
2235
- end
2236
- end
2237
-
2238
- class Eps < Stripe::RequestParams
2239
- class DisplayPreference < Stripe::RequestParams
2240
- # The account's preference for whether or not to display this payment method.
2241
- attr_accessor :preference
2242
-
2243
- def initialize(preference: nil)
2244
- @preference = preference
2245
- end
2246
- end
2247
- # Whether or not the payment method should be displayed.
2248
- attr_accessor :display_preference
2249
-
2250
- def initialize(display_preference: nil)
2251
- @display_preference = display_preference
2252
- end
2253
- end
2254
-
2255
- class Fpx < Stripe::RequestParams
2256
- class DisplayPreference < Stripe::RequestParams
2257
- # The account's preference for whether or not to display this payment method.
2258
- attr_accessor :preference
1151
+ # The effective display preference value.
1152
+ attr_reader :value
2259
1153
 
2260
- def initialize(preference: nil)
2261
- @preference = preference
2262
- end
1154
+ def self.inner_class_types
1155
+ @inner_class_types = {}
2263
1156
  end
2264
- # Whether or not the payment method should be displayed.
2265
- attr_accessor :display_preference
2266
1157
 
2267
- def initialize(display_preference: nil)
2268
- @display_preference = display_preference
1158
+ def self.field_remappings
1159
+ @field_remappings = {}
2269
1160
  end
2270
1161
  end
1162
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1163
+ attr_reader :available
1164
+ # Attribute for field display_preference
1165
+ attr_reader :display_preference
2271
1166
 
2272
- class Giropay < Stripe::RequestParams
2273
- class DisplayPreference < Stripe::RequestParams
2274
- # The account's preference for whether or not to display this payment method.
2275
- attr_accessor :preference
2276
-
2277
- def initialize(preference: nil)
2278
- @preference = preference
2279
- end
2280
- end
2281
- # Whether or not the payment method should be displayed.
2282
- attr_accessor :display_preference
2283
-
2284
- def initialize(display_preference: nil)
2285
- @display_preference = display_preference
2286
- end
1167
+ def self.inner_class_types
1168
+ @inner_class_types = { display_preference: DisplayPreference }
2287
1169
  end
2288
1170
 
2289
- class GooglePay < Stripe::RequestParams
2290
- class DisplayPreference < Stripe::RequestParams
2291
- # The account's preference for whether or not to display this payment method.
2292
- attr_accessor :preference
2293
-
2294
- def initialize(preference: nil)
2295
- @preference = preference
2296
- end
2297
- end
2298
- # Whether or not the payment method should be displayed.
2299
- attr_accessor :display_preference
2300
-
2301
- def initialize(display_preference: nil)
2302
- @display_preference = display_preference
2303
- end
1171
+ def self.field_remappings
1172
+ @field_remappings = {}
2304
1173
  end
1174
+ end
2305
1175
 
2306
- class Grabpay < Stripe::RequestParams
2307
- class DisplayPreference < Stripe::RequestParams
2308
- # The account's preference for whether or not to display this payment method.
2309
- attr_accessor :preference
1176
+ class Paynow < Stripe::StripeObject
1177
+ class DisplayPreference < Stripe::StripeObject
1178
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1179
+ attr_reader :overridable
1180
+ # The account's display preference.
1181
+ attr_reader :preference
1182
+ # The effective display preference value.
1183
+ attr_reader :value
2310
1184
 
2311
- def initialize(preference: nil)
2312
- @preference = preference
2313
- end
1185
+ def self.inner_class_types
1186
+ @inner_class_types = {}
2314
1187
  end
2315
- # Whether or not the payment method should be displayed.
2316
- attr_accessor :display_preference
2317
1188
 
2318
- def initialize(display_preference: nil)
2319
- @display_preference = display_preference
1189
+ def self.field_remappings
1190
+ @field_remappings = {}
2320
1191
  end
2321
1192
  end
1193
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1194
+ attr_reader :available
1195
+ # Attribute for field display_preference
1196
+ attr_reader :display_preference
2322
1197
 
2323
- class Ideal < Stripe::RequestParams
2324
- class DisplayPreference < Stripe::RequestParams
2325
- # The account's preference for whether or not to display this payment method.
2326
- attr_accessor :preference
2327
-
2328
- def initialize(preference: nil)
2329
- @preference = preference
2330
- end
2331
- end
2332
- # Whether or not the payment method should be displayed.
2333
- attr_accessor :display_preference
1198
+ def self.inner_class_types
1199
+ @inner_class_types = { display_preference: DisplayPreference }
1200
+ end
2334
1201
 
2335
- def initialize(display_preference: nil)
2336
- @display_preference = display_preference
2337
- end
1202
+ def self.field_remappings
1203
+ @field_remappings = {}
2338
1204
  end
1205
+ end
2339
1206
 
2340
- class Jcb < Stripe::RequestParams
2341
- class DisplayPreference < Stripe::RequestParams
2342
- # The account's preference for whether or not to display this payment method.
2343
- attr_accessor :preference
1207
+ class Paypal < Stripe::StripeObject
1208
+ class DisplayPreference < Stripe::StripeObject
1209
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1210
+ attr_reader :overridable
1211
+ # The account's display preference.
1212
+ attr_reader :preference
1213
+ # The effective display preference value.
1214
+ attr_reader :value
2344
1215
 
2345
- def initialize(preference: nil)
2346
- @preference = preference
2347
- end
1216
+ def self.inner_class_types
1217
+ @inner_class_types = {}
2348
1218
  end
2349
- # Whether or not the payment method should be displayed.
2350
- attr_accessor :display_preference
2351
1219
 
2352
- def initialize(display_preference: nil)
2353
- @display_preference = display_preference
1220
+ def self.field_remappings
1221
+ @field_remappings = {}
2354
1222
  end
2355
1223
  end
1224
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1225
+ attr_reader :available
1226
+ # Attribute for field display_preference
1227
+ attr_reader :display_preference
2356
1228
 
2357
- class KakaoPay < Stripe::RequestParams
2358
- class DisplayPreference < Stripe::RequestParams
2359
- # The account's preference for whether or not to display this payment method.
2360
- attr_accessor :preference
2361
-
2362
- def initialize(preference: nil)
2363
- @preference = preference
2364
- end
2365
- end
2366
- # Whether or not the payment method should be displayed.
2367
- attr_accessor :display_preference
1229
+ def self.inner_class_types
1230
+ @inner_class_types = { display_preference: DisplayPreference }
1231
+ end
2368
1232
 
2369
- def initialize(display_preference: nil)
2370
- @display_preference = display_preference
2371
- end
1233
+ def self.field_remappings
1234
+ @field_remappings = {}
2372
1235
  end
1236
+ end
2373
1237
 
2374
- class Klarna < Stripe::RequestParams
2375
- class DisplayPreference < Stripe::RequestParams
2376
- # The account's preference for whether or not to display this payment method.
2377
- attr_accessor :preference
1238
+ class Pix < Stripe::StripeObject
1239
+ class DisplayPreference < Stripe::StripeObject
1240
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1241
+ attr_reader :overridable
1242
+ # The account's display preference.
1243
+ attr_reader :preference
1244
+ # The effective display preference value.
1245
+ attr_reader :value
2378
1246
 
2379
- def initialize(preference: nil)
2380
- @preference = preference
2381
- end
1247
+ def self.inner_class_types
1248
+ @inner_class_types = {}
2382
1249
  end
2383
- # Whether or not the payment method should be displayed.
2384
- attr_accessor :display_preference
2385
1250
 
2386
- def initialize(display_preference: nil)
2387
- @display_preference = display_preference
1251
+ def self.field_remappings
1252
+ @field_remappings = {}
2388
1253
  end
2389
1254
  end
1255
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1256
+ attr_reader :available
1257
+ # Attribute for field display_preference
1258
+ attr_reader :display_preference
2390
1259
 
2391
- class Konbini < Stripe::RequestParams
2392
- class DisplayPreference < Stripe::RequestParams
2393
- # The account's preference for whether or not to display this payment method.
2394
- attr_accessor :preference
2395
-
2396
- def initialize(preference: nil)
2397
- @preference = preference
2398
- end
2399
- end
2400
- # Whether or not the payment method should be displayed.
2401
- attr_accessor :display_preference
1260
+ def self.inner_class_types
1261
+ @inner_class_types = { display_preference: DisplayPreference }
1262
+ end
2402
1263
 
2403
- def initialize(display_preference: nil)
2404
- @display_preference = display_preference
2405
- end
1264
+ def self.field_remappings
1265
+ @field_remappings = {}
2406
1266
  end
1267
+ end
2407
1268
 
2408
- class KrCard < Stripe::RequestParams
2409
- class DisplayPreference < Stripe::RequestParams
2410
- # The account's preference for whether or not to display this payment method.
2411
- attr_accessor :preference
1269
+ class Promptpay < Stripe::StripeObject
1270
+ class DisplayPreference < Stripe::StripeObject
1271
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1272
+ attr_reader :overridable
1273
+ # The account's display preference.
1274
+ attr_reader :preference
1275
+ # The effective display preference value.
1276
+ attr_reader :value
2412
1277
 
2413
- def initialize(preference: nil)
2414
- @preference = preference
2415
- end
1278
+ def self.inner_class_types
1279
+ @inner_class_types = {}
2416
1280
  end
2417
- # Whether or not the payment method should be displayed.
2418
- attr_accessor :display_preference
2419
1281
 
2420
- def initialize(display_preference: nil)
2421
- @display_preference = display_preference
1282
+ def self.field_remappings
1283
+ @field_remappings = {}
2422
1284
  end
2423
1285
  end
1286
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1287
+ attr_reader :available
1288
+ # Attribute for field display_preference
1289
+ attr_reader :display_preference
2424
1290
 
2425
- class Link < Stripe::RequestParams
2426
- class DisplayPreference < Stripe::RequestParams
2427
- # The account's preference for whether or not to display this payment method.
2428
- attr_accessor :preference
2429
-
2430
- def initialize(preference: nil)
2431
- @preference = preference
2432
- end
2433
- end
2434
- # Whether or not the payment method should be displayed.
2435
- attr_accessor :display_preference
1291
+ def self.inner_class_types
1292
+ @inner_class_types = { display_preference: DisplayPreference }
1293
+ end
2436
1294
 
2437
- def initialize(display_preference: nil)
2438
- @display_preference = display_preference
2439
- end
1295
+ def self.field_remappings
1296
+ @field_remappings = {}
2440
1297
  end
1298
+ end
2441
1299
 
2442
- class Mobilepay < Stripe::RequestParams
2443
- class DisplayPreference < Stripe::RequestParams
2444
- # The account's preference for whether or not to display this payment method.
2445
- attr_accessor :preference
1300
+ class RevolutPay < Stripe::StripeObject
1301
+ class DisplayPreference < Stripe::StripeObject
1302
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1303
+ attr_reader :overridable
1304
+ # The account's display preference.
1305
+ attr_reader :preference
1306
+ # The effective display preference value.
1307
+ attr_reader :value
2446
1308
 
2447
- def initialize(preference: nil)
2448
- @preference = preference
2449
- end
1309
+ def self.inner_class_types
1310
+ @inner_class_types = {}
2450
1311
  end
2451
- # Whether or not the payment method should be displayed.
2452
- attr_accessor :display_preference
2453
1312
 
2454
- def initialize(display_preference: nil)
2455
- @display_preference = display_preference
1313
+ def self.field_remappings
1314
+ @field_remappings = {}
2456
1315
  end
2457
1316
  end
1317
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1318
+ attr_reader :available
1319
+ # Attribute for field display_preference
1320
+ attr_reader :display_preference
2458
1321
 
2459
- class Multibanco < Stripe::RequestParams
2460
- class DisplayPreference < Stripe::RequestParams
2461
- # The account's preference for whether or not to display this payment method.
2462
- attr_accessor :preference
2463
-
2464
- def initialize(preference: nil)
2465
- @preference = preference
2466
- end
2467
- end
2468
- # Whether or not the payment method should be displayed.
2469
- attr_accessor :display_preference
1322
+ def self.inner_class_types
1323
+ @inner_class_types = { display_preference: DisplayPreference }
1324
+ end
2470
1325
 
2471
- def initialize(display_preference: nil)
2472
- @display_preference = display_preference
2473
- end
1326
+ def self.field_remappings
1327
+ @field_remappings = {}
2474
1328
  end
1329
+ end
2475
1330
 
2476
- class NaverPay < Stripe::RequestParams
2477
- class DisplayPreference < Stripe::RequestParams
2478
- # The account's preference for whether or not to display this payment method.
2479
- attr_accessor :preference
1331
+ class SamsungPay < Stripe::StripeObject
1332
+ class DisplayPreference < Stripe::StripeObject
1333
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1334
+ attr_reader :overridable
1335
+ # The account's display preference.
1336
+ attr_reader :preference
1337
+ # The effective display preference value.
1338
+ attr_reader :value
2480
1339
 
2481
- def initialize(preference: nil)
2482
- @preference = preference
2483
- end
1340
+ def self.inner_class_types
1341
+ @inner_class_types = {}
2484
1342
  end
2485
- # Whether or not the payment method should be displayed.
2486
- attr_accessor :display_preference
2487
1343
 
2488
- def initialize(display_preference: nil)
2489
- @display_preference = display_preference
1344
+ def self.field_remappings
1345
+ @field_remappings = {}
2490
1346
  end
2491
1347
  end
1348
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1349
+ attr_reader :available
1350
+ # Attribute for field display_preference
1351
+ attr_reader :display_preference
2492
1352
 
2493
- class NzBankAccount < Stripe::RequestParams
2494
- class DisplayPreference < Stripe::RequestParams
2495
- # The account's preference for whether or not to display this payment method.
2496
- attr_accessor :preference
2497
-
2498
- def initialize(preference: nil)
2499
- @preference = preference
2500
- end
2501
- end
2502
- # Whether or not the payment method should be displayed.
2503
- attr_accessor :display_preference
1353
+ def self.inner_class_types
1354
+ @inner_class_types = { display_preference: DisplayPreference }
1355
+ end
2504
1356
 
2505
- def initialize(display_preference: nil)
2506
- @display_preference = display_preference
2507
- end
1357
+ def self.field_remappings
1358
+ @field_remappings = {}
2508
1359
  end
1360
+ end
2509
1361
 
2510
- class Oxxo < Stripe::RequestParams
2511
- class DisplayPreference < Stripe::RequestParams
2512
- # The account's preference for whether or not to display this payment method.
2513
- attr_accessor :preference
1362
+ class Satispay < Stripe::StripeObject
1363
+ class DisplayPreference < Stripe::StripeObject
1364
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1365
+ attr_reader :overridable
1366
+ # The account's display preference.
1367
+ attr_reader :preference
1368
+ # The effective display preference value.
1369
+ attr_reader :value
2514
1370
 
2515
- def initialize(preference: nil)
2516
- @preference = preference
2517
- end
1371
+ def self.inner_class_types
1372
+ @inner_class_types = {}
2518
1373
  end
2519
- # Whether or not the payment method should be displayed.
2520
- attr_accessor :display_preference
2521
1374
 
2522
- def initialize(display_preference: nil)
2523
- @display_preference = display_preference
1375
+ def self.field_remappings
1376
+ @field_remappings = {}
2524
1377
  end
2525
1378
  end
1379
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1380
+ attr_reader :available
1381
+ # Attribute for field display_preference
1382
+ attr_reader :display_preference
2526
1383
 
2527
- class P24 < Stripe::RequestParams
2528
- class DisplayPreference < Stripe::RequestParams
2529
- # The account's preference for whether or not to display this payment method.
2530
- attr_accessor :preference
2531
-
2532
- def initialize(preference: nil)
2533
- @preference = preference
2534
- end
2535
- end
2536
- # Whether or not the payment method should be displayed.
2537
- attr_accessor :display_preference
1384
+ def self.inner_class_types
1385
+ @inner_class_types = { display_preference: DisplayPreference }
1386
+ end
2538
1387
 
2539
- def initialize(display_preference: nil)
2540
- @display_preference = display_preference
2541
- end
1388
+ def self.field_remappings
1389
+ @field_remappings = {}
2542
1390
  end
1391
+ end
2543
1392
 
2544
- class PayByBank < Stripe::RequestParams
2545
- class DisplayPreference < Stripe::RequestParams
2546
- # The account's preference for whether or not to display this payment method.
2547
- attr_accessor :preference
1393
+ class SepaDebit < Stripe::StripeObject
1394
+ class DisplayPreference < Stripe::StripeObject
1395
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1396
+ attr_reader :overridable
1397
+ # The account's display preference.
1398
+ attr_reader :preference
1399
+ # The effective display preference value.
1400
+ attr_reader :value
2548
1401
 
2549
- def initialize(preference: nil)
2550
- @preference = preference
2551
- end
1402
+ def self.inner_class_types
1403
+ @inner_class_types = {}
2552
1404
  end
2553
- # Whether or not the payment method should be displayed.
2554
- attr_accessor :display_preference
2555
1405
 
2556
- def initialize(display_preference: nil)
2557
- @display_preference = display_preference
1406
+ def self.field_remappings
1407
+ @field_remappings = {}
2558
1408
  end
2559
1409
  end
1410
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1411
+ attr_reader :available
1412
+ # Attribute for field display_preference
1413
+ attr_reader :display_preference
2560
1414
 
2561
- class Payco < Stripe::RequestParams
2562
- class DisplayPreference < Stripe::RequestParams
2563
- # The account's preference for whether or not to display this payment method.
2564
- attr_accessor :preference
2565
-
2566
- def initialize(preference: nil)
2567
- @preference = preference
2568
- end
2569
- end
2570
- # Whether or not the payment method should be displayed.
2571
- attr_accessor :display_preference
1415
+ def self.inner_class_types
1416
+ @inner_class_types = { display_preference: DisplayPreference }
1417
+ end
2572
1418
 
2573
- def initialize(display_preference: nil)
2574
- @display_preference = display_preference
2575
- end
1419
+ def self.field_remappings
1420
+ @field_remappings = {}
2576
1421
  end
1422
+ end
2577
1423
 
2578
- class Paynow < Stripe::RequestParams
2579
- class DisplayPreference < Stripe::RequestParams
2580
- # The account's preference for whether or not to display this payment method.
2581
- attr_accessor :preference
1424
+ class Sofort < Stripe::StripeObject
1425
+ class DisplayPreference < Stripe::StripeObject
1426
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1427
+ attr_reader :overridable
1428
+ # The account's display preference.
1429
+ attr_reader :preference
1430
+ # The effective display preference value.
1431
+ attr_reader :value
2582
1432
 
2583
- def initialize(preference: nil)
2584
- @preference = preference
2585
- end
1433
+ def self.inner_class_types
1434
+ @inner_class_types = {}
2586
1435
  end
2587
- # Whether or not the payment method should be displayed.
2588
- attr_accessor :display_preference
2589
1436
 
2590
- def initialize(display_preference: nil)
2591
- @display_preference = display_preference
1437
+ def self.field_remappings
1438
+ @field_remappings = {}
2592
1439
  end
2593
1440
  end
1441
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1442
+ attr_reader :available
1443
+ # Attribute for field display_preference
1444
+ attr_reader :display_preference
2594
1445
 
2595
- class Paypal < Stripe::RequestParams
2596
- class DisplayPreference < Stripe::RequestParams
2597
- # The account's preference for whether or not to display this payment method.
2598
- attr_accessor :preference
2599
-
2600
- def initialize(preference: nil)
2601
- @preference = preference
2602
- end
2603
- end
2604
- # Whether or not the payment method should be displayed.
2605
- attr_accessor :display_preference
1446
+ def self.inner_class_types
1447
+ @inner_class_types = { display_preference: DisplayPreference }
1448
+ end
2606
1449
 
2607
- def initialize(display_preference: nil)
2608
- @display_preference = display_preference
2609
- end
1450
+ def self.field_remappings
1451
+ @field_remappings = {}
2610
1452
  end
1453
+ end
2611
1454
 
2612
- class Pix < Stripe::RequestParams
2613
- class DisplayPreference < Stripe::RequestParams
2614
- # The account's preference for whether or not to display this payment method.
2615
- attr_accessor :preference
1455
+ class Swish < Stripe::StripeObject
1456
+ class DisplayPreference < Stripe::StripeObject
1457
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1458
+ attr_reader :overridable
1459
+ # The account's display preference.
1460
+ attr_reader :preference
1461
+ # The effective display preference value.
1462
+ attr_reader :value
2616
1463
 
2617
- def initialize(preference: nil)
2618
- @preference = preference
2619
- end
1464
+ def self.inner_class_types
1465
+ @inner_class_types = {}
2620
1466
  end
2621
- # Whether or not the payment method should be displayed.
2622
- attr_accessor :display_preference
2623
1467
 
2624
- def initialize(display_preference: nil)
2625
- @display_preference = display_preference
1468
+ def self.field_remappings
1469
+ @field_remappings = {}
2626
1470
  end
2627
1471
  end
1472
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1473
+ attr_reader :available
1474
+ # Attribute for field display_preference
1475
+ attr_reader :display_preference
2628
1476
 
2629
- class Promptpay < Stripe::RequestParams
2630
- class DisplayPreference < Stripe::RequestParams
2631
- # The account's preference for whether or not to display this payment method.
2632
- attr_accessor :preference
2633
-
2634
- def initialize(preference: nil)
2635
- @preference = preference
2636
- end
2637
- end
2638
- # Whether or not the payment method should be displayed.
2639
- attr_accessor :display_preference
1477
+ def self.inner_class_types
1478
+ @inner_class_types = { display_preference: DisplayPreference }
1479
+ end
2640
1480
 
2641
- def initialize(display_preference: nil)
2642
- @display_preference = display_preference
2643
- end
1481
+ def self.field_remappings
1482
+ @field_remappings = {}
2644
1483
  end
1484
+ end
2645
1485
 
2646
- class RevolutPay < Stripe::RequestParams
2647
- class DisplayPreference < Stripe::RequestParams
2648
- # The account's preference for whether or not to display this payment method.
2649
- attr_accessor :preference
1486
+ class Twint < Stripe::StripeObject
1487
+ class DisplayPreference < Stripe::StripeObject
1488
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1489
+ attr_reader :overridable
1490
+ # The account's display preference.
1491
+ attr_reader :preference
1492
+ # The effective display preference value.
1493
+ attr_reader :value
2650
1494
 
2651
- def initialize(preference: nil)
2652
- @preference = preference
2653
- end
1495
+ def self.inner_class_types
1496
+ @inner_class_types = {}
2654
1497
  end
2655
- # Whether or not the payment method should be displayed.
2656
- attr_accessor :display_preference
2657
1498
 
2658
- def initialize(display_preference: nil)
2659
- @display_preference = display_preference
1499
+ def self.field_remappings
1500
+ @field_remappings = {}
2660
1501
  end
2661
1502
  end
1503
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1504
+ attr_reader :available
1505
+ # Attribute for field display_preference
1506
+ attr_reader :display_preference
2662
1507
 
2663
- class SamsungPay < Stripe::RequestParams
2664
- class DisplayPreference < Stripe::RequestParams
2665
- # The account's preference for whether or not to display this payment method.
2666
- attr_accessor :preference
2667
-
2668
- def initialize(preference: nil)
2669
- @preference = preference
2670
- end
2671
- end
2672
- # Whether or not the payment method should be displayed.
2673
- attr_accessor :display_preference
1508
+ def self.inner_class_types
1509
+ @inner_class_types = { display_preference: DisplayPreference }
1510
+ end
2674
1511
 
2675
- def initialize(display_preference: nil)
2676
- @display_preference = display_preference
2677
- end
1512
+ def self.field_remappings
1513
+ @field_remappings = {}
2678
1514
  end
1515
+ end
2679
1516
 
2680
- class Satispay < Stripe::RequestParams
2681
- class DisplayPreference < Stripe::RequestParams
2682
- # The account's preference for whether or not to display this payment method.
2683
- attr_accessor :preference
1517
+ class UsBankAccount < Stripe::StripeObject
1518
+ class DisplayPreference < Stripe::StripeObject
1519
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1520
+ attr_reader :overridable
1521
+ # The account's display preference.
1522
+ attr_reader :preference
1523
+ # The effective display preference value.
1524
+ attr_reader :value
2684
1525
 
2685
- def initialize(preference: nil)
2686
- @preference = preference
2687
- end
1526
+ def self.inner_class_types
1527
+ @inner_class_types = {}
2688
1528
  end
2689
- # Whether or not the payment method should be displayed.
2690
- attr_accessor :display_preference
2691
1529
 
2692
- def initialize(display_preference: nil)
2693
- @display_preference = display_preference
1530
+ def self.field_remappings
1531
+ @field_remappings = {}
2694
1532
  end
2695
1533
  end
1534
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1535
+ attr_reader :available
1536
+ # Attribute for field display_preference
1537
+ attr_reader :display_preference
2696
1538
 
2697
- class SepaDebit < Stripe::RequestParams
2698
- class DisplayPreference < Stripe::RequestParams
2699
- # The account's preference for whether or not to display this payment method.
2700
- attr_accessor :preference
2701
-
2702
- def initialize(preference: nil)
2703
- @preference = preference
2704
- end
2705
- end
2706
- # Whether or not the payment method should be displayed.
2707
- attr_accessor :display_preference
1539
+ def self.inner_class_types
1540
+ @inner_class_types = { display_preference: DisplayPreference }
1541
+ end
2708
1542
 
2709
- def initialize(display_preference: nil)
2710
- @display_preference = display_preference
2711
- end
1543
+ def self.field_remappings
1544
+ @field_remappings = {}
2712
1545
  end
1546
+ end
2713
1547
 
2714
- class Sofort < Stripe::RequestParams
2715
- class DisplayPreference < Stripe::RequestParams
2716
- # The account's preference for whether or not to display this payment method.
2717
- attr_accessor :preference
1548
+ class WechatPay < Stripe::StripeObject
1549
+ class DisplayPreference < Stripe::StripeObject
1550
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1551
+ attr_reader :overridable
1552
+ # The account's display preference.
1553
+ attr_reader :preference
1554
+ # The effective display preference value.
1555
+ attr_reader :value
2718
1556
 
2719
- def initialize(preference: nil)
2720
- @preference = preference
2721
- end
1557
+ def self.inner_class_types
1558
+ @inner_class_types = {}
2722
1559
  end
2723
- # Whether or not the payment method should be displayed.
2724
- attr_accessor :display_preference
2725
1560
 
2726
- def initialize(display_preference: nil)
2727
- @display_preference = display_preference
1561
+ def self.field_remappings
1562
+ @field_remappings = {}
2728
1563
  end
2729
1564
  end
1565
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1566
+ attr_reader :available
1567
+ # Attribute for field display_preference
1568
+ attr_reader :display_preference
2730
1569
 
2731
- class Swish < Stripe::RequestParams
2732
- class DisplayPreference < Stripe::RequestParams
2733
- # The account's preference for whether or not to display this payment method.
2734
- attr_accessor :preference
2735
-
2736
- def initialize(preference: nil)
2737
- @preference = preference
2738
- end
2739
- end
2740
- # Whether or not the payment method should be displayed.
2741
- attr_accessor :display_preference
1570
+ def self.inner_class_types
1571
+ @inner_class_types = { display_preference: DisplayPreference }
1572
+ end
2742
1573
 
2743
- def initialize(display_preference: nil)
2744
- @display_preference = display_preference
2745
- end
1574
+ def self.field_remappings
1575
+ @field_remappings = {}
2746
1576
  end
1577
+ end
2747
1578
 
2748
- class Twint < Stripe::RequestParams
2749
- class DisplayPreference < Stripe::RequestParams
2750
- # The account's preference for whether or not to display this payment method.
2751
- attr_accessor :preference
1579
+ class Zip < Stripe::StripeObject
1580
+ class DisplayPreference < Stripe::StripeObject
1581
+ # For child configs, whether or not the account's preference will be observed. If `false`, the parent configuration's default is used.
1582
+ attr_reader :overridable
1583
+ # The account's display preference.
1584
+ attr_reader :preference
1585
+ # The effective display preference value.
1586
+ attr_reader :value
2752
1587
 
2753
- def initialize(preference: nil)
2754
- @preference = preference
2755
- end
1588
+ def self.inner_class_types
1589
+ @inner_class_types = {}
2756
1590
  end
2757
- # Whether or not the payment method should be displayed.
2758
- attr_accessor :display_preference
2759
1591
 
2760
- def initialize(display_preference: nil)
2761
- @display_preference = display_preference
1592
+ def self.field_remappings
1593
+ @field_remappings = {}
2762
1594
  end
2763
1595
  end
1596
+ # Whether this payment method may be offered at checkout. True if `display_preference` is `on` and the payment method's capability is active.
1597
+ attr_reader :available
1598
+ # Attribute for field display_preference
1599
+ attr_reader :display_preference
2764
1600
 
2765
- class UsBankAccount < Stripe::RequestParams
2766
- class DisplayPreference < Stripe::RequestParams
2767
- # The account's preference for whether or not to display this payment method.
2768
- attr_accessor :preference
2769
-
2770
- def initialize(preference: nil)
2771
- @preference = preference
2772
- end
2773
- end
2774
- # Whether or not the payment method should be displayed.
2775
- attr_accessor :display_preference
1601
+ def self.inner_class_types
1602
+ @inner_class_types = { display_preference: DisplayPreference }
1603
+ end
2776
1604
 
2777
- def initialize(display_preference: nil)
2778
- @display_preference = display_preference
2779
- end
2780
- end
2781
-
2782
- class WechatPay < Stripe::RequestParams
2783
- class DisplayPreference < Stripe::RequestParams
2784
- # The account's preference for whether or not to display this payment method.
2785
- attr_accessor :preference
2786
-
2787
- def initialize(preference: nil)
2788
- @preference = preference
2789
- end
2790
- end
2791
- # Whether or not the payment method should be displayed.
2792
- attr_accessor :display_preference
2793
-
2794
- def initialize(display_preference: nil)
2795
- @display_preference = display_preference
2796
- end
2797
- end
2798
-
2799
- class Zip < Stripe::RequestParams
2800
- class DisplayPreference < Stripe::RequestParams
2801
- # The account's preference for whether or not to display this payment method.
2802
- attr_accessor :preference
2803
-
2804
- def initialize(preference: nil)
2805
- @preference = preference
2806
- end
2807
- end
2808
- # Whether or not the payment method should be displayed.
2809
- attr_accessor :display_preference
2810
-
2811
- def initialize(display_preference: nil)
2812
- @display_preference = display_preference
2813
- end
2814
- end
2815
- # Canadian pre-authorized debit payments, check this [page](https://stripe.com/docs/payments/acss-debit) for more details like country availability.
2816
- attr_accessor :acss_debit
2817
- # Whether the configuration can be used for new payments.
2818
- attr_accessor :active
2819
- # [Affirm](https://www.affirm.com/) gives your customers a way to split purchases over a series of payments. Depending on the purchase, they can pay with four interest-free payments (Split Pay) or pay over a longer term (Installments), which might include interest. Check this [page](https://stripe.com/docs/payments/affirm) for more details like country availability.
2820
- attr_accessor :affirm
2821
- # Afterpay gives your customers a way to pay for purchases in installments, check this [page](https://stripe.com/docs/payments/afterpay-clearpay) for more details like country availability. Afterpay is particularly popular among businesses selling fashion, beauty, and sports products.
2822
- attr_accessor :afterpay_clearpay
2823
- # Alipay is a digital wallet in China that has more than a billion active users worldwide. Alipay users can pay on the web or on a mobile device using login credentials or their Alipay app. Alipay has a low dispute rate and reduces fraud by authenticating payments using the customer's login credentials. Check this [page](https://stripe.com/docs/payments/alipay) for more details.
2824
- attr_accessor :alipay
2825
- # Alma is a Buy Now, Pay Later payment method that offers customers the ability to pay in 2, 3, or 4 installments.
2826
- attr_accessor :alma
2827
- # Amazon Pay is a wallet payment method that lets your customers check out the same way as on Amazon.
2828
- attr_accessor :amazon_pay
2829
- # Stripe users can accept [Apple Pay](https://stripe.com/payments/apple-pay) in iOS applications in iOS 9 and later, and on the web in Safari starting with iOS 10 or macOS Sierra. There are no additional fees to process Apple Pay payments, and the [pricing](https://stripe.com/pricing) is the same as other card transactions. Check this [page](https://stripe.com/docs/apple-pay) for more details.
2830
- attr_accessor :apple_pay
2831
- # Apple Pay Later, a payment method for customers to buy now and pay later, gives your customers a way to split purchases into four installments across six weeks.
2832
- attr_accessor :apple_pay_later
2833
- # Stripe users in Australia can accept Bulk Electronic Clearing System (BECS) direct debit payments from customers with an Australian bank account. Check this [page](https://stripe.com/docs/payments/au-becs-debit) for more details.
2834
- attr_accessor :au_becs_debit
2835
- # Stripe users in the UK can accept Bacs Direct Debit payments from customers with a UK bank account, check this [page](https://stripe.com/docs/payments/payment-methods/bacs-debit) for more details.
2836
- attr_accessor :bacs_debit
2837
- # Bancontact is the most popular online payment method in Belgium, with over 15 million cards in circulation. [Customers](https://stripe.com/docs/api/customers) use a Bancontact card or mobile app linked to a Belgian bank account to make online payments that are secure, guaranteed, and confirmed immediately. Check this [page](https://stripe.com/docs/payments/bancontact) for more details.
2838
- attr_accessor :bancontact
2839
- # Billie is a [single-use](https://docs.stripe.com/payments/payment-methods#usage) payment method that offers businesses Pay by Invoice where they offer payment terms ranging from 7-120 days. Customers are redirected from your website or app, authorize the payment with Billie, then return to your website or app. You get [immediate notification](/payments/payment-methods#payment-notification) of whether the payment succeeded or failed.
2840
- attr_accessor :billie
2841
- # BLIK is a [single use](https://stripe.com/docs/payments/payment-methods#usage) payment method that requires customers to authenticate their payments. When customers want to pay online using BLIK, they request a six-digit code from their banking application and enter it into the payment collection form. Check this [page](https://stripe.com/docs/payments/blik) for more details.
2842
- attr_accessor :blik
2843
- # Boleto is an official (regulated by the Central Bank of Brazil) payment method in Brazil. Check this [page](https://stripe.com/docs/payments/boleto) for more details.
2844
- attr_accessor :boleto
2845
- # Cards are a popular way for consumers and businesses to pay online or in person. Stripe supports global and local card networks.
2846
- attr_accessor :card
2847
- # Cartes Bancaires is France's local card network. More than 95% of these cards are co-branded with either Visa or Mastercard, meaning you can process these cards over either Cartes Bancaires or the Visa or Mastercard networks. Check this [page](https://stripe.com/docs/payments/cartes-bancaires) for more details.
2848
- attr_accessor :cartes_bancaires
2849
- # Cash App is a popular consumer app in the US that allows customers to bank, invest, send, and receive money using their digital wallet. Check this [page](https://stripe.com/docs/payments/cash-app-pay) for more details.
2850
- attr_accessor :cashapp
2851
- # Uses a customer’s [cash balance](https://stripe.com/docs/payments/customer-balance) for the payment. The cash balance can be funded via a bank transfer. Check this [page](https://stripe.com/docs/payments/bank-transfers) for more details.
2852
- attr_accessor :customer_balance
2853
- # EPS is an Austria-based payment method that allows customers to complete transactions online using their bank credentials. EPS is supported by all Austrian banks and is accepted by over 80% of Austrian online retailers. Check this [page](https://stripe.com/docs/payments/eps) for more details.
2854
- attr_accessor :eps
2855
- # Specifies which fields in the response should be expanded.
2856
- attr_accessor :expand
2857
- # Financial Process Exchange (FPX) is a Malaysia-based payment method that allows customers to complete transactions online using their bank credentials. Bank Negara Malaysia (BNM), the Central Bank of Malaysia, and eleven other major Malaysian financial institutions are members of the PayNet Group, which owns and operates FPX. It is one of the most popular online payment methods in Malaysia, with nearly 90 million transactions in 2018 according to BNM. Check this [page](https://stripe.com/docs/payments/fpx) for more details.
2858
- attr_accessor :fpx
2859
- # giropay is a German payment method based on online banking, introduced in 2006. It allows customers to complete transactions online using their online banking environment, with funds debited from their bank account. Depending on their bank, customers confirm payments on giropay using a second factor of authentication or a PIN. giropay accounts for 10% of online checkouts in Germany. Check this [page](https://stripe.com/docs/payments/giropay) for more details.
2860
- attr_accessor :giropay
2861
- # Google Pay allows customers to make payments in your app or website using any credit or debit card saved to their Google Account, including those from Google Play, YouTube, Chrome, or an Android device. Use the Google Pay API to request any credit or debit card stored in your customer's Google account. Check this [page](https://stripe.com/docs/google-pay) for more details.
2862
- attr_accessor :google_pay
2863
- # GrabPay is a payment method developed by [Grab](https://www.grab.com/sg/consumer/finance/pay/). GrabPay is a digital wallet - customers maintain a balance in their wallets that they pay out with. Check this [page](https://stripe.com/docs/payments/grabpay) for more details.
2864
- attr_accessor :grabpay
2865
- # iDEAL is a Netherlands-based payment method that allows customers to complete transactions online using their bank credentials. All major Dutch banks are members of Currence, the scheme that operates iDEAL, making it the most popular online payment method in the Netherlands with a share of online transactions close to 55%. Check this [page](https://stripe.com/docs/payments/ideal) for more details.
2866
- attr_accessor :ideal
2867
- # JCB is a credit card company based in Japan. JCB is currently available in Japan to businesses approved by JCB, and available to all businesses in Australia, Canada, Hong Kong, Japan, New Zealand, Singapore, Switzerland, United Kingdom, United States, and all countries in the European Economic Area except Iceland. Check this [page](https://support.stripe.com/questions/accepting-japan-credit-bureau-%28jcb%29-payments) for more details.
2868
- attr_accessor :jcb
2869
- # Kakao Pay is a popular local wallet available in South Korea.
2870
- attr_accessor :kakao_pay
2871
- # Klarna gives customers a range of [payment options](https://stripe.com/docs/payments/klarna#payment-options) during checkout. Available payment options vary depending on the customer's billing address and the transaction amount. These payment options make it convenient for customers to purchase items in all price ranges. Check this [page](https://stripe.com/docs/payments/klarna) for more details.
2872
- attr_accessor :klarna
2873
- # Konbini allows customers in Japan to pay for bills and online purchases at convenience stores with cash. Check this [page](https://stripe.com/docs/payments/konbini) for more details.
2874
- attr_accessor :konbini
2875
- # Korean cards let users pay using locally issued cards from South Korea.
2876
- attr_accessor :kr_card
2877
- # [Link](https://stripe.com/docs/payments/link) is a payment method network. With Link, users save their payment details once, then reuse that information to pay with one click for any business on the network.
2878
- attr_accessor :link
2879
- # MobilePay is a [single-use](https://stripe.com/docs/payments/payment-methods#usage) card wallet payment method used in Denmark and Finland. It allows customers to [authenticate and approve](https://stripe.com/docs/payments/payment-methods#customer-actions) payments using the MobilePay app. Check this [page](https://stripe.com/docs/payments/mobilepay) for more details.
2880
- attr_accessor :mobilepay
2881
- # Stripe users in Europe and the United States can accept Multibanco payments from customers in Portugal using [Sources](https://stripe.com/docs/sources)—a single integration path for creating payments using any supported method.
2882
- attr_accessor :multibanco
2883
- # Configuration name.
2884
- attr_accessor :name
2885
- # Naver Pay is a popular local wallet available in South Korea.
2886
- attr_accessor :naver_pay
2887
- # Stripe users in New Zealand can accept Bulk Electronic Clearing System (BECS) direct debit payments from customers with a New Zeland bank account. Check this [page](https://stripe.com/docs/payments/nz-bank-account) for more details.
2888
- attr_accessor :nz_bank_account
2889
- # OXXO is a Mexican chain of convenience stores with thousands of locations across Latin America and represents nearly 20% of online transactions in Mexico. OXXO allows customers to pay bills and online purchases in-store with cash. Check this [page](https://stripe.com/docs/payments/oxxo) for more details.
2890
- attr_accessor :oxxo
2891
- # Przelewy24 is a Poland-based payment method aggregator that allows customers to complete transactions online using bank transfers and other methods. Bank transfers account for 30% of online payments in Poland and Przelewy24 provides a way for customers to pay with over 165 banks. Check this [page](https://stripe.com/docs/payments/p24) for more details.
2892
- attr_accessor :p24
2893
- # Pay by bank is a redirect payment method backed by bank transfers. A customer is redirected to their bank to authorize a bank transfer for a given amount. This removes a lot of the error risks inherent in waiting for the customer to initiate a transfer themselves, and is less expensive than card payments.
2894
- attr_accessor :pay_by_bank
2895
- # PAYCO is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
2896
- attr_accessor :payco
2897
- # PayNow is a Singapore-based payment method that allows customers to make a payment using their preferred app from participating banks and participating non-bank financial institutions. Check this [page](https://stripe.com/docs/payments/paynow) for more details.
2898
- attr_accessor :paynow
2899
- # PayPal, a digital wallet popular with customers in Europe, allows your customers worldwide to pay using their PayPal account. Check this [page](https://stripe.com/docs/payments/paypal) for more details.
2900
- attr_accessor :paypal
2901
- # Pix is a payment method popular in Brazil. When paying with Pix, customers authenticate and approve payments by scanning a QR code in their preferred banking app. Check this [page](https://docs.stripe.com/payments/pix) for more details.
2902
- attr_accessor :pix
2903
- # PromptPay is a Thailand-based payment method that allows customers to make a payment using their preferred app from participating banks. Check this [page](https://stripe.com/docs/payments/promptpay) for more details.
2904
- attr_accessor :promptpay
2905
- # Revolut Pay, developed by Revolut, a global finance app, is a digital wallet payment method. Revolut Pay uses the customer’s stored balance or cards to fund the payment, and offers the option for non-Revolut customers to save their details after their first purchase.
2906
- attr_accessor :revolut_pay
2907
- # Samsung Pay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage local wallet available in South Korea.
2908
- attr_accessor :samsung_pay
2909
- # Satispay is a [single-use](https://docs.stripe.com/payments/payment-methods#usage) payment method where customers are required to [authenticate](/payments/payment-methods#customer-actions) their payment. Customers pay by being redirected from your website or app, authorizing the payment with Satispay, then returning to your website or app. You get [immediate notification](/payments/payment-methods#payment-notification) of whether the payment succeeded or failed.
2910
- attr_accessor :satispay
2911
- # The [Single Euro Payments Area (SEPA)](https://en.wikipedia.org/wiki/Single_Euro_Payments_Area) is an initiative of the European Union to simplify payments within and across member countries. SEPA established and enforced banking standards to allow for the direct debiting of every EUR-denominated bank account within the SEPA region, check this [page](https://stripe.com/docs/payments/sepa-debit) for more details.
2912
- attr_accessor :sepa_debit
2913
- # Stripe users in Europe and the United States can use the [Payment Intents API](https://stripe.com/docs/payments/payment-intents)—a single integration path for creating payments using any supported method—to accept [Sofort](https://www.sofort.com/) payments from customers. Check this [page](https://stripe.com/docs/payments/sofort) for more details.
2914
- attr_accessor :sofort
2915
- # Swish is a [real-time](https://stripe.com/docs/payments/real-time) payment method popular in Sweden. It allows customers to [authenticate and approve](https://stripe.com/docs/payments/payment-methods#customer-actions) payments using the Swish mobile app and the Swedish BankID mobile app. Check this [page](https://stripe.com/docs/payments/swish) for more details.
2916
- attr_accessor :swish
2917
- # Twint is a payment method popular in Switzerland. It allows customers to pay using their mobile phone. Check this [page](https://docs.stripe.com/payments/twint) for more details.
2918
- attr_accessor :twint
2919
- # Stripe users in the United States can accept ACH direct debit payments from customers with a US bank account using the Automated Clearing House (ACH) payments system operated by Nacha. Check this [page](https://stripe.com/docs/payments/ach-direct-debit) for more details.
2920
- attr_accessor :us_bank_account
2921
- # WeChat, owned by Tencent, is China's leading mobile app with over 1 billion monthly active users. Chinese consumers can use WeChat Pay to pay for goods and services inside of businesses' apps and websites. WeChat Pay users buy most frequently in gaming, e-commerce, travel, online education, and food/nutrition. Check this [page](https://stripe.com/docs/payments/wechat-pay) for more details.
2922
- attr_accessor :wechat_pay
2923
- # Zip gives your customers a way to split purchases over a series of payments. Check this [page](https://stripe.com/docs/payments/zip) for more details like country availability.
2924
- attr_accessor :zip
2925
-
2926
- def initialize(
2927
- acss_debit: nil,
2928
- active: nil,
2929
- affirm: nil,
2930
- afterpay_clearpay: nil,
2931
- alipay: nil,
2932
- alma: nil,
2933
- amazon_pay: nil,
2934
- apple_pay: nil,
2935
- apple_pay_later: nil,
2936
- au_becs_debit: nil,
2937
- bacs_debit: nil,
2938
- bancontact: nil,
2939
- billie: nil,
2940
- blik: nil,
2941
- boleto: nil,
2942
- card: nil,
2943
- cartes_bancaires: nil,
2944
- cashapp: nil,
2945
- customer_balance: nil,
2946
- eps: nil,
2947
- expand: nil,
2948
- fpx: nil,
2949
- giropay: nil,
2950
- google_pay: nil,
2951
- grabpay: nil,
2952
- ideal: nil,
2953
- jcb: nil,
2954
- kakao_pay: nil,
2955
- klarna: nil,
2956
- konbini: nil,
2957
- kr_card: nil,
2958
- link: nil,
2959
- mobilepay: nil,
2960
- multibanco: nil,
2961
- name: nil,
2962
- naver_pay: nil,
2963
- nz_bank_account: nil,
2964
- oxxo: nil,
2965
- p24: nil,
2966
- pay_by_bank: nil,
2967
- payco: nil,
2968
- paynow: nil,
2969
- paypal: nil,
2970
- pix: nil,
2971
- promptpay: nil,
2972
- revolut_pay: nil,
2973
- samsung_pay: nil,
2974
- satispay: nil,
2975
- sepa_debit: nil,
2976
- sofort: nil,
2977
- swish: nil,
2978
- twint: nil,
2979
- us_bank_account: nil,
2980
- wechat_pay: nil,
2981
- zip: nil
2982
- )
2983
- @acss_debit = acss_debit
2984
- @active = active
2985
- @affirm = affirm
2986
- @afterpay_clearpay = afterpay_clearpay
2987
- @alipay = alipay
2988
- @alma = alma
2989
- @amazon_pay = amazon_pay
2990
- @apple_pay = apple_pay
2991
- @apple_pay_later = apple_pay_later
2992
- @au_becs_debit = au_becs_debit
2993
- @bacs_debit = bacs_debit
2994
- @bancontact = bancontact
2995
- @billie = billie
2996
- @blik = blik
2997
- @boleto = boleto
2998
- @card = card
2999
- @cartes_bancaires = cartes_bancaires
3000
- @cashapp = cashapp
3001
- @customer_balance = customer_balance
3002
- @eps = eps
3003
- @expand = expand
3004
- @fpx = fpx
3005
- @giropay = giropay
3006
- @google_pay = google_pay
3007
- @grabpay = grabpay
3008
- @ideal = ideal
3009
- @jcb = jcb
3010
- @kakao_pay = kakao_pay
3011
- @klarna = klarna
3012
- @konbini = konbini
3013
- @kr_card = kr_card
3014
- @link = link
3015
- @mobilepay = mobilepay
3016
- @multibanco = multibanco
3017
- @name = name
3018
- @naver_pay = naver_pay
3019
- @nz_bank_account = nz_bank_account
3020
- @oxxo = oxxo
3021
- @p24 = p24
3022
- @pay_by_bank = pay_by_bank
3023
- @payco = payco
3024
- @paynow = paynow
3025
- @paypal = paypal
3026
- @pix = pix
3027
- @promptpay = promptpay
3028
- @revolut_pay = revolut_pay
3029
- @samsung_pay = samsung_pay
3030
- @satispay = satispay
3031
- @sepa_debit = sepa_debit
3032
- @sofort = sofort
3033
- @swish = swish
3034
- @twint = twint
3035
- @us_bank_account = us_bank_account
3036
- @wechat_pay = wechat_pay
3037
- @zip = zip
1605
+ def self.field_remappings
1606
+ @field_remappings = {}
3038
1607
  end
3039
1608
  end
3040
1609
  # Attribute for field acss_debit
@@ -3185,5 +1754,65 @@ module Stripe
3185
1754
  opts: opts
3186
1755
  )
3187
1756
  end
1757
+
1758
+ def self.inner_class_types
1759
+ @inner_class_types = {
1760
+ acss_debit: AcssDebit,
1761
+ affirm: Affirm,
1762
+ afterpay_clearpay: AfterpayClearpay,
1763
+ alipay: Alipay,
1764
+ alma: Alma,
1765
+ amazon_pay: AmazonPay,
1766
+ apple_pay: ApplePay,
1767
+ au_becs_debit: AuBecsDebit,
1768
+ bacs_debit: BacsDebit,
1769
+ bancontact: Bancontact,
1770
+ billie: Billie,
1771
+ blik: Blik,
1772
+ boleto: Boleto,
1773
+ card: Card,
1774
+ cartes_bancaires: CartesBancaires,
1775
+ cashapp: Cashapp,
1776
+ customer_balance: CustomerBalance,
1777
+ eps: Eps,
1778
+ fpx: Fpx,
1779
+ giropay: Giropay,
1780
+ google_pay: GooglePay,
1781
+ grabpay: Grabpay,
1782
+ ideal: Ideal,
1783
+ jcb: Jcb,
1784
+ kakao_pay: KakaoPay,
1785
+ klarna: Klarna,
1786
+ konbini: Konbini,
1787
+ kr_card: KrCard,
1788
+ link: Link,
1789
+ mobilepay: Mobilepay,
1790
+ multibanco: Multibanco,
1791
+ naver_pay: NaverPay,
1792
+ nz_bank_account: NzBankAccount,
1793
+ oxxo: Oxxo,
1794
+ p24: P24,
1795
+ pay_by_bank: PayByBank,
1796
+ payco: Payco,
1797
+ paynow: Paynow,
1798
+ paypal: Paypal,
1799
+ pix: Pix,
1800
+ promptpay: Promptpay,
1801
+ revolut_pay: RevolutPay,
1802
+ samsung_pay: SamsungPay,
1803
+ satispay: Satispay,
1804
+ sepa_debit: SepaDebit,
1805
+ sofort: Sofort,
1806
+ swish: Swish,
1807
+ twint: Twint,
1808
+ us_bank_account: UsBankAccount,
1809
+ wechat_pay: WechatPay,
1810
+ zip: Zip,
1811
+ }
1812
+ end
1813
+
1814
+ def self.field_remappings
1815
+ @field_remappings = {}
1816
+ end
3188
1817
  end
3189
1818
  end