stripe 13.3.0 → 13.4.0.pre.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (743) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1416 -645
  3. data/OPENAPI_VERSION +1 -1
  4. data/VERSION +1 -1
  5. data/lib/stripe/api_operations/request.rb +1 -0
  6. data/lib/stripe/api_requestor.rb +1 -0
  7. data/lib/stripe/object_types.rb +32 -0
  8. data/lib/stripe/request_params.rb +24 -0
  9. data/lib/stripe/request_signing_authenticator.rb +79 -0
  10. data/lib/stripe/resources/account.rb +5071 -0
  11. data/lib/stripe/resources/account_link.rb +54 -0
  12. data/lib/stripe/resources/account_notice.rb +132 -0
  13. data/lib/stripe/resources/account_session.rb +877 -0
  14. data/lib/stripe/resources/apple_pay_domain.rb +63 -0
  15. data/lib/stripe/resources/application.rb +20 -0
  16. data/lib/stripe/resources/application_fee.rb +96 -0
  17. data/lib/stripe/resources/application_fee_refund.rb +17 -0
  18. data/lib/stripe/resources/apps/secret.rb +141 -0
  19. data/lib/stripe/resources/balance.rb +131 -0
  20. data/lib/stripe/resources/balance_transaction.rb +112 -0
  21. data/lib/stripe/resources/bank_account.rb +84 -2
  22. data/lib/stripe/resources/billing/alert.rb +144 -0
  23. data/lib/stripe/resources/billing/alert_triggered.rb +26 -0
  24. data/lib/stripe/resources/billing/credit_balance_summary.rb +77 -0
  25. data/lib/stripe/resources/billing/credit_balance_transaction.rb +116 -0
  26. data/lib/stripe/resources/billing/credit_grant.rb +203 -0
  27. data/lib/stripe/resources/billing/meter.rb +178 -0
  28. data/lib/stripe/resources/billing/meter_error_report.rb +59 -0
  29. data/lib/stripe/resources/billing/meter_event.rb +35 -0
  30. data/lib/stripe/resources/billing/meter_event_adjustment.rb +43 -0
  31. data/lib/stripe/resources/billing/meter_event_summary.rb +15 -0
  32. data/lib/stripe/resources/billing_portal/configuration.rb +562 -0
  33. data/lib/stripe/resources/billing_portal/session.rb +271 -0
  34. data/lib/stripe/resources/capability.rb +84 -0
  35. data/lib/stripe/resources/capital/financing_offer.rb +188 -0
  36. data/lib/stripe/resources/capital/financing_summary.rb +64 -0
  37. data/lib/stripe/resources/capital/financing_transaction.rb +123 -0
  38. data/lib/stripe/resources/card.rb +79 -0
  39. data/lib/stripe/resources/cash_balance.rb +17 -0
  40. data/lib/stripe/resources/charge.rb +3026 -0
  41. data/lib/stripe/resources/checkout/session.rb +3654 -0
  42. data/lib/stripe/resources/climate/order.rb +176 -0
  43. data/lib/stripe/resources/climate/product.rb +56 -0
  44. data/lib/stripe/resources/climate/supplier.rb +54 -0
  45. data/lib/stripe/resources/confirmation_token.rb +1520 -0
  46. data/lib/stripe/resources/connect_collection_transfer.rb +24 -0
  47. data/lib/stripe/resources/country_spec.rb +63 -0
  48. data/lib/stripe/resources/coupon.rb +198 -0
  49. data/lib/stripe/resources/credit_note.rb +660 -0
  50. data/lib/stripe/resources/credit_note_line_item.rb +65 -0
  51. data/lib/stripe/resources/customer.rb +840 -0
  52. data/lib/stripe/resources/customer_balance_transaction.rb +27 -0
  53. data/lib/stripe/resources/customer_cash_balance_transaction.rb +109 -0
  54. data/lib/stripe/resources/customer_session.rb +159 -0
  55. data/lib/stripe/resources/discount.rb +29 -0
  56. data/lib/stripe/resources/dispute.rb +619 -0
  57. data/lib/stripe/resources/entitlements/active_entitlement.rb +46 -0
  58. data/lib/stripe/resources/entitlements/active_entitlement_summary.rb +23 -0
  59. data/lib/stripe/resources/entitlements/feature.rb +90 -0
  60. data/lib/stripe/resources/ephemeral_key.rb +21 -0
  61. data/lib/stripe/resources/event.rb +130 -0
  62. data/lib/stripe/resources/exchange_rate.rb +33 -0
  63. data/lib/stripe/resources/file.rb +111 -0
  64. data/lib/stripe/resources/file_link.rb +112 -0
  65. data/lib/stripe/resources/financial_connections/account.rb +260 -0
  66. data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +27 -0
  67. data/lib/stripe/resources/financial_connections/account_owner.rb +17 -0
  68. data/lib/stripe/resources/financial_connections/account_ownership.rb +9 -0
  69. data/lib/stripe/resources/financial_connections/institution.rb +99 -0
  70. data/lib/stripe/resources/financial_connections/session.rb +159 -0
  71. data/lib/stripe/resources/financial_connections/transaction.rb +101 -0
  72. data/lib/stripe/resources/forwarding/request.rb +165 -0
  73. data/lib/stripe/resources/funding_instructions.rb +308 -0
  74. data/lib/stripe/resources/gift_cards/card.rb +217 -0
  75. data/lib/stripe/resources/gift_cards/transaction.rb +281 -0
  76. data/lib/stripe/resources/identity/verification_report.rb +266 -0
  77. data/lib/stripe/resources/identity/verification_session.rb +361 -0
  78. data/lib/stripe/resources/invoice.rb +8078 -0
  79. data/lib/stripe/resources/invoice_item.rb +445 -0
  80. data/lib/stripe/resources/invoice_line_item.rb +333 -0
  81. data/lib/stripe/resources/invoice_payment.rb +56 -0
  82. data/lib/stripe/resources/invoice_rendering_template.rb +67 -0
  83. data/lib/stripe/resources/issuing/authorization.rb +1117 -2
  84. data/lib/stripe/resources/issuing/card.rb +666 -0
  85. data/lib/stripe/resources/issuing/cardholder.rb +658 -0
  86. data/lib/stripe/resources/issuing/credit_underwriting_record.rb +611 -0
  87. data/lib/stripe/resources/issuing/dispute.rb +790 -0
  88. data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +84 -0
  89. data/lib/stripe/resources/issuing/fraud_liability_debit.rb +95 -0
  90. data/lib/stripe/resources/issuing/personalization_design.rb +285 -0
  91. data/lib/stripe/resources/issuing/physical_bundle.rb +63 -0
  92. data/lib/stripe/resources/issuing/settlement.rb +49 -0
  93. data/lib/stripe/resources/issuing/token.rb +175 -0
  94. data/lib/stripe/resources/issuing/transaction.rb +927 -0
  95. data/lib/stripe/resources/line_item.rb +75 -0
  96. data/lib/stripe/resources/login_link.rb +7 -0
  97. data/lib/stripe/resources/mandate.rb +169 -0
  98. data/lib/stripe/resources/margin.rb +124 -0
  99. data/lib/stripe/resources/order.rb +2850 -0
  100. data/lib/stripe/resources/payment_attempt_record.rb +184 -0
  101. data/lib/stripe/resources/payment_intent.rb +12864 -0
  102. data/lib/stripe/resources/payment_link.rb +1563 -0
  103. data/lib/stripe/resources/payment_method.rb +1638 -0
  104. data/lib/stripe/resources/payment_method_configuration.rb +2844 -0
  105. data/lib/stripe/resources/payment_method_domain.rb +153 -0
  106. data/lib/stripe/resources/payment_record.rb +715 -0
  107. data/lib/stripe/resources/payout.rb +218 -0
  108. data/lib/stripe/resources/person.rb +263 -0
  109. data/lib/stripe/resources/plan.rb +317 -0
  110. data/lib/stripe/resources/price.rb +649 -0
  111. data/lib/stripe/resources/product.rb +536 -0
  112. data/lib/stripe/resources/product_feature.rb +12 -0
  113. data/lib/stripe/resources/promotion_code.rb +221 -0
  114. data/lib/stripe/resources/quote.rb +2946 -0
  115. data/lib/stripe/resources/quote_line.rb +274 -0
  116. data/lib/stripe/resources/quote_preview_invoice.rb +652 -0
  117. data/lib/stripe/resources/quote_preview_subscription_schedule.rb +362 -0
  118. data/lib/stripe/resources/radar/early_fraud_warning.rb +77 -0
  119. data/lib/stripe/resources/radar/value_list.rb +125 -0
  120. data/lib/stripe/resources/radar/value_list_item.rb +95 -0
  121. data/lib/stripe/resources/refund.rb +397 -0
  122. data/lib/stripe/resources/reporting/report_run.rb +150 -0
  123. data/lib/stripe/resources/reporting/report_type.rb +36 -0
  124. data/lib/stripe/resources/reserve_transaction.rb +22 -0
  125. data/lib/stripe/resources/reversal.rb +21 -0
  126. data/lib/stripe/resources/review.rb +108 -0
  127. data/lib/stripe/resources/setup_attempt.rb +373 -0
  128. data/lib/stripe/resources/setup_intent.rb +3834 -0
  129. data/lib/stripe/resources/shipping_rate.rb +259 -0
  130. data/lib/stripe/resources/sigma/scheduled_query_run.rb +54 -0
  131. data/lib/stripe/resources/source.rb +1239 -0
  132. data/lib/stripe/resources/source_mandate_notification.rb +66 -0
  133. data/lib/stripe/resources/source_transaction.rb +85 -0
  134. data/lib/stripe/resources/subscription.rb +2057 -0
  135. data/lib/stripe/resources/subscription_item.rb +433 -0
  136. data/lib/stripe/resources/subscription_schedule.rb +2402 -0
  137. data/lib/stripe/resources/tax/association.rb +89 -0
  138. data/lib/stripe/resources/tax/calculation.rb +387 -0
  139. data/lib/stripe/resources/tax/calculation_line_item.rb +56 -0
  140. data/lib/stripe/resources/tax/form.rb +220 -0
  141. data/lib/stripe/resources/tax/registration.rb +2382 -0
  142. data/lib/stripe/resources/tax/settings.rb +126 -0
  143. data/lib/stripe/resources/tax/transaction.rb +267 -0
  144. data/lib/stripe/resources/tax/transaction_line_item.rb +31 -0
  145. data/lib/stripe/resources/tax_code.rb +35 -0
  146. data/lib/stripe/resources/tax_deducted_at_source.rb +22 -0
  147. data/lib/stripe/resources/tax_id.rb +121 -0
  148. data/lib/stripe/resources/tax_rate.rb +200 -0
  149. data/lib/stripe/resources/terminal/configuration.rb +1011 -0
  150. data/lib/stripe/resources/terminal/connection_token.rb +18 -0
  151. data/lib/stripe/resources/terminal/location.rb +175 -0
  152. data/lib/stripe/resources/terminal/reader.rb +782 -0
  153. data/lib/stripe/resources/terminal/reader_collected_data.rb +40 -0
  154. data/lib/stripe/resources/test_helpers/test_clock.rb +86 -0
  155. data/lib/stripe/resources/token.rb +1149 -0
  156. data/lib/stripe/resources/topup.rb +174 -0
  157. data/lib/stripe/resources/transfer.rb +153 -0
  158. data/lib/stripe/resources/treasury/credit_reversal.rb +92 -0
  159. data/lib/stripe/resources/treasury/debit_reversal.rb +103 -0
  160. data/lib/stripe/resources/treasury/financial_account.rb +772 -0
  161. data/lib/stripe/resources/treasury/financial_account_features.rb +191 -0
  162. data/lib/stripe/resources/treasury/inbound_transfer.rb +235 -0
  163. data/lib/stripe/resources/treasury/outbound_payment.rb +495 -0
  164. data/lib/stripe/resources/treasury/outbound_transfer.rb +387 -0
  165. data/lib/stripe/resources/treasury/received_credit.rb +283 -0
  166. data/lib/stripe/resources/treasury/received_debit.rb +244 -0
  167. data/lib/stripe/resources/treasury/transaction.rb +176 -0
  168. data/lib/stripe/resources/treasury/transaction_entry.rb +157 -0
  169. data/lib/stripe/resources/usage_record.rb +13 -0
  170. data/lib/stripe/resources/usage_record_summary.rb +21 -0
  171. data/lib/stripe/resources/v2/amount.rb +9 -0
  172. data/lib/stripe/resources/v2/billing/meter_event.rb +18 -0
  173. data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +21 -0
  174. data/lib/stripe/resources/v2/billing/meter_event_session.rb +14 -0
  175. data/lib/stripe/resources/v2/event.rb +27 -0
  176. data/lib/stripe/resources/v2/event_destination.rb +59 -0
  177. data/lib/stripe/resources/webhook_endpoint.rb +122 -0
  178. data/lib/stripe/resources.rb +31 -0
  179. data/lib/stripe/services/account_capability_service.rb +32 -0
  180. data/lib/stripe/services/account_external_account_service.rb +250 -0
  181. data/lib/stripe/services/account_link_service.rb +46 -0
  182. data/lib/stripe/services/account_login_link_service.rb +9 -0
  183. data/lib/stripe/services/account_notice_service.rb +101 -0
  184. data/lib/stripe/services/account_person_service.rb +875 -0
  185. data/lib/stripe/services/account_service.rb +4351 -0
  186. data/lib/stripe/services/account_session_service.rb +664 -0
  187. data/lib/stripe/services/apple_pay_domain_service.rb +51 -0
  188. data/lib/stripe/services/application_fee_refund_service.rb +54 -0
  189. data/lib/stripe/services/application_fee_service.rb +57 -0
  190. data/lib/stripe/services/apps/secret_service.rb +116 -0
  191. data/lib/stripe/services/balance_service.rb +9 -0
  192. data/lib/stripe/services/balance_transaction_service.rb +69 -0
  193. data/lib/stripe/services/billing/alert_service.rb +113 -0
  194. data/lib/stripe/services/billing/credit_balance_summary_service.rb +37 -0
  195. data/lib/stripe/services/billing/credit_balance_transaction_service.rb +40 -0
  196. data/lib/stripe/services/billing/credit_grant_service.rb +151 -0
  197. data/lib/stripe/services/billing/meter_event_adjustment_service.rb +26 -0
  198. data/lib/stripe/services/billing/meter_event_service.rb +21 -0
  199. data/lib/stripe/services/billing/meter_event_summary_service.rb +39 -0
  200. data/lib/stripe/services/billing/meter_service.rb +130 -0
  201. data/lib/stripe/services/billing_portal/configuration_service.rb +444 -0
  202. data/lib/stripe/services/billing_portal/session_service.rb +173 -0
  203. data/lib/stripe/services/capital/financing_offer_service.rb +112 -0
  204. data/lib/stripe/services/capital/financing_summary_service.rb +28 -0
  205. data/lib/stripe/services/capital/financing_transaction_service.rb +79 -0
  206. data/lib/stripe/services/capital_service.rb +15 -0
  207. data/lib/stripe/services/charge_service.rb +1736 -0
  208. data/lib/stripe/services/checkout/session_line_item_service.rb +18 -0
  209. data/lib/stripe/services/checkout/session_service.rb +2465 -0
  210. data/lib/stripe/services/climate/order_service.rb +102 -0
  211. data/lib/stripe/services/climate/product_service.rb +27 -0
  212. data/lib/stripe/services/climate/supplier_service.rb +27 -0
  213. data/lib/stripe/services/confirmation_token_service.rb +9 -0
  214. data/lib/stripe/services/country_spec_service.rb +27 -0
  215. data/lib/stripe/services/coupon_service.rb +152 -0
  216. data/lib/stripe/services/credit_note_line_item_service.rb +18 -0
  217. data/lib/stripe/services/credit_note_preview_lines_service.rb +156 -0
  218. data/lib/stripe/services/credit_note_service.rb +373 -0
  219. data/lib/stripe/services/customer_balance_transaction_service.rb +63 -0
  220. data/lib/stripe/services/customer_cash_balance_service.rb +29 -0
  221. data/lib/stripe/services/customer_cash_balance_transaction_service.rb +27 -0
  222. data/lib/stripe/services/customer_funding_instructions_service.rb +42 -0
  223. data/lib/stripe/services/customer_payment_method_service.rb +40 -0
  224. data/lib/stripe/services/customer_payment_source_service.rb +179 -0
  225. data/lib/stripe/services/customer_service.rb +593 -0
  226. data/lib/stripe/services/customer_session_service.rb +96 -0
  227. data/lib/stripe/services/customer_tax_id_service.rb +45 -0
  228. data/lib/stripe/services/dispute_service.rb +374 -0
  229. data/lib/stripe/services/entitlements/active_entitlement_service.rb +36 -0
  230. data/lib/stripe/services/entitlements/feature_service.rb +76 -0
  231. data/lib/stripe/services/ephemeral_key_service.rb +36 -0
  232. data/lib/stripe/services/event_service.rb +65 -0
  233. data/lib/stripe/services/exchange_rate_service.rb +27 -0
  234. data/lib/stripe/services/file_link_service.rb +94 -0
  235. data/lib/stripe/services/file_service.rb +89 -0
  236. data/lib/stripe/services/financial_connections/account_inferred_balance_service.rb +37 -0
  237. data/lib/stripe/services/financial_connections/account_owner_service.rb +27 -0
  238. data/lib/stripe/services/financial_connections/account_service.rb +99 -1
  239. data/lib/stripe/services/financial_connections/institution_service.rb +57 -0
  240. data/lib/stripe/services/financial_connections/session_service.rb +97 -0
  241. data/lib/stripe/services/financial_connections/transaction_service.rb +70 -0
  242. data/lib/stripe/services/financial_connections_service.rb +2 -1
  243. data/lib/stripe/services/forwarding/request_service.rb +106 -0
  244. data/lib/stripe/services/gift_cards/card_service.rb +170 -0
  245. data/lib/stripe/services/gift_cards/transaction_service.rb +209 -0
  246. data/lib/stripe/services/gift_cards_service.rb +14 -0
  247. data/lib/stripe/services/identity/verification_report_service.rb +65 -0
  248. data/lib/stripe/services/identity/verification_session_service.rb +231 -0
  249. data/lib/stripe/services/invoice_item_service.rb +388 -0
  250. data/lib/stripe/services/invoice_line_item_service.rb +237 -0
  251. data/lib/stripe/services/invoice_payment_service.rb +55 -0
  252. data/lib/stripe/services/invoice_rendering_template_service.rb +51 -0
  253. data/lib/stripe/services/invoice_service.rb +5567 -1
  254. data/lib/stripe/services/invoice_upcoming_lines_service.rb +1864 -0
  255. data/lib/stripe/services/issuing/authorization_service.rb +104 -0
  256. data/lib/stripe/services/issuing/card_service.rb +455 -0
  257. data/lib/stripe/services/issuing/cardholder_service.rb +526 -0
  258. data/lib/stripe/services/issuing/credit_underwriting_record_service.rb +504 -0
  259. data/lib/stripe/services/issuing/dispute_service.rb +633 -0
  260. data/lib/stripe/services/issuing/dispute_settlement_detail_service.rb +66 -0
  261. data/lib/stripe/services/issuing/fraud_liability_debit_service.rb +83 -0
  262. data/lib/stripe/services/issuing/personalization_design_service.rb +193 -0
  263. data/lib/stripe/services/issuing/physical_bundle_service.rb +40 -0
  264. data/lib/stripe/services/issuing/token_service.rb +73 -0
  265. data/lib/stripe/services/issuing/transaction_service.rb +81 -0
  266. data/lib/stripe/services/issuing_service.rb +5 -1
  267. data/lib/stripe/services/mandate_service.rb +9 -0
  268. data/lib/stripe/services/margin_service.rb +119 -0
  269. data/lib/stripe/services/order_line_item_service.rb +35 -0
  270. data/lib/stripe/services/order_service.rb +2254 -0
  271. data/lib/stripe/services/payment_attempt_record_service.rb +49 -0
  272. data/lib/stripe/services/payment_intent_service.rb +10894 -0
  273. data/lib/stripe/services/payment_link_line_item_service.rb +18 -0
  274. data/lib/stripe/services/payment_link_service.rb +1223 -0
  275. data/lib/stripe/services/payment_method_configuration_service.rb +2046 -0
  276. data/lib/stripe/services/payment_method_domain_service.rb +76 -0
  277. data/lib/stripe/services/payment_method_service.rb +864 -0
  278. data/lib/stripe/services/payment_record_service.rb +542 -0
  279. data/lib/stripe/services/payout_service.rb +159 -0
  280. data/lib/stripe/services/plan_service.rb +253 -0
  281. data/lib/stripe/services/price_service.rb +516 -0
  282. data/lib/stripe/services/product_feature_service.rb +42 -0
  283. data/lib/stripe/services/product_service.rb +459 -0
  284. data/lib/stripe/services/promotion_code_service.rb +178 -0
  285. data/lib/stripe/services/quote_computed_upfront_line_items_service.rb +18 -0
  286. data/lib/stripe/services/quote_line_item_service.rb +18 -0
  287. data/lib/stripe/services/quote_line_service.rb +35 -0
  288. data/lib/stripe/services/quote_preview_invoice_service.rb +35 -0
  289. data/lib/stripe/services/quote_preview_subscription_schedule_service.rb +35 -0
  290. data/lib/stripe/services/quote_service.rb +2319 -1
  291. data/lib/stripe/services/radar/early_fraud_warning_service.rb +61 -0
  292. data/lib/stripe/services/radar/value_list_item_service.rb +79 -0
  293. data/lib/stripe/services/radar/value_list_service.rb +103 -0
  294. data/lib/stripe/services/refund_service.rb +137 -0
  295. data/lib/stripe/services/reporting/report_run_service.rb +106 -0
  296. data/lib/stripe/services/reporting/report_type_service.rb +18 -0
  297. data/lib/stripe/services/review_service.rb +56 -0
  298. data/lib/stripe/services/setup_attempt_service.rb +51 -0
  299. data/lib/stripe/services/setup_intent_service.rb +3476 -0
  300. data/lib/stripe/services/shipping_rate_service.rb +200 -0
  301. data/lib/stripe/services/sigma/scheduled_query_run_service.rb +27 -0
  302. data/lib/stripe/services/source_service.rb +601 -0
  303. data/lib/stripe/services/source_transaction_service.rb +18 -0
  304. data/lib/stripe/services/subscription_item_service.rb +383 -0
  305. data/lib/stripe/services/subscription_item_usage_record_service.rb +18 -0
  306. data/lib/stripe/services/subscription_item_usage_record_summary_service.rb +18 -0
  307. data/lib/stripe/services/subscription_schedule_service.rb +2053 -0
  308. data/lib/stripe/services/subscription_service.rb +1722 -0
  309. data/lib/stripe/services/tax/association_service.rb +31 -0
  310. data/lib/stripe/services/tax/calculation_line_item_service.rb +18 -0
  311. data/lib/stripe/services/tax/calculation_service.rb +205 -0
  312. data/lib/stripe/services/tax/form_service.rb +100 -0
  313. data/lib/stripe/services/tax/registration_service.rb +1564 -0
  314. data/lib/stripe/services/tax/settings_service.rb +74 -0
  315. data/lib/stripe/services/tax/transaction_line_item_service.rb +18 -0
  316. data/lib/stripe/services/tax/transaction_service.rb +111 -0
  317. data/lib/stripe/services/tax_code_service.rb +27 -0
  318. data/lib/stripe/services/tax_id_service.rb +79 -0
  319. data/lib/stripe/services/tax_rate_service.rb +155 -0
  320. data/lib/stripe/services/tax_service.rb +3 -1
  321. data/lib/stripe/services/terminal/configuration_service.rb +793 -0
  322. data/lib/stripe/services/terminal/connection_token_service.rb +12 -0
  323. data/lib/stripe/services/terminal/location_service.rb +144 -0
  324. data/lib/stripe/services/terminal/reader_collected_data_service.rb +28 -0
  325. data/lib/stripe/services/terminal/reader_service.rb +443 -0
  326. data/lib/stripe/services/terminal_service.rb +2 -1
  327. data/lib/stripe/services/test_helpers/confirmation_token_service.rb +673 -0
  328. data/lib/stripe/services/test_helpers/customer_service.rb +18 -0
  329. data/lib/stripe/services/test_helpers/issuing/authorization_service.rb +745 -0
  330. data/lib/stripe/services/test_helpers/issuing/card_service.rb +45 -0
  331. data/lib/stripe/services/test_helpers/issuing/personalization_design_service.rb +41 -0
  332. data/lib/stripe/services/test_helpers/issuing/transaction_service.rb +632 -0
  333. data/lib/stripe/services/test_helpers/refund_service.rb +9 -0
  334. data/lib/stripe/services/test_helpers/terminal/reader_service.rb +44 -0
  335. data/lib/stripe/services/test_helpers/test_clock_service.rb +57 -0
  336. data/lib/stripe/services/test_helpers/treasury/inbound_transfer_service.rb +38 -0
  337. data/lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb +87 -0
  338. data/lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb +87 -0
  339. data/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +84 -0
  340. data/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +84 -0
  341. data/lib/stripe/services/token_service.rb +1121 -0
  342. data/lib/stripe/services/topup_service.rb +142 -0
  343. data/lib/stripe/services/transfer_reversal_service.rb +66 -0
  344. data/lib/stripe/services/transfer_service.rb +119 -0
  345. data/lib/stripe/services/treasury/credit_reversal_service.rb +59 -0
  346. data/lib/stripe/services/treasury/debit_reversal_service.rb +63 -0
  347. data/lib/stripe/services/treasury/financial_account_features_service.rb +169 -0
  348. data/lib/stripe/services/treasury/financial_account_service.rb +509 -0
  349. data/lib/stripe/services/treasury/inbound_transfer_service.rb +88 -0
  350. data/lib/stripe/services/treasury/outbound_payment_service.rb +258 -0
  351. data/lib/stripe/services/treasury/outbound_transfer_service.rb +148 -0
  352. data/lib/stripe/services/treasury/received_credit_service.rb +52 -0
  353. data/lib/stripe/services/treasury/received_debit_service.rb +40 -0
  354. data/lib/stripe/services/treasury/transaction_entry_service.rb +87 -0
  355. data/lib/stripe/services/treasury/transaction_service.rb +95 -0
  356. data/lib/stripe/services/v1_services.rb +8 -1
  357. data/lib/stripe/services/v2/billing/meter_event_adjustment_service.rb +23 -0
  358. data/lib/stripe/services/v2/billing/meter_event_service.rb +25 -0
  359. data/lib/stripe/services/v2/billing/meter_event_session_service.rb +3 -0
  360. data/lib/stripe/services/v2/billing/meter_event_stream_service.rb +33 -0
  361. data/lib/stripe/services/v2/core/event_destination_service.rb +146 -0
  362. data/lib/stripe/services/v2/core/event_service.rb +18 -0
  363. data/lib/stripe/services/webhook_endpoint_service.rb +96 -0
  364. data/lib/stripe/services.rb +25 -0
  365. data/lib/stripe/stripe_client.rb +1 -1
  366. data/lib/stripe/stripe_configuration.rb +3 -1
  367. data/lib/stripe/stripe_object.rb +5 -0
  368. data/lib/stripe/util.rb +7 -1
  369. data/lib/stripe/version.rb +1 -1
  370. data/lib/stripe.rb +46 -0
  371. data/rbi/stripe/resources/account.rbi +5100 -0
  372. data/rbi/stripe/resources/account_link.rbi +74 -0
  373. data/rbi/stripe/resources/account_notice.rbi +139 -0
  374. data/rbi/stripe/resources/account_session.rbi +1007 -0
  375. data/rbi/stripe/resources/apple_pay_domain.rbi +97 -0
  376. data/rbi/stripe/resources/application.rbi +20 -0
  377. data/rbi/stripe/resources/application_fee.rbi +123 -0
  378. data/rbi/stripe/resources/application_fee_refund.rbi +37 -0
  379. data/rbi/stripe/resources/apps/secret.rbi +195 -0
  380. data/rbi/stripe/resources/balance.rbi +187 -0
  381. data/rbi/stripe/resources/balance_transaction.rbi +149 -0
  382. data/rbi/stripe/resources/bank_account.rbi +127 -0
  383. data/rbi/stripe/resources/billing/alert.rbi +206 -0
  384. data/rbi/stripe/resources/billing/alert_triggered.rbi +28 -0
  385. data/rbi/stripe/resources/billing/credit_balance_summary.rbi +102 -0
  386. data/rbi/stripe/resources/billing/credit_balance_transaction.rbi +154 -0
  387. data/rbi/stripe/resources/billing/credit_grant.rbi +269 -0
  388. data/rbi/stripe/resources/billing/meter.rbi +233 -0
  389. data/rbi/stripe/resources/billing/meter_error_report.rbi +71 -0
  390. data/rbi/stripe/resources/billing/meter_event.rbi +64 -0
  391. data/rbi/stripe/resources/billing/meter_event_adjustment.rbi +64 -0
  392. data/rbi/stripe/resources/billing/meter_event_summary.rbi +33 -0
  393. data/rbi/stripe/resources/billing_portal/configuration.rbi +640 -0
  394. data/rbi/stripe/resources/billing_portal/session.rbi +341 -0
  395. data/rbi/stripe/resources/capability.rbi +125 -0
  396. data/rbi/stripe/resources/capital/financing_offer.rbi +190 -0
  397. data/rbi/stripe/resources/capital/financing_summary.rbi +74 -0
  398. data/rbi/stripe/resources/capital/financing_transaction.rbi +130 -0
  399. data/rbi/stripe/resources/card.rbi +128 -0
  400. data/rbi/stripe/resources/cash_balance.rbi +32 -0
  401. data/rbi/stripe/resources/charge.rbi +3484 -0
  402. data/rbi/stripe/resources/checkout/session.rbi +3995 -0
  403. data/rbi/stripe/resources/climate/order.rbi +250 -0
  404. data/rbi/stripe/resources/climate/product.rbi +82 -0
  405. data/rbi/stripe/resources/climate/supplier.rbi +79 -0
  406. data/rbi/stripe/resources/confirmation_token.rbi +1776 -0
  407. data/rbi/stripe/resources/connect_collection_transfer.rbi +26 -0
  408. data/rbi/stripe/resources/country_spec.rbi +92 -0
  409. data/rbi/stripe/resources/coupon.rbi +257 -0
  410. data/rbi/stripe/resources/credit_note.rbi +759 -0
  411. data/rbi/stripe/resources/credit_note_line_item.rbi +99 -0
  412. data/rbi/stripe/resources/customer.rbi +1001 -0
  413. data/rbi/stripe/resources/customer_balance_transaction.rbi +53 -0
  414. data/rbi/stripe/resources/customer_cash_balance_transaction.rbi +151 -0
  415. data/rbi/stripe/resources/customer_session.rbi +196 -0
  416. data/rbi/stripe/resources/discount.rbi +53 -0
  417. data/rbi/stripe/resources/dispute.rbi +764 -0
  418. data/rbi/stripe/resources/entitlements/active_entitlement.rbi +65 -0
  419. data/rbi/stripe/resources/entitlements/active_entitlement_summary.rbi +23 -0
  420. data/rbi/stripe/resources/entitlements/feature.rbi +124 -0
  421. data/rbi/stripe/resources/ephemeral_key.rbi +44 -0
  422. data/rbi/stripe/resources/event.rbi +190 -0
  423. data/rbi/stripe/resources/exchange_rate.rbi +73 -0
  424. data/rbi/stripe/resources/file.rbi +148 -0
  425. data/rbi/stripe/resources/file_link.rbi +146 -0
  426. data/rbi/stripe/resources/financial_connections/account.rbi +358 -0
  427. data/rbi/stripe/resources/financial_connections/account_inferred_balance.rbi +27 -0
  428. data/rbi/stripe/resources/financial_connections/account_owner.rbi +35 -0
  429. data/rbi/stripe/resources/financial_connections/account_ownership.rbi +23 -0
  430. data/rbi/stripe/resources/financial_connections/institution.rbi +99 -0
  431. data/rbi/stripe/resources/financial_connections/session.rbi +186 -0
  432. data/rbi/stripe/resources/financial_connections/transaction.rbi +127 -0
  433. data/rbi/stripe/resources/forwarding/request.rbi +219 -0
  434. data/rbi/stripe/resources/funding_instructions.rbi +437 -0
  435. data/rbi/stripe/resources/gift_cards/card.rbi +206 -0
  436. data/rbi/stripe/resources/gift_cards/transaction.rbi +257 -0
  437. data/rbi/stripe/resources/identity/verification_report.rbi +354 -0
  438. data/rbi/stripe/resources/identity/verification_session.rbi +518 -0
  439. data/rbi/stripe/resources/invoice.rbi +8928 -0
  440. data/rbi/stripe/resources/invoice_item.rbi +514 -0
  441. data/rbi/stripe/resources/invoice_line_item.rbi +400 -0
  442. data/rbi/stripe/resources/invoice_payment.rbi +70 -0
  443. data/rbi/stripe/resources/invoice_rendering_template.rbi +114 -0
  444. data/rbi/stripe/resources/issuing/authorization.rbi +1266 -0
  445. data/rbi/stripe/resources/issuing/card.rbi +738 -0
  446. data/rbi/stripe/resources/issuing/cardholder.rbi +732 -0
  447. data/rbi/stripe/resources/issuing/credit_underwriting_record.rbi +622 -0
  448. data/rbi/stripe/resources/issuing/dispute.rbi +900 -0
  449. data/rbi/stripe/resources/issuing/dispute_settlement_detail.rbi +83 -0
  450. data/rbi/stripe/resources/issuing/fraud_liability_debit.rbi +90 -0
  451. data/rbi/stripe/resources/issuing/personalization_design.rbi +333 -0
  452. data/rbi/stripe/resources/issuing/physical_bundle.rbi +86 -0
  453. data/rbi/stripe/resources/issuing/settlement.rbi +62 -0
  454. data/rbi/stripe/resources/issuing/token.rbi +231 -0
  455. data/rbi/stripe/resources/issuing/transaction.rbi +1057 -0
  456. data/rbi/stripe/resources/line_item.rbi +108 -0
  457. data/rbi/stripe/resources/login_link.rbi +18 -0
  458. data/rbi/stripe/resources/mandate.rbi +219 -0
  459. data/rbi/stripe/resources/margin.rbi +127 -0
  460. data/rbi/stripe/resources/order.rbi +3016 -0
  461. data/rbi/stripe/resources/payment_attempt_record.rbi +215 -0
  462. data/rbi/stripe/resources/payment_intent.rbi +13843 -0
  463. data/rbi/stripe/resources/payment_link.rbi +1666 -0
  464. data/rbi/stripe/resources/payment_method.rbi +1908 -0
  465. data/rbi/stripe/resources/payment_method_configuration.rbi +3171 -0
  466. data/rbi/stripe/resources/payment_method_domain.rbi +217 -0
  467. data/rbi/stripe/resources/payment_record.rbi +722 -0
  468. data/rbi/stripe/resources/payout.rbi +299 -0
  469. data/rbi/stripe/resources/person.rbi +371 -0
  470. data/rbi/stripe/resources/plan.rbi +385 -0
  471. data/rbi/stripe/resources/price.rbi +731 -0
  472. data/rbi/stripe/resources/product.rbi +615 -0
  473. data/rbi/stripe/resources/product_feature.rbi +26 -0
  474. data/rbi/stripe/resources/promotion_code.rbi +266 -0
  475. data/rbi/stripe/resources/quote.rbi +3186 -0
  476. data/rbi/stripe/resources/quote_line.rbi +350 -0
  477. data/rbi/stripe/resources/quote_preview_invoice.rbi +850 -0
  478. data/rbi/stripe/resources/quote_preview_subscription_schedule.rbi +474 -0
  479. data/rbi/stripe/resources/radar/early_fraud_warning.rbi +101 -0
  480. data/rbi/stripe/resources/radar/value_list.rbi +175 -0
  481. data/rbi/stripe/resources/radar/value_list_item.rbi +134 -0
  482. data/rbi/stripe/resources/refund.rbi +515 -0
  483. data/rbi/stripe/resources/reporting/report_run.rbi +194 -0
  484. data/rbi/stripe/resources/reporting/report_type.rbi +64 -0
  485. data/rbi/stripe/resources/reserve_transaction.rbi +23 -0
  486. data/rbi/stripe/resources/reversal.rbi +51 -0
  487. data/rbi/stripe/resources/review.rbi +159 -0
  488. data/rbi/stripe/resources/setup_attempt.rbi +484 -0
  489. data/rbi/stripe/resources/setup_intent.rbi +4041 -0
  490. data/rbi/stripe/resources/shipping_rate.rbi +310 -0
  491. data/rbi/stripe/resources/sigma/scheduled_query_run.rbi +82 -0
  492. data/rbi/stripe/resources/source.rbi +1543 -0
  493. data/rbi/stripe/resources/source_mandate_notification.rbi +77 -0
  494. data/rbi/stripe/resources/source_transaction.rbi +127 -0
  495. data/rbi/stripe/resources/subscription.rbi +2308 -0
  496. data/rbi/stripe/resources/subscription_item.rbi +478 -0
  497. data/rbi/stripe/resources/subscription_schedule.rbi +2653 -0
  498. data/rbi/stripe/resources/tax/association.rbi +94 -0
  499. data/rbi/stripe/resources/tax/calculation.rbi +479 -0
  500. data/rbi/stripe/resources/tax/calculation_line_item.rbi +88 -0
  501. data/rbi/stripe/resources/tax/form.rbi +224 -0
  502. data/rbi/stripe/resources/tax/registration.rbi +2438 -0
  503. data/rbi/stripe/resources/tax/settings.rbi +148 -0
  504. data/rbi/stripe/resources/tax/transaction.rbi +356 -0
  505. data/rbi/stripe/resources/tax/transaction_line_item.rbi +54 -0
  506. data/rbi/stripe/resources/tax_code.rbi +51 -0
  507. data/rbi/stripe/resources/tax_deducted_at_source.rbi +23 -0
  508. data/rbi/stripe/resources/tax_id.rbi +174 -0
  509. data/rbi/stripe/resources/tax_rate.rbi +244 -0
  510. data/rbi/stripe/resources/terminal/configuration.rbi +1091 -0
  511. data/rbi/stripe/resources/terminal/connection_token.rbi +37 -0
  512. data/rbi/stripe/resources/terminal/location.rbi +231 -0
  513. data/rbi/stripe/resources/terminal/reader.rbi +952 -0
  514. data/rbi/stripe/resources/terminal/reader_collected_data.rbi +41 -0
  515. data/rbi/stripe/resources/test_helpers/test_clock.rbi +139 -0
  516. data/rbi/stripe/resources/token.rbi +1175 -0
  517. data/rbi/stripe/resources/topup.rbi +225 -0
  518. data/rbi/stripe/resources/transfer.rbi +204 -0
  519. data/rbi/stripe/resources/treasury/credit_reversal.rbi +126 -0
  520. data/rbi/stripe/resources/treasury/debit_reversal.rbi +138 -0
  521. data/rbi/stripe/resources/treasury/financial_account.rbi +870 -0
  522. data/rbi/stripe/resources/treasury/financial_account_features.rbi +263 -0
  523. data/rbi/stripe/resources/treasury/inbound_transfer.rbi +302 -0
  524. data/rbi/stripe/resources/treasury/outbound_payment.rbi +589 -0
  525. data/rbi/stripe/resources/treasury/outbound_transfer.rbi +473 -0
  526. data/rbi/stripe/resources/treasury/received_credit.rbi +348 -0
  527. data/rbi/stripe/resources/treasury/received_debit.rbi +305 -0
  528. data/rbi/stripe/resources/treasury/transaction.rbi +216 -0
  529. data/rbi/stripe/resources/treasury/transaction_entry.rbi +193 -0
  530. data/rbi/stripe/resources/usage_record.rbi +32 -0
  531. data/rbi/stripe/resources/usage_record_summary.rbi +38 -0
  532. data/rbi/stripe/resources/v2/amount.rbi +14 -0
  533. data/rbi/stripe/resources/v2/billing/meter_event.rbi +37 -0
  534. data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +41 -0
  535. data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +31 -0
  536. data/rbi/stripe/resources/v2/event.rbi +47 -0
  537. data/rbi/stripe/resources/v2/event_destination.rbi +90 -0
  538. data/rbi/stripe/resources/webhook_endpoint.rbi +177 -0
  539. data/rbi/stripe/services/account_capability_service.rbi +51 -0
  540. data/rbi/stripe/services/account_external_account_service.rbi +306 -0
  541. data/rbi/stripe/services/account_link_service.rbi +58 -0
  542. data/rbi/stripe/services/account_login_link_service.rbi +22 -0
  543. data/rbi/stripe/services/account_notice_service.rbi +90 -0
  544. data/rbi/stripe/services/account_person_service.rbi +903 -0
  545. data/rbi/stripe/services/account_service.rbi +4185 -0
  546. data/rbi/stripe/services/account_session_service.rbi +757 -0
  547. data/rbi/stripe/services/apple_pay_domain_service.rbi +78 -0
  548. data/rbi/stripe/services/application_fee_refund_service.rbi +91 -0
  549. data/rbi/stripe/services/application_fee_service.rbi +74 -0
  550. data/rbi/stripe/services/apps/secret_service.rbi +151 -0
  551. data/rbi/stripe/services/apps_service.rbi +9 -0
  552. data/rbi/stripe/services/balance_service.rbi +21 -0
  553. data/rbi/stripe/services/balance_transaction_service.rbi +89 -0
  554. data/rbi/stripe/services/billing/alert_service.rbi +152 -0
  555. data/rbi/stripe/services/billing/credit_balance_summary_service.rbi +54 -0
  556. data/rbi/stripe/services/billing/credit_balance_transaction_service.rbi +59 -0
  557. data/rbi/stripe/services/billing/credit_grant_service.rbi +191 -0
  558. data/rbi/stripe/services/billing/meter_event_adjustment_service.rbi +40 -0
  559. data/rbi/stripe/services/billing/meter_event_service.rbi +42 -0
  560. data/rbi/stripe/services/billing/meter_event_summary_service.rbi +54 -0
  561. data/rbi/stripe/services/billing/meter_service.rbi +163 -0
  562. data/rbi/stripe/services/billing_portal/configuration_service.rbi +497 -0
  563. data/rbi/stripe/services/billing_portal/session_service.rbi +202 -0
  564. data/rbi/stripe/services/billing_portal_service.rbi +10 -0
  565. data/rbi/stripe/services/billing_service.rbi +15 -0
  566. data/rbi/stripe/services/capital/financing_offer_service.rbi +95 -0
  567. data/rbi/stripe/services/capital/financing_summary_service.rbi +22 -0
  568. data/rbi/stripe/services/capital/financing_transaction_service.rbi +68 -0
  569. data/rbi/stripe/services/capital_service.rbi +11 -0
  570. data/rbi/stripe/services/charge_service.rbi +1816 -0
  571. data/rbi/stripe/services/checkout/session_line_item_service.rbi +33 -0
  572. data/rbi/stripe/services/checkout/session_service.rbi +2582 -0
  573. data/rbi/stripe/services/checkout_service.rbi +9 -0
  574. data/rbi/stripe/services/climate/order_service.rbi +140 -0
  575. data/rbi/stripe/services/climate/product_service.rbi +46 -0
  576. data/rbi/stripe/services/climate/supplier_service.rbi +46 -0
  577. data/rbi/stripe/services/climate_service.rbi +11 -0
  578. data/rbi/stripe/services/confirmation_token_service.rbi +20 -0
  579. data/rbi/stripe/services/country_spec_service.rbi +44 -0
  580. data/rbi/stripe/services/coupon_service.rbi +190 -0
  581. data/rbi/stripe/services/credit_note_line_item_service.rbi +31 -0
  582. data/rbi/stripe/services/credit_note_preview_lines_service.rbi +167 -0
  583. data/rbi/stripe/services/credit_note_service.rbi +420 -0
  584. data/rbi/stripe/services/customer_balance_transaction_service.rbi +92 -0
  585. data/rbi/stripe/services/customer_cash_balance_service.rbi +45 -0
  586. data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +44 -0
  587. data/rbi/stripe/services/customer_funding_instructions_service.rbi +59 -0
  588. data/rbi/stripe/services/customer_payment_method_service.rbi +57 -0
  589. data/rbi/stripe/services/customer_payment_source_service.rbi +228 -0
  590. data/rbi/stripe/services/customer_service.rbi +647 -0
  591. data/rbi/stripe/services/customer_session_service.rbi +110 -0
  592. data/rbi/stripe/services/customer_tax_id_service.rbi +72 -0
  593. data/rbi/stripe/services/dispute_service.rbi +422 -0
  594. data/rbi/stripe/services/entitlements/active_entitlement_service.rbi +55 -0
  595. data/rbi/stripe/services/entitlements/feature_service.rbi +107 -0
  596. data/rbi/stripe/services/entitlements_service.rbi +10 -0
  597. data/rbi/stripe/services/ephemeral_key_service.rbi +53 -0
  598. data/rbi/stripe/services/event_service.rbi +81 -0
  599. data/rbi/stripe/services/exchange_rate_service.rbi +44 -0
  600. data/rbi/stripe/services/file_link_service.rbi +122 -0
  601. data/rbi/stripe/services/file_service.rbi +114 -0
  602. data/rbi/stripe/services/financial_connections/account_inferred_balance_service.rbi +33 -0
  603. data/rbi/stripe/services/financial_connections/account_owner_service.rbi +42 -0
  604. data/rbi/stripe/services/financial_connections/account_service.rbi +132 -0
  605. data/rbi/stripe/services/financial_connections/institution_service.rbi +46 -0
  606. data/rbi/stripe/services/financial_connections/session_service.rbi +111 -0
  607. data/rbi/stripe/services/financial_connections/transaction_service.rbi +90 -0
  608. data/rbi/stripe/services/financial_connections_service.rbi +12 -0
  609. data/rbi/stripe/services/forwarding/request_service.rbi +132 -0
  610. data/rbi/stripe/services/forwarding_service.rbi +9 -0
  611. data/rbi/stripe/services/gift_cards/card_service.rbi +142 -0
  612. data/rbi/stripe/services/gift_cards/transaction_service.rbi +174 -0
  613. data/rbi/stripe/services/gift_cards_service.rbi +10 -0
  614. data/rbi/stripe/services/identity/verification_report_service.rbi +85 -0
  615. data/rbi/stripe/services/identity/verification_session_service.rbi +317 -0
  616. data/rbi/stripe/services/identity_service.rbi +10 -0
  617. data/rbi/stripe/services/invoice_item_service.rbi +424 -0
  618. data/rbi/stripe/services/invoice_line_item_service.rbi +270 -0
  619. data/rbi/stripe/services/invoice_payment_service.rbi +44 -0
  620. data/rbi/stripe/services/invoice_rendering_template_service.rbi +82 -0
  621. data/rbi/stripe/services/invoice_service.rbi +6040 -0
  622. data/rbi/stripe/services/invoice_upcoming_lines_service.rbi +2023 -0
  623. data/rbi/stripe/services/issuing/authorization_service.rbi +140 -0
  624. data/rbi/stripe/services/issuing/card_service.rbi +479 -0
  625. data/rbi/stripe/services/issuing/cardholder_service.rbi +568 -0
  626. data/rbi/stripe/services/issuing/credit_underwriting_record_service.rbi +498 -0
  627. data/rbi/stripe/services/issuing/dispute_service.rbi +701 -0
  628. data/rbi/stripe/services/issuing/dispute_settlement_detail_service.rbi +55 -0
  629. data/rbi/stripe/services/issuing/fraud_liability_debit_service.rbi +73 -0
  630. data/rbi/stripe/services/issuing/personalization_design_service.rbi +233 -0
  631. data/rbi/stripe/services/issuing/physical_bundle_service.rbi +59 -0
  632. data/rbi/stripe/services/issuing/token_service.rbi +95 -0
  633. data/rbi/stripe/services/issuing/transaction_service.rbi +103 -0
  634. data/rbi/stripe/services/issuing_service.rbi +19 -0
  635. data/rbi/stripe/services/mandate_service.rbi +20 -0
  636. data/rbi/stripe/services/margin_service.rbi +104 -0
  637. data/rbi/stripe/services/order_line_item_service.rbi +31 -0
  638. data/rbi/stripe/services/order_service.rbi +2306 -0
  639. data/rbi/stripe/services/payment_attempt_record_service.rbi +36 -0
  640. data/rbi/stripe/services/payment_intent_service.rbi +11429 -0
  641. data/rbi/stripe/services/payment_link_line_item_service.rbi +31 -0
  642. data/rbi/stripe/services/payment_link_service.rbi +1250 -0
  643. data/rbi/stripe/services/payment_method_configuration_service.rbi +2171 -0
  644. data/rbi/stripe/services/payment_method_domain_service.rbi +110 -0
  645. data/rbi/stripe/services/payment_method_service.rbi +883 -0
  646. data/rbi/stripe/services/payment_record_service.rbi +521 -0
  647. data/rbi/stripe/services/payout_service.rbi +197 -0
  648. data/rbi/stripe/services/plan_service.rbi +286 -0
  649. data/rbi/stripe/services/price_service.rbi +551 -0
  650. data/rbi/stripe/services/product_feature_service.rbi +69 -0
  651. data/rbi/stripe/services/product_service.rbi +503 -0
  652. data/rbi/stripe/services/promotion_code_service.rbi +210 -0
  653. data/rbi/stripe/services/quote_computed_upfront_line_items_service.rbi +31 -0
  654. data/rbi/stripe/services/quote_line_item_service.rbi +31 -0
  655. data/rbi/stripe/services/quote_line_service.rbi +31 -0
  656. data/rbi/stripe/services/quote_preview_invoice_service.rbi +31 -0
  657. data/rbi/stripe/services/quote_preview_subscription_schedule_service.rbi +31 -0
  658. data/rbi/stripe/services/quote_service.rbi +2390 -0
  659. data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +83 -0
  660. data/rbi/stripe/services/radar/value_list_item_service.rbi +107 -0
  661. data/rbi/stripe/services/radar/value_list_service.rbi +139 -0
  662. data/rbi/stripe/services/radar_service.rbi +11 -0
  663. data/rbi/stripe/services/refund_service.rbi +181 -0
  664. data/rbi/stripe/services/reporting/report_run_service.rbi +131 -0
  665. data/rbi/stripe/services/reporting/report_type_service.rbi +35 -0
  666. data/rbi/stripe/services/reporting_service.rbi +10 -0
  667. data/rbi/stripe/services/review_service.rbi +82 -0
  668. data/rbi/stripe/services/setup_attempt_service.rbi +63 -0
  669. data/rbi/stripe/services/setup_intent_service.rbi +3609 -0
  670. data/rbi/stripe/services/shipping_rate_service.rbi +235 -0
  671. data/rbi/stripe/services/sigma/scheduled_query_run_service.rbi +46 -0
  672. data/rbi/stripe/services/sigma_service.rbi +9 -0
  673. data/rbi/stripe/services/source_service.rbi +647 -0
  674. data/rbi/stripe/services/source_transaction_service.rbi +31 -0
  675. data/rbi/stripe/services/subscription_item_service.rbi +422 -0
  676. data/rbi/stripe/services/subscription_item_usage_record_service.rbi +37 -0
  677. data/rbi/stripe/services/subscription_item_usage_record_summary_service.rbi +33 -0
  678. data/rbi/stripe/services/subscription_schedule_service.rbi +2208 -0
  679. data/rbi/stripe/services/subscription_service.rbi +1870 -0
  680. data/rbi/stripe/services/tax/association_service.rbi +25 -0
  681. data/rbi/stripe/services/tax/calculation_line_item_service.rbi +33 -0
  682. data/rbi/stripe/services/tax/calculation_service.rbi +228 -0
  683. data/rbi/stripe/services/tax/form_service.rbi +85 -0
  684. data/rbi/stripe/services/tax/registration_service.rbi +1517 -0
  685. data/rbi/stripe/services/tax/settings_service.rbi +93 -0
  686. data/rbi/stripe/services/tax/transaction_line_item_service.rbi +33 -0
  687. data/rbi/stripe/services/tax/transaction_service.rbi +142 -0
  688. data/rbi/stripe/services/tax_code_service.rbi +44 -0
  689. data/rbi/stripe/services/tax_id_service.rbi +112 -0
  690. data/rbi/stripe/services/tax_rate_service.rbi +183 -0
  691. data/rbi/stripe/services/tax_service.rbi +14 -0
  692. data/rbi/stripe/services/terminal/configuration_service.rbi +822 -0
  693. data/rbi/stripe/services/terminal/connection_token_service.rbi +25 -0
  694. data/rbi/stripe/services/terminal/location_service.rbi +184 -0
  695. data/rbi/stripe/services/terminal/reader_collected_data_service.rbi +22 -0
  696. data/rbi/stripe/services/terminal/reader_service.rbi +513 -0
  697. data/rbi/stripe/services/terminal_service.rbi +13 -0
  698. data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +778 -0
  699. data/rbi/stripe/services/test_helpers/customer_service.rbi +33 -0
  700. data/rbi/stripe/services/test_helpers/issuing/authorization_service.rbi +836 -0
  701. data/rbi/stripe/services/test_helpers/issuing/card_service.rbi +76 -0
  702. data/rbi/stripe/services/test_helpers/issuing/personalization_design_service.rbi +67 -0
  703. data/rbi/stripe/services/test_helpers/issuing/transaction_service.rbi +705 -0
  704. data/rbi/stripe/services/test_helpers/issuing_service.rbi +14 -0
  705. data/rbi/stripe/services/test_helpers/refund_service.rbi +22 -0
  706. data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +62 -0
  707. data/rbi/stripe/services/test_helpers/terminal_service.rbi +11 -0
  708. data/rbi/stripe/services/test_helpers/test_clock_service.rbi +90 -0
  709. data/rbi/stripe/services/test_helpers/treasury/inbound_transfer_service.rbi +64 -0
  710. data/rbi/stripe/services/test_helpers/treasury/outbound_payment_service.rbi +123 -0
  711. data/rbi/stripe/services/test_helpers/treasury/outbound_transfer_service.rbi +123 -0
  712. data/rbi/stripe/services/test_helpers/treasury/received_credit_service.rbi +114 -0
  713. data/rbi/stripe/services/test_helpers/treasury/received_debit_service.rbi +114 -0
  714. data/rbi/stripe/services/test_helpers/treasury_service.rbi +15 -0
  715. data/rbi/stripe/services/test_helpers_service.rbi +15 -0
  716. data/rbi/stripe/services/token_service.rbi +1136 -0
  717. data/rbi/stripe/services/topup_service.rbi +172 -0
  718. data/rbi/stripe/services/transfer_reversal_service.rbi +99 -0
  719. data/rbi/stripe/services/transfer_service.rbi +150 -0
  720. data/rbi/stripe/services/treasury/credit_reversal_service.rbi +84 -0
  721. data/rbi/stripe/services/treasury/debit_reversal_service.rbi +88 -0
  722. data/rbi/stripe/services/treasury/financial_account_features_service.rbi +201 -0
  723. data/rbi/stripe/services/treasury/financial_account_service.rbi +566 -0
  724. data/rbi/stripe/services/treasury/inbound_transfer_service.rbi +117 -0
  725. data/rbi/stripe/services/treasury/outbound_payment_service.rbi +300 -0
  726. data/rbi/stripe/services/treasury/outbound_transfer_service.rbi +182 -0
  727. data/rbi/stripe/services/treasury/received_credit_service.rbi +70 -0
  728. data/rbi/stripe/services/treasury/received_debit_service.rbi +59 -0
  729. data/rbi/stripe/services/treasury/transaction_entry_service.rbi +107 -0
  730. data/rbi/stripe/services/treasury/transaction_service.rbi +114 -0
  731. data/rbi/stripe/services/treasury_service.rbi +18 -0
  732. data/rbi/stripe/services/v1_services.rbi +83 -0
  733. data/rbi/stripe/services/v2/billing/meter_event_adjustment_service.rbi +39 -0
  734. data/rbi/stripe/services/v2/billing/meter_event_service.rbi +42 -0
  735. data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +20 -0
  736. data/rbi/stripe/services/v2/billing/meter_event_stream_service.rbi +55 -0
  737. data/rbi/stripe/services/v2/billing_service.rbi +14 -0
  738. data/rbi/stripe/services/v2/core/event_destination_service.rbi +203 -0
  739. data/rbi/stripe/services/v2/core/event_service.rbi +39 -0
  740. data/rbi/stripe/services/v2/core_service.rbi +12 -0
  741. data/rbi/stripe/services/v2_services.rbi +10 -0
  742. data/rbi/stripe/services/webhook_endpoint_service.rbi +131 -0
  743. metadata +435 -4
@@ -4,6 +4,1570 @@
4
4
  module Stripe
5
5
  module Tax
6
6
  class RegistrationService < StripeService
7
+ class ListParams < Stripe::RequestParams
8
+ # 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.
9
+ attr_accessor :ending_before
10
+ # Specifies which fields in the response should be expanded.
11
+ attr_accessor :expand
12
+ # A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
13
+ attr_accessor :limit
14
+ # 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.
15
+ attr_accessor :starting_after
16
+ # The status of the Tax Registration.
17
+ attr_accessor :status
18
+
19
+ def initialize(
20
+ ending_before: nil,
21
+ expand: nil,
22
+ limit: nil,
23
+ starting_after: nil,
24
+ status: nil
25
+ )
26
+ @ending_before = ending_before
27
+ @expand = expand
28
+ @limit = limit
29
+ @starting_after = starting_after
30
+ @status = status
31
+ end
32
+ end
33
+
34
+ class CreateParams < Stripe::RequestParams
35
+ class CountryOptions < Stripe::RequestParams
36
+ class Ae < Stripe::RequestParams
37
+ # Type of registration to be created in `country`.
38
+ attr_accessor :type
39
+
40
+ def initialize(type: nil)
41
+ @type = type
42
+ end
43
+ end
44
+
45
+ class Al < Stripe::RequestParams
46
+ # Type of registration to be created in `country`.
47
+ attr_accessor :type
48
+
49
+ def initialize(type: nil)
50
+ @type = type
51
+ end
52
+ end
53
+
54
+ class Am < Stripe::RequestParams
55
+ # Type of registration to be created in `country`.
56
+ attr_accessor :type
57
+
58
+ def initialize(type: nil)
59
+ @type = type
60
+ end
61
+ end
62
+
63
+ class Ao < Stripe::RequestParams
64
+ # Type of registration to be created in `country`.
65
+ attr_accessor :type
66
+
67
+ def initialize(type: nil)
68
+ @type = type
69
+ end
70
+ end
71
+
72
+ class At < Stripe::RequestParams
73
+ class Standard < Stripe::RequestParams
74
+ # Place of supply scheme used in an EU standard registration.
75
+ attr_accessor :place_of_supply_scheme
76
+
77
+ def initialize(place_of_supply_scheme: nil)
78
+ @place_of_supply_scheme = place_of_supply_scheme
79
+ end
80
+ end
81
+ # Options for the standard registration.
82
+ attr_accessor :standard
83
+ # Type of registration to be created in an EU country.
84
+ attr_accessor :type
85
+
86
+ def initialize(standard: nil, type: nil)
87
+ @standard = standard
88
+ @type = type
89
+ end
90
+ end
91
+
92
+ class Au < Stripe::RequestParams
93
+ # Type of registration to be created in `country`.
94
+ attr_accessor :type
95
+
96
+ def initialize(type: nil)
97
+ @type = type
98
+ end
99
+ end
100
+
101
+ class Ba < Stripe::RequestParams
102
+ # Type of registration to be created in `country`.
103
+ attr_accessor :type
104
+
105
+ def initialize(type: nil)
106
+ @type = type
107
+ end
108
+ end
109
+
110
+ class Bb < Stripe::RequestParams
111
+ # Type of registration to be created in `country`.
112
+ attr_accessor :type
113
+
114
+ def initialize(type: nil)
115
+ @type = type
116
+ end
117
+ end
118
+
119
+ class Be < Stripe::RequestParams
120
+ class Standard < Stripe::RequestParams
121
+ # Place of supply scheme used in an EU standard registration.
122
+ attr_accessor :place_of_supply_scheme
123
+
124
+ def initialize(place_of_supply_scheme: nil)
125
+ @place_of_supply_scheme = place_of_supply_scheme
126
+ end
127
+ end
128
+ # Options for the standard registration.
129
+ attr_accessor :standard
130
+ # Type of registration to be created in an EU country.
131
+ attr_accessor :type
132
+
133
+ def initialize(standard: nil, type: nil)
134
+ @standard = standard
135
+ @type = type
136
+ end
137
+ end
138
+
139
+ class Bg < Stripe::RequestParams
140
+ class Standard < Stripe::RequestParams
141
+ # Place of supply scheme used in an EU standard registration.
142
+ attr_accessor :place_of_supply_scheme
143
+
144
+ def initialize(place_of_supply_scheme: nil)
145
+ @place_of_supply_scheme = place_of_supply_scheme
146
+ end
147
+ end
148
+ # Options for the standard registration.
149
+ attr_accessor :standard
150
+ # Type of registration to be created in an EU country.
151
+ attr_accessor :type
152
+
153
+ def initialize(standard: nil, type: nil)
154
+ @standard = standard
155
+ @type = type
156
+ end
157
+ end
158
+
159
+ class Bh < Stripe::RequestParams
160
+ # Type of registration to be created in `country`.
161
+ attr_accessor :type
162
+
163
+ def initialize(type: nil)
164
+ @type = type
165
+ end
166
+ end
167
+
168
+ class Bs < Stripe::RequestParams
169
+ # Type of registration to be created in `country`.
170
+ attr_accessor :type
171
+
172
+ def initialize(type: nil)
173
+ @type = type
174
+ end
175
+ end
176
+
177
+ class By < Stripe::RequestParams
178
+ # Type of registration to be created in `country`.
179
+ attr_accessor :type
180
+
181
+ def initialize(type: nil)
182
+ @type = type
183
+ end
184
+ end
185
+
186
+ class Ca < Stripe::RequestParams
187
+ class ProvinceStandard < Stripe::RequestParams
188
+ # Two-letter CA province code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
189
+ attr_accessor :province
190
+
191
+ def initialize(province: nil)
192
+ @province = province
193
+ end
194
+ end
195
+ # Options for the provincial tax registration.
196
+ attr_accessor :province_standard
197
+ # Type of registration to be created in Canada.
198
+ attr_accessor :type
199
+
200
+ def initialize(province_standard: nil, type: nil)
201
+ @province_standard = province_standard
202
+ @type = type
203
+ end
204
+ end
205
+
206
+ class Cd < Stripe::RequestParams
207
+ # Type of registration to be created in `country`.
208
+ attr_accessor :type
209
+
210
+ def initialize(type: nil)
211
+ @type = type
212
+ end
213
+ end
214
+
215
+ class Ch < Stripe::RequestParams
216
+ # Type of registration to be created in `country`.
217
+ attr_accessor :type
218
+
219
+ def initialize(type: nil)
220
+ @type = type
221
+ end
222
+ end
223
+
224
+ class Cl < Stripe::RequestParams
225
+ # Type of registration to be created in `country`.
226
+ attr_accessor :type
227
+
228
+ def initialize(type: nil)
229
+ @type = type
230
+ end
231
+ end
232
+
233
+ class Co < Stripe::RequestParams
234
+ # Type of registration to be created in `country`.
235
+ attr_accessor :type
236
+
237
+ def initialize(type: nil)
238
+ @type = type
239
+ end
240
+ end
241
+
242
+ class Cr < Stripe::RequestParams
243
+ # Type of registration to be created in `country`.
244
+ attr_accessor :type
245
+
246
+ def initialize(type: nil)
247
+ @type = type
248
+ end
249
+ end
250
+
251
+ class Cy < Stripe::RequestParams
252
+ class Standard < Stripe::RequestParams
253
+ # Place of supply scheme used in an EU standard registration.
254
+ attr_accessor :place_of_supply_scheme
255
+
256
+ def initialize(place_of_supply_scheme: nil)
257
+ @place_of_supply_scheme = place_of_supply_scheme
258
+ end
259
+ end
260
+ # Options for the standard registration.
261
+ attr_accessor :standard
262
+ # Type of registration to be created in an EU country.
263
+ attr_accessor :type
264
+
265
+ def initialize(standard: nil, type: nil)
266
+ @standard = standard
267
+ @type = type
268
+ end
269
+ end
270
+
271
+ class Cz < Stripe::RequestParams
272
+ class Standard < Stripe::RequestParams
273
+ # Place of supply scheme used in an EU standard registration.
274
+ attr_accessor :place_of_supply_scheme
275
+
276
+ def initialize(place_of_supply_scheme: nil)
277
+ @place_of_supply_scheme = place_of_supply_scheme
278
+ end
279
+ end
280
+ # Options for the standard registration.
281
+ attr_accessor :standard
282
+ # Type of registration to be created in an EU country.
283
+ attr_accessor :type
284
+
285
+ def initialize(standard: nil, type: nil)
286
+ @standard = standard
287
+ @type = type
288
+ end
289
+ end
290
+
291
+ class De < Stripe::RequestParams
292
+ class Standard < Stripe::RequestParams
293
+ # Place of supply scheme used in an EU standard registration.
294
+ attr_accessor :place_of_supply_scheme
295
+
296
+ def initialize(place_of_supply_scheme: nil)
297
+ @place_of_supply_scheme = place_of_supply_scheme
298
+ end
299
+ end
300
+ # Options for the standard registration.
301
+ attr_accessor :standard
302
+ # Type of registration to be created in an EU country.
303
+ attr_accessor :type
304
+
305
+ def initialize(standard: nil, type: nil)
306
+ @standard = standard
307
+ @type = type
308
+ end
309
+ end
310
+
311
+ class Dk < Stripe::RequestParams
312
+ class Standard < Stripe::RequestParams
313
+ # Place of supply scheme used in an EU standard registration.
314
+ attr_accessor :place_of_supply_scheme
315
+
316
+ def initialize(place_of_supply_scheme: nil)
317
+ @place_of_supply_scheme = place_of_supply_scheme
318
+ end
319
+ end
320
+ # Options for the standard registration.
321
+ attr_accessor :standard
322
+ # Type of registration to be created in an EU country.
323
+ attr_accessor :type
324
+
325
+ def initialize(standard: nil, type: nil)
326
+ @standard = standard
327
+ @type = type
328
+ end
329
+ end
330
+
331
+ class Ec < Stripe::RequestParams
332
+ # Type of registration to be created in `country`.
333
+ attr_accessor :type
334
+
335
+ def initialize(type: nil)
336
+ @type = type
337
+ end
338
+ end
339
+
340
+ class Ee < Stripe::RequestParams
341
+ class Standard < Stripe::RequestParams
342
+ # Place of supply scheme used in an EU standard registration.
343
+ attr_accessor :place_of_supply_scheme
344
+
345
+ def initialize(place_of_supply_scheme: nil)
346
+ @place_of_supply_scheme = place_of_supply_scheme
347
+ end
348
+ end
349
+ # Options for the standard registration.
350
+ attr_accessor :standard
351
+ # Type of registration to be created in an EU country.
352
+ attr_accessor :type
353
+
354
+ def initialize(standard: nil, type: nil)
355
+ @standard = standard
356
+ @type = type
357
+ end
358
+ end
359
+
360
+ class Eg < Stripe::RequestParams
361
+ # Type of registration to be created in `country`.
362
+ attr_accessor :type
363
+
364
+ def initialize(type: nil)
365
+ @type = type
366
+ end
367
+ end
368
+
369
+ class Es < Stripe::RequestParams
370
+ class Standard < Stripe::RequestParams
371
+ # Place of supply scheme used in an EU standard registration.
372
+ attr_accessor :place_of_supply_scheme
373
+
374
+ def initialize(place_of_supply_scheme: nil)
375
+ @place_of_supply_scheme = place_of_supply_scheme
376
+ end
377
+ end
378
+ # Options for the standard registration.
379
+ attr_accessor :standard
380
+ # Type of registration to be created in an EU country.
381
+ attr_accessor :type
382
+
383
+ def initialize(standard: nil, type: nil)
384
+ @standard = standard
385
+ @type = type
386
+ end
387
+ end
388
+
389
+ class Fi < Stripe::RequestParams
390
+ class Standard < Stripe::RequestParams
391
+ # Place of supply scheme used in an EU standard registration.
392
+ attr_accessor :place_of_supply_scheme
393
+
394
+ def initialize(place_of_supply_scheme: nil)
395
+ @place_of_supply_scheme = place_of_supply_scheme
396
+ end
397
+ end
398
+ # Options for the standard registration.
399
+ attr_accessor :standard
400
+ # Type of registration to be created in an EU country.
401
+ attr_accessor :type
402
+
403
+ def initialize(standard: nil, type: nil)
404
+ @standard = standard
405
+ @type = type
406
+ end
407
+ end
408
+
409
+ class Fr < Stripe::RequestParams
410
+ class Standard < Stripe::RequestParams
411
+ # Place of supply scheme used in an EU standard registration.
412
+ attr_accessor :place_of_supply_scheme
413
+
414
+ def initialize(place_of_supply_scheme: nil)
415
+ @place_of_supply_scheme = place_of_supply_scheme
416
+ end
417
+ end
418
+ # Options for the standard registration.
419
+ attr_accessor :standard
420
+ # Type of registration to be created in an EU country.
421
+ attr_accessor :type
422
+
423
+ def initialize(standard: nil, type: nil)
424
+ @standard = standard
425
+ @type = type
426
+ end
427
+ end
428
+
429
+ class Gb < Stripe::RequestParams
430
+ # Type of registration to be created in `country`.
431
+ attr_accessor :type
432
+
433
+ def initialize(type: nil)
434
+ @type = type
435
+ end
436
+ end
437
+
438
+ class Ge < Stripe::RequestParams
439
+ # Type of registration to be created in `country`.
440
+ attr_accessor :type
441
+
442
+ def initialize(type: nil)
443
+ @type = type
444
+ end
445
+ end
446
+
447
+ class Gn < Stripe::RequestParams
448
+ # Type of registration to be created in `country`.
449
+ attr_accessor :type
450
+
451
+ def initialize(type: nil)
452
+ @type = type
453
+ end
454
+ end
455
+
456
+ class Gr < Stripe::RequestParams
457
+ class Standard < Stripe::RequestParams
458
+ # Place of supply scheme used in an EU standard registration.
459
+ attr_accessor :place_of_supply_scheme
460
+
461
+ def initialize(place_of_supply_scheme: nil)
462
+ @place_of_supply_scheme = place_of_supply_scheme
463
+ end
464
+ end
465
+ # Options for the standard registration.
466
+ attr_accessor :standard
467
+ # Type of registration to be created in an EU country.
468
+ attr_accessor :type
469
+
470
+ def initialize(standard: nil, type: nil)
471
+ @standard = standard
472
+ @type = type
473
+ end
474
+ end
475
+
476
+ class Hr < Stripe::RequestParams
477
+ class Standard < Stripe::RequestParams
478
+ # Place of supply scheme used in an EU standard registration.
479
+ attr_accessor :place_of_supply_scheme
480
+
481
+ def initialize(place_of_supply_scheme: nil)
482
+ @place_of_supply_scheme = place_of_supply_scheme
483
+ end
484
+ end
485
+ # Options for the standard registration.
486
+ attr_accessor :standard
487
+ # Type of registration to be created in an EU country.
488
+ attr_accessor :type
489
+
490
+ def initialize(standard: nil, type: nil)
491
+ @standard = standard
492
+ @type = type
493
+ end
494
+ end
495
+
496
+ class Hu < Stripe::RequestParams
497
+ class Standard < Stripe::RequestParams
498
+ # Place of supply scheme used in an EU standard registration.
499
+ attr_accessor :place_of_supply_scheme
500
+
501
+ def initialize(place_of_supply_scheme: nil)
502
+ @place_of_supply_scheme = place_of_supply_scheme
503
+ end
504
+ end
505
+ # Options for the standard registration.
506
+ attr_accessor :standard
507
+ # Type of registration to be created in an EU country.
508
+ attr_accessor :type
509
+
510
+ def initialize(standard: nil, type: nil)
511
+ @standard = standard
512
+ @type = type
513
+ end
514
+ end
515
+
516
+ class Id < Stripe::RequestParams
517
+ # Type of registration to be created in `country`.
518
+ attr_accessor :type
519
+
520
+ def initialize(type: nil)
521
+ @type = type
522
+ end
523
+ end
524
+
525
+ class Ie < Stripe::RequestParams
526
+ class Standard < Stripe::RequestParams
527
+ # Place of supply scheme used in an EU standard registration.
528
+ attr_accessor :place_of_supply_scheme
529
+
530
+ def initialize(place_of_supply_scheme: nil)
531
+ @place_of_supply_scheme = place_of_supply_scheme
532
+ end
533
+ end
534
+ # Options for the standard registration.
535
+ attr_accessor :standard
536
+ # Type of registration to be created in an EU country.
537
+ attr_accessor :type
538
+
539
+ def initialize(standard: nil, type: nil)
540
+ @standard = standard
541
+ @type = type
542
+ end
543
+ end
544
+
545
+ class Is < Stripe::RequestParams
546
+ # Type of registration to be created in `country`.
547
+ attr_accessor :type
548
+
549
+ def initialize(type: nil)
550
+ @type = type
551
+ end
552
+ end
553
+
554
+ class It < Stripe::RequestParams
555
+ class Standard < Stripe::RequestParams
556
+ # Place of supply scheme used in an EU standard registration.
557
+ attr_accessor :place_of_supply_scheme
558
+
559
+ def initialize(place_of_supply_scheme: nil)
560
+ @place_of_supply_scheme = place_of_supply_scheme
561
+ end
562
+ end
563
+ # Options for the standard registration.
564
+ attr_accessor :standard
565
+ # Type of registration to be created in an EU country.
566
+ attr_accessor :type
567
+
568
+ def initialize(standard: nil, type: nil)
569
+ @standard = standard
570
+ @type = type
571
+ end
572
+ end
573
+
574
+ class Jp < Stripe::RequestParams
575
+ # Type of registration to be created in `country`.
576
+ attr_accessor :type
577
+
578
+ def initialize(type: nil)
579
+ @type = type
580
+ end
581
+ end
582
+
583
+ class Ke < Stripe::RequestParams
584
+ # Type of registration to be created in `country`.
585
+ attr_accessor :type
586
+
587
+ def initialize(type: nil)
588
+ @type = type
589
+ end
590
+ end
591
+
592
+ class Kh < Stripe::RequestParams
593
+ # Type of registration to be created in `country`.
594
+ attr_accessor :type
595
+
596
+ def initialize(type: nil)
597
+ @type = type
598
+ end
599
+ end
600
+
601
+ class Kr < Stripe::RequestParams
602
+ # Type of registration to be created in `country`.
603
+ attr_accessor :type
604
+
605
+ def initialize(type: nil)
606
+ @type = type
607
+ end
608
+ end
609
+
610
+ class Kz < Stripe::RequestParams
611
+ # Type of registration to be created in `country`.
612
+ attr_accessor :type
613
+
614
+ def initialize(type: nil)
615
+ @type = type
616
+ end
617
+ end
618
+
619
+ class Lt < Stripe::RequestParams
620
+ class Standard < Stripe::RequestParams
621
+ # Place of supply scheme used in an EU standard registration.
622
+ attr_accessor :place_of_supply_scheme
623
+
624
+ def initialize(place_of_supply_scheme: nil)
625
+ @place_of_supply_scheme = place_of_supply_scheme
626
+ end
627
+ end
628
+ # Options for the standard registration.
629
+ attr_accessor :standard
630
+ # Type of registration to be created in an EU country.
631
+ attr_accessor :type
632
+
633
+ def initialize(standard: nil, type: nil)
634
+ @standard = standard
635
+ @type = type
636
+ end
637
+ end
638
+
639
+ class Lu < Stripe::RequestParams
640
+ class Standard < Stripe::RequestParams
641
+ # Place of supply scheme used in an EU standard registration.
642
+ attr_accessor :place_of_supply_scheme
643
+
644
+ def initialize(place_of_supply_scheme: nil)
645
+ @place_of_supply_scheme = place_of_supply_scheme
646
+ end
647
+ end
648
+ # Options for the standard registration.
649
+ attr_accessor :standard
650
+ # Type of registration to be created in an EU country.
651
+ attr_accessor :type
652
+
653
+ def initialize(standard: nil, type: nil)
654
+ @standard = standard
655
+ @type = type
656
+ end
657
+ end
658
+
659
+ class Lv < Stripe::RequestParams
660
+ class Standard < Stripe::RequestParams
661
+ # Place of supply scheme used in an EU standard registration.
662
+ attr_accessor :place_of_supply_scheme
663
+
664
+ def initialize(place_of_supply_scheme: nil)
665
+ @place_of_supply_scheme = place_of_supply_scheme
666
+ end
667
+ end
668
+ # Options for the standard registration.
669
+ attr_accessor :standard
670
+ # Type of registration to be created in an EU country.
671
+ attr_accessor :type
672
+
673
+ def initialize(standard: nil, type: nil)
674
+ @standard = standard
675
+ @type = type
676
+ end
677
+ end
678
+
679
+ class Ma < Stripe::RequestParams
680
+ # Type of registration to be created in `country`.
681
+ attr_accessor :type
682
+
683
+ def initialize(type: nil)
684
+ @type = type
685
+ end
686
+ end
687
+
688
+ class Md < Stripe::RequestParams
689
+ # Type of registration to be created in `country`.
690
+ attr_accessor :type
691
+
692
+ def initialize(type: nil)
693
+ @type = type
694
+ end
695
+ end
696
+
697
+ class Me < Stripe::RequestParams
698
+ # Type of registration to be created in `country`.
699
+ attr_accessor :type
700
+
701
+ def initialize(type: nil)
702
+ @type = type
703
+ end
704
+ end
705
+
706
+ class Mk < Stripe::RequestParams
707
+ # Type of registration to be created in `country`.
708
+ attr_accessor :type
709
+
710
+ def initialize(type: nil)
711
+ @type = type
712
+ end
713
+ end
714
+
715
+ class Mr < Stripe::RequestParams
716
+ # Type of registration to be created in `country`.
717
+ attr_accessor :type
718
+
719
+ def initialize(type: nil)
720
+ @type = type
721
+ end
722
+ end
723
+
724
+ class Mt < Stripe::RequestParams
725
+ class Standard < Stripe::RequestParams
726
+ # Place of supply scheme used in an EU standard registration.
727
+ attr_accessor :place_of_supply_scheme
728
+
729
+ def initialize(place_of_supply_scheme: nil)
730
+ @place_of_supply_scheme = place_of_supply_scheme
731
+ end
732
+ end
733
+ # Options for the standard registration.
734
+ attr_accessor :standard
735
+ # Type of registration to be created in an EU country.
736
+ attr_accessor :type
737
+
738
+ def initialize(standard: nil, type: nil)
739
+ @standard = standard
740
+ @type = type
741
+ end
742
+ end
743
+
744
+ class Mx < Stripe::RequestParams
745
+ # Type of registration to be created in `country`.
746
+ attr_accessor :type
747
+
748
+ def initialize(type: nil)
749
+ @type = type
750
+ end
751
+ end
752
+
753
+ class My < Stripe::RequestParams
754
+ # Type of registration to be created in `country`.
755
+ attr_accessor :type
756
+
757
+ def initialize(type: nil)
758
+ @type = type
759
+ end
760
+ end
761
+
762
+ class Ng < Stripe::RequestParams
763
+ # Type of registration to be created in `country`.
764
+ attr_accessor :type
765
+
766
+ def initialize(type: nil)
767
+ @type = type
768
+ end
769
+ end
770
+
771
+ class Nl < Stripe::RequestParams
772
+ class Standard < Stripe::RequestParams
773
+ # Place of supply scheme used in an EU standard registration.
774
+ attr_accessor :place_of_supply_scheme
775
+
776
+ def initialize(place_of_supply_scheme: nil)
777
+ @place_of_supply_scheme = place_of_supply_scheme
778
+ end
779
+ end
780
+ # Options for the standard registration.
781
+ attr_accessor :standard
782
+ # Type of registration to be created in an EU country.
783
+ attr_accessor :type
784
+
785
+ def initialize(standard: nil, type: nil)
786
+ @standard = standard
787
+ @type = type
788
+ end
789
+ end
790
+
791
+ class No < Stripe::RequestParams
792
+ # Type of registration to be created in `country`.
793
+ attr_accessor :type
794
+
795
+ def initialize(type: nil)
796
+ @type = type
797
+ end
798
+ end
799
+
800
+ class Np < Stripe::RequestParams
801
+ # Type of registration to be created in `country`.
802
+ attr_accessor :type
803
+
804
+ def initialize(type: nil)
805
+ @type = type
806
+ end
807
+ end
808
+
809
+ class Nz < Stripe::RequestParams
810
+ # Type of registration to be created in `country`.
811
+ attr_accessor :type
812
+
813
+ def initialize(type: nil)
814
+ @type = type
815
+ end
816
+ end
817
+
818
+ class Om < Stripe::RequestParams
819
+ # Type of registration to be created in `country`.
820
+ attr_accessor :type
821
+
822
+ def initialize(type: nil)
823
+ @type = type
824
+ end
825
+ end
826
+
827
+ class Pe < Stripe::RequestParams
828
+ # Type of registration to be created in `country`.
829
+ attr_accessor :type
830
+
831
+ def initialize(type: nil)
832
+ @type = type
833
+ end
834
+ end
835
+
836
+ class Pl < Stripe::RequestParams
837
+ class Standard < Stripe::RequestParams
838
+ # Place of supply scheme used in an EU standard registration.
839
+ attr_accessor :place_of_supply_scheme
840
+
841
+ def initialize(place_of_supply_scheme: nil)
842
+ @place_of_supply_scheme = place_of_supply_scheme
843
+ end
844
+ end
845
+ # Options for the standard registration.
846
+ attr_accessor :standard
847
+ # Type of registration to be created in an EU country.
848
+ attr_accessor :type
849
+
850
+ def initialize(standard: nil, type: nil)
851
+ @standard = standard
852
+ @type = type
853
+ end
854
+ end
855
+
856
+ class Pt < Stripe::RequestParams
857
+ class Standard < Stripe::RequestParams
858
+ # Place of supply scheme used in an EU standard registration.
859
+ attr_accessor :place_of_supply_scheme
860
+
861
+ def initialize(place_of_supply_scheme: nil)
862
+ @place_of_supply_scheme = place_of_supply_scheme
863
+ end
864
+ end
865
+ # Options for the standard registration.
866
+ attr_accessor :standard
867
+ # Type of registration to be created in an EU country.
868
+ attr_accessor :type
869
+
870
+ def initialize(standard: nil, type: nil)
871
+ @standard = standard
872
+ @type = type
873
+ end
874
+ end
875
+
876
+ class Ro < Stripe::RequestParams
877
+ class Standard < Stripe::RequestParams
878
+ # Place of supply scheme used in an EU standard registration.
879
+ attr_accessor :place_of_supply_scheme
880
+
881
+ def initialize(place_of_supply_scheme: nil)
882
+ @place_of_supply_scheme = place_of_supply_scheme
883
+ end
884
+ end
885
+ # Options for the standard registration.
886
+ attr_accessor :standard
887
+ # Type of registration to be created in an EU country.
888
+ attr_accessor :type
889
+
890
+ def initialize(standard: nil, type: nil)
891
+ @standard = standard
892
+ @type = type
893
+ end
894
+ end
895
+
896
+ class Rs < Stripe::RequestParams
897
+ # Type of registration to be created in `country`.
898
+ attr_accessor :type
899
+
900
+ def initialize(type: nil)
901
+ @type = type
902
+ end
903
+ end
904
+
905
+ class Ru < Stripe::RequestParams
906
+ # Type of registration to be created in `country`.
907
+ attr_accessor :type
908
+
909
+ def initialize(type: nil)
910
+ @type = type
911
+ end
912
+ end
913
+
914
+ class Sa < Stripe::RequestParams
915
+ # Type of registration to be created in `country`.
916
+ attr_accessor :type
917
+
918
+ def initialize(type: nil)
919
+ @type = type
920
+ end
921
+ end
922
+
923
+ class Se < Stripe::RequestParams
924
+ class Standard < Stripe::RequestParams
925
+ # Place of supply scheme used in an EU standard registration.
926
+ attr_accessor :place_of_supply_scheme
927
+
928
+ def initialize(place_of_supply_scheme: nil)
929
+ @place_of_supply_scheme = place_of_supply_scheme
930
+ end
931
+ end
932
+ # Options for the standard registration.
933
+ attr_accessor :standard
934
+ # Type of registration to be created in an EU country.
935
+ attr_accessor :type
936
+
937
+ def initialize(standard: nil, type: nil)
938
+ @standard = standard
939
+ @type = type
940
+ end
941
+ end
942
+
943
+ class Sg < Stripe::RequestParams
944
+ # Type of registration to be created in `country`.
945
+ attr_accessor :type
946
+
947
+ def initialize(type: nil)
948
+ @type = type
949
+ end
950
+ end
951
+
952
+ class Si < Stripe::RequestParams
953
+ class Standard < Stripe::RequestParams
954
+ # Place of supply scheme used in an EU standard registration.
955
+ attr_accessor :place_of_supply_scheme
956
+
957
+ def initialize(place_of_supply_scheme: nil)
958
+ @place_of_supply_scheme = place_of_supply_scheme
959
+ end
960
+ end
961
+ # Options for the standard registration.
962
+ attr_accessor :standard
963
+ # Type of registration to be created in an EU country.
964
+ attr_accessor :type
965
+
966
+ def initialize(standard: nil, type: nil)
967
+ @standard = standard
968
+ @type = type
969
+ end
970
+ end
971
+
972
+ class Sk < Stripe::RequestParams
973
+ class Standard < Stripe::RequestParams
974
+ # Place of supply scheme used in an EU standard registration.
975
+ attr_accessor :place_of_supply_scheme
976
+
977
+ def initialize(place_of_supply_scheme: nil)
978
+ @place_of_supply_scheme = place_of_supply_scheme
979
+ end
980
+ end
981
+ # Options for the standard registration.
982
+ attr_accessor :standard
983
+ # Type of registration to be created in an EU country.
984
+ attr_accessor :type
985
+
986
+ def initialize(standard: nil, type: nil)
987
+ @standard = standard
988
+ @type = type
989
+ end
990
+ end
991
+
992
+ class Sn < Stripe::RequestParams
993
+ # Type of registration to be created in `country`.
994
+ attr_accessor :type
995
+
996
+ def initialize(type: nil)
997
+ @type = type
998
+ end
999
+ end
1000
+
1001
+ class Sr < Stripe::RequestParams
1002
+ # Type of registration to be created in `country`.
1003
+ attr_accessor :type
1004
+
1005
+ def initialize(type: nil)
1006
+ @type = type
1007
+ end
1008
+ end
1009
+
1010
+ class Th < Stripe::RequestParams
1011
+ # Type of registration to be created in `country`.
1012
+ attr_accessor :type
1013
+
1014
+ def initialize(type: nil)
1015
+ @type = type
1016
+ end
1017
+ end
1018
+
1019
+ class Tj < Stripe::RequestParams
1020
+ # Type of registration to be created in `country`.
1021
+ attr_accessor :type
1022
+
1023
+ def initialize(type: nil)
1024
+ @type = type
1025
+ end
1026
+ end
1027
+
1028
+ class Tr < Stripe::RequestParams
1029
+ # Type of registration to be created in `country`.
1030
+ attr_accessor :type
1031
+
1032
+ def initialize(type: nil)
1033
+ @type = type
1034
+ end
1035
+ end
1036
+
1037
+ class Tz < Stripe::RequestParams
1038
+ # Type of registration to be created in `country`.
1039
+ attr_accessor :type
1040
+
1041
+ def initialize(type: nil)
1042
+ @type = type
1043
+ end
1044
+ end
1045
+
1046
+ class Ug < Stripe::RequestParams
1047
+ # Type of registration to be created in `country`.
1048
+ attr_accessor :type
1049
+
1050
+ def initialize(type: nil)
1051
+ @type = type
1052
+ end
1053
+ end
1054
+
1055
+ class Us < Stripe::RequestParams
1056
+ class LocalAmusementTax < Stripe::RequestParams
1057
+ # A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago), `06613` (Bloomington), `21696` (East Dundee), `24582` (Evanston), and `68081` (Schiller Park).
1058
+ attr_accessor :jurisdiction
1059
+
1060
+ def initialize(jurisdiction: nil)
1061
+ @jurisdiction = jurisdiction
1062
+ end
1063
+ end
1064
+
1065
+ class LocalLeaseTax < Stripe::RequestParams
1066
+ # A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago).
1067
+ attr_accessor :jurisdiction
1068
+
1069
+ def initialize(jurisdiction: nil)
1070
+ @jurisdiction = jurisdiction
1071
+ end
1072
+ end
1073
+
1074
+ class StateSalesTax < Stripe::RequestParams
1075
+ class Election < Stripe::RequestParams
1076
+ # A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `003` (Allegheny County) and `60000` (Philadelphia City).
1077
+ attr_accessor :jurisdiction
1078
+ # The type of the election for the state sales tax registration.
1079
+ attr_accessor :type
1080
+
1081
+ def initialize(jurisdiction: nil, type: nil)
1082
+ @jurisdiction = jurisdiction
1083
+ @type = type
1084
+ end
1085
+ end
1086
+ # Elections for the state sales tax registration.
1087
+ attr_accessor :elections
1088
+
1089
+ def initialize(elections: nil)
1090
+ @elections = elections
1091
+ end
1092
+ end
1093
+ # Options for the local amusement tax registration.
1094
+ attr_accessor :local_amusement_tax
1095
+ # Options for the local lease tax registration.
1096
+ attr_accessor :local_lease_tax
1097
+ # Two-letter US state code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
1098
+ attr_accessor :state
1099
+ # Options for the state sales tax registration.
1100
+ attr_accessor :state_sales_tax
1101
+ # Type of registration to be created in the US.
1102
+ attr_accessor :type
1103
+
1104
+ def initialize(
1105
+ local_amusement_tax: nil,
1106
+ local_lease_tax: nil,
1107
+ state: nil,
1108
+ state_sales_tax: nil,
1109
+ type: nil
1110
+ )
1111
+ @local_amusement_tax = local_amusement_tax
1112
+ @local_lease_tax = local_lease_tax
1113
+ @state = state
1114
+ @state_sales_tax = state_sales_tax
1115
+ @type = type
1116
+ end
1117
+ end
1118
+
1119
+ class Uy < Stripe::RequestParams
1120
+ # Type of registration to be created in `country`.
1121
+ attr_accessor :type
1122
+
1123
+ def initialize(type: nil)
1124
+ @type = type
1125
+ end
1126
+ end
1127
+
1128
+ class Uz < Stripe::RequestParams
1129
+ # Type of registration to be created in `country`.
1130
+ attr_accessor :type
1131
+
1132
+ def initialize(type: nil)
1133
+ @type = type
1134
+ end
1135
+ end
1136
+
1137
+ class Vn < Stripe::RequestParams
1138
+ # Type of registration to be created in `country`.
1139
+ attr_accessor :type
1140
+
1141
+ def initialize(type: nil)
1142
+ @type = type
1143
+ end
1144
+ end
1145
+
1146
+ class Za < Stripe::RequestParams
1147
+ # Type of registration to be created in `country`.
1148
+ attr_accessor :type
1149
+
1150
+ def initialize(type: nil)
1151
+ @type = type
1152
+ end
1153
+ end
1154
+
1155
+ class Zm < Stripe::RequestParams
1156
+ # Type of registration to be created in `country`.
1157
+ attr_accessor :type
1158
+
1159
+ def initialize(type: nil)
1160
+ @type = type
1161
+ end
1162
+ end
1163
+
1164
+ class Zw < Stripe::RequestParams
1165
+ # Type of registration to be created in `country`.
1166
+ attr_accessor :type
1167
+
1168
+ def initialize(type: nil)
1169
+ @type = type
1170
+ end
1171
+ end
1172
+ # Options for the registration in AE.
1173
+ attr_accessor :ae
1174
+ # Options for the registration in AL.
1175
+ attr_accessor :al
1176
+ # Options for the registration in AM.
1177
+ attr_accessor :am
1178
+ # Options for the registration in AO.
1179
+ attr_accessor :ao
1180
+ # Options for the registration in AT.
1181
+ attr_accessor :at
1182
+ # Options for the registration in AU.
1183
+ attr_accessor :au
1184
+ # Options for the registration in BA.
1185
+ attr_accessor :ba
1186
+ # Options for the registration in BB.
1187
+ attr_accessor :bb
1188
+ # Options for the registration in BE.
1189
+ attr_accessor :be
1190
+ # Options for the registration in BG.
1191
+ attr_accessor :bg
1192
+ # Options for the registration in BH.
1193
+ attr_accessor :bh
1194
+ # Options for the registration in BS.
1195
+ attr_accessor :bs
1196
+ # Options for the registration in BY.
1197
+ attr_accessor :by
1198
+ # Options for the registration in CA.
1199
+ attr_accessor :ca
1200
+ # Options for the registration in CD.
1201
+ attr_accessor :cd
1202
+ # Options for the registration in CH.
1203
+ attr_accessor :ch
1204
+ # Options for the registration in CL.
1205
+ attr_accessor :cl
1206
+ # Options for the registration in CO.
1207
+ attr_accessor :co
1208
+ # Options for the registration in CR.
1209
+ attr_accessor :cr
1210
+ # Options for the registration in CY.
1211
+ attr_accessor :cy
1212
+ # Options for the registration in CZ.
1213
+ attr_accessor :cz
1214
+ # Options for the registration in DE.
1215
+ attr_accessor :de
1216
+ # Options for the registration in DK.
1217
+ attr_accessor :dk
1218
+ # Options for the registration in EC.
1219
+ attr_accessor :ec
1220
+ # Options for the registration in EE.
1221
+ attr_accessor :ee
1222
+ # Options for the registration in EG.
1223
+ attr_accessor :eg
1224
+ # Options for the registration in ES.
1225
+ attr_accessor :es
1226
+ # Options for the registration in FI.
1227
+ attr_accessor :fi
1228
+ # Options for the registration in FR.
1229
+ attr_accessor :fr
1230
+ # Options for the registration in GB.
1231
+ attr_accessor :gb
1232
+ # Options for the registration in GE.
1233
+ attr_accessor :ge
1234
+ # Options for the registration in GN.
1235
+ attr_accessor :gn
1236
+ # Options for the registration in GR.
1237
+ attr_accessor :gr
1238
+ # Options for the registration in HR.
1239
+ attr_accessor :hr
1240
+ # Options for the registration in HU.
1241
+ attr_accessor :hu
1242
+ # Options for the registration in ID.
1243
+ attr_accessor :id
1244
+ # Options for the registration in IE.
1245
+ attr_accessor :ie
1246
+ # Options for the registration in IS.
1247
+ attr_accessor :is
1248
+ # Options for the registration in IT.
1249
+ attr_accessor :it
1250
+ # Options for the registration in JP.
1251
+ attr_accessor :jp
1252
+ # Options for the registration in KE.
1253
+ attr_accessor :ke
1254
+ # Options for the registration in KH.
1255
+ attr_accessor :kh
1256
+ # Options for the registration in KR.
1257
+ attr_accessor :kr
1258
+ # Options for the registration in KZ.
1259
+ attr_accessor :kz
1260
+ # Options for the registration in LT.
1261
+ attr_accessor :lt
1262
+ # Options for the registration in LU.
1263
+ attr_accessor :lu
1264
+ # Options for the registration in LV.
1265
+ attr_accessor :lv
1266
+ # Options for the registration in MA.
1267
+ attr_accessor :ma
1268
+ # Options for the registration in MD.
1269
+ attr_accessor :md
1270
+ # Options for the registration in ME.
1271
+ attr_accessor :me
1272
+ # Options for the registration in MK.
1273
+ attr_accessor :mk
1274
+ # Options for the registration in MR.
1275
+ attr_accessor :mr
1276
+ # Options for the registration in MT.
1277
+ attr_accessor :mt
1278
+ # Options for the registration in MX.
1279
+ attr_accessor :mx
1280
+ # Options for the registration in MY.
1281
+ attr_accessor :my
1282
+ # Options for the registration in NG.
1283
+ attr_accessor :ng
1284
+ # Options for the registration in NL.
1285
+ attr_accessor :nl
1286
+ # Options for the registration in NO.
1287
+ attr_accessor :no
1288
+ # Options for the registration in NP.
1289
+ attr_accessor :np
1290
+ # Options for the registration in NZ.
1291
+ attr_accessor :nz
1292
+ # Options for the registration in OM.
1293
+ attr_accessor :om
1294
+ # Options for the registration in PE.
1295
+ attr_accessor :pe
1296
+ # Options for the registration in PL.
1297
+ attr_accessor :pl
1298
+ # Options for the registration in PT.
1299
+ attr_accessor :pt
1300
+ # Options for the registration in RO.
1301
+ attr_accessor :ro
1302
+ # Options for the registration in RS.
1303
+ attr_accessor :rs
1304
+ # Options for the registration in RU.
1305
+ attr_accessor :ru
1306
+ # Options for the registration in SA.
1307
+ attr_accessor :sa
1308
+ # Options for the registration in SE.
1309
+ attr_accessor :se
1310
+ # Options for the registration in SG.
1311
+ attr_accessor :sg
1312
+ # Options for the registration in SI.
1313
+ attr_accessor :si
1314
+ # Options for the registration in SK.
1315
+ attr_accessor :sk
1316
+ # Options for the registration in SN.
1317
+ attr_accessor :sn
1318
+ # Options for the registration in SR.
1319
+ attr_accessor :sr
1320
+ # Options for the registration in TH.
1321
+ attr_accessor :th
1322
+ # Options for the registration in TJ.
1323
+ attr_accessor :tj
1324
+ # Options for the registration in TR.
1325
+ attr_accessor :tr
1326
+ # Options for the registration in TZ.
1327
+ attr_accessor :tz
1328
+ # Options for the registration in UG.
1329
+ attr_accessor :ug
1330
+ # Options for the registration in US.
1331
+ attr_accessor :us
1332
+ # Options for the registration in UY.
1333
+ attr_accessor :uy
1334
+ # Options for the registration in UZ.
1335
+ attr_accessor :uz
1336
+ # Options for the registration in VN.
1337
+ attr_accessor :vn
1338
+ # Options for the registration in ZA.
1339
+ attr_accessor :za
1340
+ # Options for the registration in ZM.
1341
+ attr_accessor :zm
1342
+ # Options for the registration in ZW.
1343
+ attr_accessor :zw
1344
+
1345
+ def initialize(
1346
+ ae: nil,
1347
+ al: nil,
1348
+ am: nil,
1349
+ ao: nil,
1350
+ at: nil,
1351
+ au: nil,
1352
+ ba: nil,
1353
+ bb: nil,
1354
+ be: nil,
1355
+ bg: nil,
1356
+ bh: nil,
1357
+ bs: nil,
1358
+ by: nil,
1359
+ ca: nil,
1360
+ cd: nil,
1361
+ ch: nil,
1362
+ cl: nil,
1363
+ co: nil,
1364
+ cr: nil,
1365
+ cy: nil,
1366
+ cz: nil,
1367
+ de: nil,
1368
+ dk: nil,
1369
+ ec: nil,
1370
+ ee: nil,
1371
+ eg: nil,
1372
+ es: nil,
1373
+ fi: nil,
1374
+ fr: nil,
1375
+ gb: nil,
1376
+ ge: nil,
1377
+ gn: nil,
1378
+ gr: nil,
1379
+ hr: nil,
1380
+ hu: nil,
1381
+ id: nil,
1382
+ ie: nil,
1383
+ is: nil,
1384
+ it: nil,
1385
+ jp: nil,
1386
+ ke: nil,
1387
+ kh: nil,
1388
+ kr: nil,
1389
+ kz: nil,
1390
+ lt: nil,
1391
+ lu: nil,
1392
+ lv: nil,
1393
+ ma: nil,
1394
+ md: nil,
1395
+ me: nil,
1396
+ mk: nil,
1397
+ mr: nil,
1398
+ mt: nil,
1399
+ mx: nil,
1400
+ my: nil,
1401
+ ng: nil,
1402
+ nl: nil,
1403
+ no: nil,
1404
+ np: nil,
1405
+ nz: nil,
1406
+ om: nil,
1407
+ pe: nil,
1408
+ pl: nil,
1409
+ pt: nil,
1410
+ ro: nil,
1411
+ rs: nil,
1412
+ ru: nil,
1413
+ sa: nil,
1414
+ se: nil,
1415
+ sg: nil,
1416
+ si: nil,
1417
+ sk: nil,
1418
+ sn: nil,
1419
+ sr: nil,
1420
+ th: nil,
1421
+ tj: nil,
1422
+ tr: nil,
1423
+ tz: nil,
1424
+ ug: nil,
1425
+ us: nil,
1426
+ uy: nil,
1427
+ uz: nil,
1428
+ vn: nil,
1429
+ za: nil,
1430
+ zm: nil,
1431
+ zw: nil
1432
+ )
1433
+ @ae = ae
1434
+ @al = al
1435
+ @am = am
1436
+ @ao = ao
1437
+ @at = at
1438
+ @au = au
1439
+ @ba = ba
1440
+ @bb = bb
1441
+ @be = be
1442
+ @bg = bg
1443
+ @bh = bh
1444
+ @bs = bs
1445
+ @by = by
1446
+ @ca = ca
1447
+ @cd = cd
1448
+ @ch = ch
1449
+ @cl = cl
1450
+ @co = co
1451
+ @cr = cr
1452
+ @cy = cy
1453
+ @cz = cz
1454
+ @de = de
1455
+ @dk = dk
1456
+ @ec = ec
1457
+ @ee = ee
1458
+ @eg = eg
1459
+ @es = es
1460
+ @fi = fi
1461
+ @fr = fr
1462
+ @gb = gb
1463
+ @ge = ge
1464
+ @gn = gn
1465
+ @gr = gr
1466
+ @hr = hr
1467
+ @hu = hu
1468
+ @id = id
1469
+ @ie = ie
1470
+ @is = is
1471
+ @it = it
1472
+ @jp = jp
1473
+ @ke = ke
1474
+ @kh = kh
1475
+ @kr = kr
1476
+ @kz = kz
1477
+ @lt = lt
1478
+ @lu = lu
1479
+ @lv = lv
1480
+ @ma = ma
1481
+ @md = md
1482
+ @me = me
1483
+ @mk = mk
1484
+ @mr = mr
1485
+ @mt = mt
1486
+ @mx = mx
1487
+ @my = my
1488
+ @ng = ng
1489
+ @nl = nl
1490
+ @no = no
1491
+ @np = np
1492
+ @nz = nz
1493
+ @om = om
1494
+ @pe = pe
1495
+ @pl = pl
1496
+ @pt = pt
1497
+ @ro = ro
1498
+ @rs = rs
1499
+ @ru = ru
1500
+ @sa = sa
1501
+ @se = se
1502
+ @sg = sg
1503
+ @si = si
1504
+ @sk = sk
1505
+ @sn = sn
1506
+ @sr = sr
1507
+ @th = th
1508
+ @tj = tj
1509
+ @tr = tr
1510
+ @tz = tz
1511
+ @ug = ug
1512
+ @us = us
1513
+ @uy = uy
1514
+ @uz = uz
1515
+ @vn = vn
1516
+ @za = za
1517
+ @zm = zm
1518
+ @zw = zw
1519
+ end
1520
+ end
1521
+ # Time at which the Tax Registration becomes active. It can be either `now` to indicate the current time, or a future timestamp measured in seconds since the Unix epoch.
1522
+ attr_accessor :active_from
1523
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
1524
+ attr_accessor :country
1525
+ # Specific options for a registration in the specified `country`.
1526
+ attr_accessor :country_options
1527
+ # Specifies which fields in the response should be expanded.
1528
+ attr_accessor :expand
1529
+ # If set, the Tax Registration stops being active at this time. If not set, the Tax Registration will be active indefinitely. Timestamp measured in seconds since the Unix epoch.
1530
+ attr_accessor :expires_at
1531
+
1532
+ def initialize(
1533
+ active_from: nil,
1534
+ country: nil,
1535
+ country_options: nil,
1536
+ expand: nil,
1537
+ expires_at: nil
1538
+ )
1539
+ @active_from = active_from
1540
+ @country = country
1541
+ @country_options = country_options
1542
+ @expand = expand
1543
+ @expires_at = expires_at
1544
+ end
1545
+ end
1546
+
1547
+ class RetrieveParams < Stripe::RequestParams
1548
+ # Specifies which fields in the response should be expanded.
1549
+ attr_accessor :expand
1550
+
1551
+ def initialize(expand: nil)
1552
+ @expand = expand
1553
+ end
1554
+ end
1555
+
1556
+ class UpdateParams < Stripe::RequestParams
1557
+ # Time at which the registration becomes active. It can be either `now` to indicate the current time, or a timestamp measured in seconds since the Unix epoch.
1558
+ attr_accessor :active_from
1559
+ # Specifies which fields in the response should be expanded.
1560
+ attr_accessor :expand
1561
+ # If set, the registration stops being active at this time. If not set, the registration will be active indefinitely. It can be either `now` to indicate the current time, or a timestamp measured in seconds since the Unix epoch.
1562
+ attr_accessor :expires_at
1563
+
1564
+ def initialize(active_from: nil, expand: nil, expires_at: nil)
1565
+ @active_from = active_from
1566
+ @expand = expand
1567
+ @expires_at = expires_at
1568
+ end
1569
+ end
1570
+
7
1571
  # Creates a new Tax Registration object.
8
1572
  def create(params = {}, opts = {})
9
1573
  request(