mega-pure-kit 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1044) hide show
  1. checksums.yaml +7 -0
  2. data/mega-pure-kit.gemspec +12 -0
  3. data/stripe-19.3.0/exe/stripe-console +16 -0
  4. data/stripe-19.3.0/lib/data/ca-certificates.crt +3511 -0
  5. data/stripe-19.3.0/lib/stripe/api_operations/create.rb +16 -0
  6. data/stripe-19.3.0/lib/stripe/api_operations/delete.rb +44 -0
  7. data/stripe-19.3.0/lib/stripe/api_operations/list.rb +16 -0
  8. data/stripe-19.3.0/lib/stripe/api_operations/nested_resource.rb +101 -0
  9. data/stripe-19.3.0/lib/stripe/api_operations/request.rb +94 -0
  10. data/stripe-19.3.0/lib/stripe/api_operations/save.rb +107 -0
  11. data/stripe-19.3.0/lib/stripe/api_operations/search.rb +21 -0
  12. data/stripe-19.3.0/lib/stripe/api_operations/singleton_save.rb +90 -0
  13. data/stripe-19.3.0/lib/stripe/api_requestor.rb +1168 -0
  14. data/stripe-19.3.0/lib/stripe/api_resource.rb +145 -0
  15. data/stripe-19.3.0/lib/stripe/api_resource_test_helpers.rb +53 -0
  16. data/stripe-19.3.0/lib/stripe/api_version.rb +9 -0
  17. data/stripe-19.3.0/lib/stripe/connection_manager.rb +196 -0
  18. data/stripe-19.3.0/lib/stripe/error_object.rb +93 -0
  19. data/stripe-19.3.0/lib/stripe/errors.rb +171 -0
  20. data/stripe-19.3.0/lib/stripe/event_types.rb +106 -0
  21. data/stripe-19.3.0/lib/stripe/events/unknown_event_notification.rb +19 -0
  22. data/stripe-19.3.0/lib/stripe/events/v1_billing_meter_error_report_triggered_event.rb +123 -0
  23. data/stripe-19.3.0/lib/stripe/events/v1_billing_meter_no_meter_found_event.rb +100 -0
  24. data/stripe-19.3.0/lib/stripe/events/v2_commerce_product_catalog_imports_failed_event.rb +44 -0
  25. data/stripe-19.3.0/lib/stripe/events/v2_commerce_product_catalog_imports_processing_event.rb +44 -0
  26. data/stripe-19.3.0/lib/stripe/events/v2_commerce_product_catalog_imports_succeeded_event.rb +44 -0
  27. data/stripe-19.3.0/lib/stripe/events/v2_commerce_product_catalog_imports_succeeded_with_errors_event.rb +44 -0
  28. data/stripe-19.3.0/lib/stripe/events/v2_core_account_closed_event.rb +44 -0
  29. data/stripe-19.3.0/lib/stripe/events/v2_core_account_created_event.rb +44 -0
  30. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_configuration_customer_capability_status_updated_event.rb +63 -0
  31. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_configuration_customer_updated_event.rb +44 -0
  32. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_configuration_merchant_capability_status_updated_event.rb +63 -0
  33. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_configuration_merchant_updated_event.rb +44 -0
  34. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_configuration_recipient_capability_status_updated_event.rb +63 -0
  35. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_configuration_recipient_updated_event.rb +44 -0
  36. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_defaults_updated_event.rb +44 -0
  37. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_future_requirements_updated_event.rb +44 -0
  38. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_identity_updated_event.rb +44 -0
  39. data/stripe-19.3.0/lib/stripe/events/v2_core_account_including_requirements_updated_event.rb +44 -0
  40. data/stripe-19.3.0/lib/stripe/events/v2_core_account_link_returned_event.rb +42 -0
  41. data/stripe-19.3.0/lib/stripe/events/v2_core_account_person_created_event.rb +61 -0
  42. data/stripe-19.3.0/lib/stripe/events/v2_core_account_person_deleted_event.rb +61 -0
  43. data/stripe-19.3.0/lib/stripe/events/v2_core_account_person_updated_event.rb +61 -0
  44. data/stripe-19.3.0/lib/stripe/events/v2_core_account_updated_event.rb +44 -0
  45. data/stripe-19.3.0/lib/stripe/events/v2_core_event_destination_ping_event.rb +44 -0
  46. data/stripe-19.3.0/lib/stripe/instrumentation.rb +106 -0
  47. data/stripe-19.3.0/lib/stripe/list_object.rb +141 -0
  48. data/stripe-19.3.0/lib/stripe/multipart_encoder.rb +131 -0
  49. data/stripe-19.3.0/lib/stripe/oauth.rb +58 -0
  50. data/stripe-19.3.0/lib/stripe/object_types.rb +189 -0
  51. data/stripe-19.3.0/lib/stripe/params/account_capability_list_params.rb +13 -0
  52. data/stripe-19.3.0/lib/stripe/params/account_capability_retrieve_params.rb +13 -0
  53. data/stripe-19.3.0/lib/stripe/params/account_capability_update_params.rb +18 -0
  54. data/stripe-19.3.0/lib/stripe/params/account_create_params.rb +2202 -0
  55. data/stripe-19.3.0/lib/stripe/params/account_delete_params.rb +6 -0
  56. data/stripe-19.3.0/lib/stripe/params/account_external_account_create_params.rb +134 -0
  57. data/stripe-19.3.0/lib/stripe/params/account_external_account_delete_params.rb +6 -0
  58. data/stripe-19.3.0/lib/stripe/params/account_external_account_list_params.rb +25 -0
  59. data/stripe-19.3.0/lib/stripe/params/account_external_account_retrieve_params.rb +13 -0
  60. data/stripe-19.3.0/lib/stripe/params/account_external_account_update_params.rb +91 -0
  61. data/stripe-19.3.0/lib/stripe/params/account_link_create_params.rb +52 -0
  62. data/stripe-19.3.0/lib/stripe/params/account_list_params.rb +42 -0
  63. data/stripe-19.3.0/lib/stripe/params/account_login_link_create_params.rb +13 -0
  64. data/stripe-19.3.0/lib/stripe/params/account_person_create_params.rb +435 -0
  65. data/stripe-19.3.0/lib/stripe/params/account_person_delete_params.rb +6 -0
  66. data/stripe-19.3.0/lib/stripe/params/account_person_list_params.rb +61 -0
  67. data/stripe-19.3.0/lib/stripe/params/account_person_retrieve_params.rb +13 -0
  68. data/stripe-19.3.0/lib/stripe/params/account_person_update_params.rb +435 -0
  69. data/stripe-19.3.0/lib/stripe/params/account_persons_params.rb +61 -0
  70. data/stripe-19.3.0/lib/stripe/params/account_reject_params.rb +16 -0
  71. data/stripe-19.3.0/lib/stripe/params/account_retrieve_current_params.rb +13 -0
  72. data/stripe-19.3.0/lib/stripe/params/account_retrieve_params.rb +13 -0
  73. data/stripe-19.3.0/lib/stripe/params/account_session_create_params.rb +632 -0
  74. data/stripe-19.3.0/lib/stripe/params/account_update_params.rb +2149 -0
  75. data/stripe-19.3.0/lib/stripe/params/apple_pay_domain_create_params.rb +16 -0
  76. data/stripe-19.3.0/lib/stripe/params/apple_pay_domain_delete_params.rb +6 -0
  77. data/stripe-19.3.0/lib/stripe/params/apple_pay_domain_list_params.rb +31 -0
  78. data/stripe-19.3.0/lib/stripe/params/apple_pay_domain_retrieve_params.rb +13 -0
  79. data/stripe-19.3.0/lib/stripe/params/application_fee_list_params.rb +52 -0
  80. data/stripe-19.3.0/lib/stripe/params/application_fee_refund_create_params.rb +19 -0
  81. data/stripe-19.3.0/lib/stripe/params/application_fee_refund_list_params.rb +22 -0
  82. data/stripe-19.3.0/lib/stripe/params/application_fee_refund_retrieve_params.rb +13 -0
  83. data/stripe-19.3.0/lib/stripe/params/application_fee_refund_update_params.rb +16 -0
  84. data/stripe-19.3.0/lib/stripe/params/application_fee_retrieve_params.rb +13 -0
  85. data/stripe-19.3.0/lib/stripe/params/apps/secret_create_params.rb +38 -0
  86. data/stripe-19.3.0/lib/stripe/params/apps/secret_delete_where_params.rb +32 -0
  87. data/stripe-19.3.0/lib/stripe/params/apps/secret_find_params.rb +32 -0
  88. data/stripe-19.3.0/lib/stripe/params/apps/secret_list_params.rb +38 -0
  89. data/stripe-19.3.0/lib/stripe/params/balance_retrieve_params.rb +13 -0
  90. data/stripe-19.3.0/lib/stripe/params/balance_settings_retrieve_params.rb +13 -0
  91. data/stripe-19.3.0/lib/stripe/params/balance_settings_update_params.rb +107 -0
  92. data/stripe-19.3.0/lib/stripe/params/balance_transaction_list_params.rb +64 -0
  93. data/stripe-19.3.0/lib/stripe/params/balance_transaction_retrieve_params.rb +13 -0
  94. data/stripe-19.3.0/lib/stripe/params/billing/alert_activate_params.rb +15 -0
  95. data/stripe-19.3.0/lib/stripe/params/billing/alert_archive_params.rb +15 -0
  96. data/stripe-19.3.0/lib/stripe/params/billing/alert_create_params.rb +52 -0
  97. data/stripe-19.3.0/lib/stripe/params/billing/alert_deactivate_params.rb +15 -0
  98. data/stripe-19.3.0/lib/stripe/params/billing/alert_list_params.rb +37 -0
  99. data/stripe-19.3.0/lib/stripe/params/billing/alert_retrieve_params.rb +15 -0
  100. data/stripe-19.3.0/lib/stripe/params/billing/credit_balance_summary_retrieve_params.rb +57 -0
  101. data/stripe-19.3.0/lib/stripe/params/billing/credit_balance_transaction_list_params.rb +41 -0
  102. data/stripe-19.3.0/lib/stripe/params/billing/credit_balance_transaction_retrieve_params.rb +15 -0
  103. data/stripe-19.3.0/lib/stripe/params/billing/credit_grant_create_params.rb +107 -0
  104. data/stripe-19.3.0/lib/stripe/params/billing/credit_grant_expire_params.rb +15 -0
  105. data/stripe-19.3.0/lib/stripe/params/billing/credit_grant_list_params.rb +37 -0
  106. data/stripe-19.3.0/lib/stripe/params/billing/credit_grant_retrieve_params.rb +15 -0
  107. data/stripe-19.3.0/lib/stripe/params/billing/credit_grant_update_params.rb +21 -0
  108. data/stripe-19.3.0/lib/stripe/params/billing/credit_grant_void_grant_params.rb +15 -0
  109. data/stripe-19.3.0/lib/stripe/params/billing/meter_create_params.rb +70 -0
  110. data/stripe-19.3.0/lib/stripe/params/billing/meter_deactivate_params.rb +15 -0
  111. data/stripe-19.3.0/lib/stripe/params/billing/meter_event_adjustment_create_params.rb +32 -0
  112. data/stripe-19.3.0/lib/stripe/params/billing/meter_event_create_params.rb +27 -0
  113. data/stripe-19.3.0/lib/stripe/params/billing/meter_event_summary_list_params.rb +45 -0
  114. data/stripe-19.3.0/lib/stripe/params/billing/meter_list_params.rb +27 -0
  115. data/stripe-19.3.0/lib/stripe/params/billing/meter_reactivate_params.rb +15 -0
  116. data/stripe-19.3.0/lib/stripe/params/billing/meter_retrieve_params.rb +15 -0
  117. data/stripe-19.3.0/lib/stripe/params/billing/meter_update_params.rb +18 -0
  118. data/stripe-19.3.0/lib/stripe/params/billing_portal/configuration_create_params.rb +232 -0
  119. data/stripe-19.3.0/lib/stripe/params/billing_portal/configuration_list_params.rb +37 -0
  120. data/stripe-19.3.0/lib/stripe/params/billing_portal/configuration_retrieve_params.rb +15 -0
  121. data/stripe-19.3.0/lib/stripe/params/billing_portal/configuration_update_params.rb +238 -0
  122. data/stripe-19.3.0/lib/stripe/params/billing_portal/session_create_params.rb +183 -0
  123. data/stripe-19.3.0/lib/stripe/params/charge_capture_params.rb +57 -0
  124. data/stripe-19.3.0/lib/stripe/params/charge_create_params.rb +175 -0
  125. data/stripe-19.3.0/lib/stripe/params/charge_list_params.rb +60 -0
  126. data/stripe-19.3.0/lib/stripe/params/charge_retrieve_params.rb +13 -0
  127. data/stripe-19.3.0/lib/stripe/params/charge_search_params.rb +22 -0
  128. data/stripe-19.3.0/lib/stripe/params/charge_update_params.rb +102 -0
  129. data/stripe-19.3.0/lib/stripe/params/checkout/session_create_params.rb +2740 -0
  130. data/stripe-19.3.0/lib/stripe/params/checkout/session_expire_params.rb +15 -0
  131. data/stripe-19.3.0/lib/stripe/params/checkout/session_line_item_list_params.rb +24 -0
  132. data/stripe-19.3.0/lib/stripe/params/checkout/session_list_line_items_params.rb +24 -0
  133. data/stripe-19.3.0/lib/stripe/params/checkout/session_list_params.rb +87 -0
  134. data/stripe-19.3.0/lib/stripe/params/checkout/session_retrieve_params.rb +15 -0
  135. data/stripe-19.3.0/lib/stripe/params/checkout/session_update_params.rb +348 -0
  136. data/stripe-19.3.0/lib/stripe/params/climate/order_cancel_params.rb +15 -0
  137. data/stripe-19.3.0/lib/stripe/params/climate/order_create_params.rb +53 -0
  138. data/stripe-19.3.0/lib/stripe/params/climate/order_list_params.rb +24 -0
  139. data/stripe-19.3.0/lib/stripe/params/climate/order_retrieve_params.rb +15 -0
  140. data/stripe-19.3.0/lib/stripe/params/climate/order_update_params.rb +29 -0
  141. data/stripe-19.3.0/lib/stripe/params/climate/product_list_params.rb +24 -0
  142. data/stripe-19.3.0/lib/stripe/params/climate/product_retrieve_params.rb +15 -0
  143. data/stripe-19.3.0/lib/stripe/params/climate/supplier_list_params.rb +24 -0
  144. data/stripe-19.3.0/lib/stripe/params/climate/supplier_retrieve_params.rb +15 -0
  145. data/stripe-19.3.0/lib/stripe/params/confirmation_token_create_params.rb +715 -0
  146. data/stripe-19.3.0/lib/stripe/params/confirmation_token_retrieve_params.rb +13 -0
  147. data/stripe-19.3.0/lib/stripe/params/country_spec_list_params.rb +22 -0
  148. data/stripe-19.3.0/lib/stripe/params/country_spec_retrieve_params.rb +13 -0
  149. data/stripe-19.3.0/lib/stripe/params/coupon_create_params.rb +80 -0
  150. data/stripe-19.3.0/lib/stripe/params/coupon_delete_params.rb +6 -0
  151. data/stripe-19.3.0/lib/stripe/params/coupon_list_params.rb +42 -0
  152. data/stripe-19.3.0/lib/stripe/params/coupon_retrieve_params.rb +13 -0
  153. data/stripe-19.3.0/lib/stripe/params/coupon_update_params.rb +30 -0
  154. data/stripe-19.3.0/lib/stripe/params/credit_note_create_params.rb +178 -0
  155. data/stripe-19.3.0/lib/stripe/params/credit_note_line_item_list_params.rb +22 -0
  156. data/stripe-19.3.0/lib/stripe/params/credit_note_list_params.rb +60 -0
  157. data/stripe-19.3.0/lib/stripe/params/credit_note_list_preview_line_items_params.rb +190 -0
  158. data/stripe-19.3.0/lib/stripe/params/credit_note_preview_lines_list_params.rb +190 -0
  159. data/stripe-19.3.0/lib/stripe/params/credit_note_preview_params.rb +178 -0
  160. data/stripe-19.3.0/lib/stripe/params/credit_note_retrieve_params.rb +13 -0
  161. data/stripe-19.3.0/lib/stripe/params/credit_note_update_params.rb +19 -0
  162. data/stripe-19.3.0/lib/stripe/params/credit_note_void_credit_note_params.rb +13 -0
  163. data/stripe-19.3.0/lib/stripe/params/customer_balance_transaction_create_params.rb +25 -0
  164. data/stripe-19.3.0/lib/stripe/params/customer_balance_transaction_list_params.rb +52 -0
  165. data/stripe-19.3.0/lib/stripe/params/customer_balance_transaction_retrieve_params.rb +13 -0
  166. data/stripe-19.3.0/lib/stripe/params/customer_balance_transaction_update_params.rb +19 -0
  167. data/stripe-19.3.0/lib/stripe/params/customer_cash_balance_retrieve_params.rb +13 -0
  168. data/stripe-19.3.0/lib/stripe/params/customer_cash_balance_transaction_list_params.rb +22 -0
  169. data/stripe-19.3.0/lib/stripe/params/customer_cash_balance_transaction_retrieve_params.rb +13 -0
  170. data/stripe-19.3.0/lib/stripe/params/customer_cash_balance_update_params.rb +24 -0
  171. data/stripe-19.3.0/lib/stripe/params/customer_create_funding_instructions_params.rb +46 -0
  172. data/stripe-19.3.0/lib/stripe/params/customer_create_params.rb +259 -0
  173. data/stripe-19.3.0/lib/stripe/params/customer_delete_discount_params.rb +6 -0
  174. data/stripe-19.3.0/lib/stripe/params/customer_delete_params.rb +6 -0
  175. data/stripe-19.3.0/lib/stripe/params/customer_fund_cash_balance_params.rb +22 -0
  176. data/stripe-19.3.0/lib/stripe/params/customer_funding_instructions_create_params.rb +46 -0
  177. data/stripe-19.3.0/lib/stripe/params/customer_list_params.rb +56 -0
  178. data/stripe-19.3.0/lib/stripe/params/customer_list_payment_methods_params.rb +35 -0
  179. data/stripe-19.3.0/lib/stripe/params/customer_payment_method_list_params.rb +35 -0
  180. data/stripe-19.3.0/lib/stripe/params/customer_payment_method_retrieve_params.rb +13 -0
  181. data/stripe-19.3.0/lib/stripe/params/customer_payment_source_create_params.rb +22 -0
  182. data/stripe-19.3.0/lib/stripe/params/customer_payment_source_delete_params.rb +13 -0
  183. data/stripe-19.3.0/lib/stripe/params/customer_payment_source_list_params.rb +25 -0
  184. data/stripe-19.3.0/lib/stripe/params/customer_payment_source_retrieve_params.rb +13 -0
  185. data/stripe-19.3.0/lib/stripe/params/customer_payment_source_update_params.rb +114 -0
  186. data/stripe-19.3.0/lib/stripe/params/customer_payment_source_verify_params.rb +16 -0
  187. data/stripe-19.3.0/lib/stripe/params/customer_retrieve_params.rb +13 -0
  188. data/stripe-19.3.0/lib/stripe/params/customer_retrieve_payment_method_params.rb +13 -0
  189. data/stripe-19.3.0/lib/stripe/params/customer_search_params.rb +22 -0
  190. data/stripe-19.3.0/lib/stripe/params/customer_session_create_params.rb +188 -0
  191. data/stripe-19.3.0/lib/stripe/params/customer_tax_id_create_params.rb +19 -0
  192. data/stripe-19.3.0/lib/stripe/params/customer_tax_id_delete_params.rb +6 -0
  193. data/stripe-19.3.0/lib/stripe/params/customer_tax_id_list_params.rb +22 -0
  194. data/stripe-19.3.0/lib/stripe/params/customer_tax_id_retrieve_params.rb +13 -0
  195. data/stripe-19.3.0/lib/stripe/params/customer_update_params.rb +243 -0
  196. data/stripe-19.3.0/lib/stripe/params/dispute_close_params.rb +13 -0
  197. data/stripe-19.3.0/lib/stripe/params/dispute_list_params.rb +56 -0
  198. data/stripe-19.3.0/lib/stripe/params/dispute_retrieve_params.rb +13 -0
  199. data/stripe-19.3.0/lib/stripe/params/dispute_update_params.rb +324 -0
  200. data/stripe-19.3.0/lib/stripe/params/entitlements/active_entitlement_list_params.rb +33 -0
  201. data/stripe-19.3.0/lib/stripe/params/entitlements/active_entitlement_retrieve_params.rb +15 -0
  202. data/stripe-19.3.0/lib/stripe/params/entitlements/feature_create_params.rb +24 -0
  203. data/stripe-19.3.0/lib/stripe/params/entitlements/feature_list_params.rb +37 -0
  204. data/stripe-19.3.0/lib/stripe/params/entitlements/feature_retrieve_params.rb +15 -0
  205. data/stripe-19.3.0/lib/stripe/params/entitlements/feature_update_params.rb +24 -0
  206. data/stripe-19.3.0/lib/stripe/params/ephemeral_key_create_params.rb +31 -0
  207. data/stripe-19.3.0/lib/stripe/params/ephemeral_key_delete_params.rb +13 -0
  208. data/stripe-19.3.0/lib/stripe/params/event_list_params.rb +60 -0
  209. data/stripe-19.3.0/lib/stripe/params/event_retrieve_params.rb +13 -0
  210. data/stripe-19.3.0/lib/stripe/params/exchange_rate_list_params.rb +22 -0
  211. data/stripe-19.3.0/lib/stripe/params/exchange_rate_retrieve_params.rb +13 -0
  212. data/stripe-19.3.0/lib/stripe/params/file_create_params.rb +36 -0
  213. data/stripe-19.3.0/lib/stripe/params/file_link_create_params.rb +22 -0
  214. data/stripe-19.3.0/lib/stripe/params/file_link_list_params.rb +56 -0
  215. data/stripe-19.3.0/lib/stripe/params/file_link_retrieve_params.rb +13 -0
  216. data/stripe-19.3.0/lib/stripe/params/file_link_update_params.rb +19 -0
  217. data/stripe-19.3.0/lib/stripe/params/file_list_params.rb +52 -0
  218. data/stripe-19.3.0/lib/stripe/params/file_retrieve_params.rb +13 -0
  219. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_disconnect_params.rb +15 -0
  220. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_list_owners_params.rb +33 -0
  221. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_list_params.rb +51 -0
  222. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_owner_list_params.rb +33 -0
  223. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_refresh_account_params.rb +18 -0
  224. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_refresh_params.rb +18 -0
  225. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_retrieve_params.rb +15 -0
  226. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_subscribe_params.rb +18 -0
  227. data/stripe-19.3.0/lib/stripe/params/financial_connections/account_unsubscribe_params.rb +18 -0
  228. data/stripe-19.3.0/lib/stripe/params/financial_connections/session_create_params.rb +68 -0
  229. data/stripe-19.3.0/lib/stripe/params/financial_connections/session_retrieve_params.rb +15 -0
  230. data/stripe-19.3.0/lib/stripe/params/financial_connections/transaction_list_params.rb +67 -0
  231. data/stripe-19.3.0/lib/stripe/params/financial_connections/transaction_retrieve_params.rb +15 -0
  232. data/stripe-19.3.0/lib/stripe/params/forwarding/request_create_params.rb +59 -0
  233. data/stripe-19.3.0/lib/stripe/params/forwarding/request_list_params.rb +44 -0
  234. data/stripe-19.3.0/lib/stripe/params/forwarding/request_retrieve_params.rb +15 -0
  235. data/stripe-19.3.0/lib/stripe/params/identity/verification_report_list_params.rb +62 -0
  236. data/stripe-19.3.0/lib/stripe/params/identity/verification_report_retrieve_params.rb +15 -0
  237. data/stripe-19.3.0/lib/stripe/params/identity/verification_session_cancel_params.rb +15 -0
  238. data/stripe-19.3.0/lib/stripe/params/identity/verification_session_create_params.rb +111 -0
  239. data/stripe-19.3.0/lib/stripe/params/identity/verification_session_list_params.rb +66 -0
  240. data/stripe-19.3.0/lib/stripe/params/identity/verification_session_redact_params.rb +15 -0
  241. data/stripe-19.3.0/lib/stripe/params/identity/verification_session_retrieve_params.rb +15 -0
  242. data/stripe-19.3.0/lib/stripe/params/identity/verification_session_update_params.rb +69 -0
  243. data/stripe-19.3.0/lib/stripe/params/invoice_add_lines_params.rb +261 -0
  244. data/stripe-19.3.0/lib/stripe/params/invoice_attach_payment_params.rb +19 -0
  245. data/stripe-19.3.0/lib/stripe/params/invoice_create_params.rb +664 -0
  246. data/stripe-19.3.0/lib/stripe/params/invoice_create_preview_params.rb +1230 -0
  247. data/stripe-19.3.0/lib/stripe/params/invoice_delete_params.rb +6 -0
  248. data/stripe-19.3.0/lib/stripe/params/invoice_finalize_invoice_params.rb +16 -0
  249. data/stripe-19.3.0/lib/stripe/params/invoice_item_create_params.rb +165 -0
  250. data/stripe-19.3.0/lib/stripe/params/invoice_item_delete_params.rb +6 -0
  251. data/stripe-19.3.0/lib/stripe/params/invoice_item_list_params.rb +64 -0
  252. data/stripe-19.3.0/lib/stripe/params/invoice_item_retrieve_params.rb +13 -0
  253. data/stripe-19.3.0/lib/stripe/params/invoice_item_update_params.rb +145 -0
  254. data/stripe-19.3.0/lib/stripe/params/invoice_line_item_list_params.rb +22 -0
  255. data/stripe-19.3.0/lib/stripe/params/invoice_line_item_update_params.rb +232 -0
  256. data/stripe-19.3.0/lib/stripe/params/invoice_list_params.rb +90 -0
  257. data/stripe-19.3.0/lib/stripe/params/invoice_mark_uncollectible_params.rb +13 -0
  258. data/stripe-19.3.0/lib/stripe/params/invoice_pay_params.rb +41 -0
  259. data/stripe-19.3.0/lib/stripe/params/invoice_payment_list_params.rb +75 -0
  260. data/stripe-19.3.0/lib/stripe/params/invoice_payment_retrieve_params.rb +13 -0
  261. data/stripe-19.3.0/lib/stripe/params/invoice_remove_lines_params.rb +30 -0
  262. data/stripe-19.3.0/lib/stripe/params/invoice_rendering_template_archive_params.rb +13 -0
  263. data/stripe-19.3.0/lib/stripe/params/invoice_rendering_template_list_params.rb +25 -0
  264. data/stripe-19.3.0/lib/stripe/params/invoice_rendering_template_retrieve_params.rb +16 -0
  265. data/stripe-19.3.0/lib/stripe/params/invoice_rendering_template_unarchive_params.rb +13 -0
  266. data/stripe-19.3.0/lib/stripe/params/invoice_retrieve_params.rb +13 -0
  267. data/stripe-19.3.0/lib/stripe/params/invoice_search_params.rb +22 -0
  268. data/stripe-19.3.0/lib/stripe/params/invoice_send_invoice_params.rb +13 -0
  269. data/stripe-19.3.0/lib/stripe/params/invoice_update_lines_params.rb +261 -0
  270. data/stripe-19.3.0/lib/stripe/params/invoice_update_params.rb +628 -0
  271. data/stripe-19.3.0/lib/stripe/params/invoice_void_invoice_params.rb +13 -0
  272. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_approve_params.rb +21 -0
  273. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_capture_params.rb +390 -0
  274. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_create_params.rb +452 -0
  275. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_decline_params.rb +18 -0
  276. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_expire_params.rb +15 -0
  277. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_finalize_amount_params.rb +223 -0
  278. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_increment_params.rb +21 -0
  279. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_list_params.rb +62 -0
  280. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_respond_params.rb +18 -0
  281. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_retrieve_params.rb +15 -0
  282. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_reverse_params.rb +18 -0
  283. data/stripe-19.3.0/lib/stripe/params/issuing/authorization_update_params.rb +18 -0
  284. data/stripe-19.3.0/lib/stripe/params/issuing/card_create_params.rb +242 -0
  285. data/stripe-19.3.0/lib/stripe/params/issuing/card_deliver_card_params.rb +15 -0
  286. data/stripe-19.3.0/lib/stripe/params/issuing/card_fail_card_params.rb +15 -0
  287. data/stripe-19.3.0/lib/stripe/params/issuing/card_list_params.rb +78 -0
  288. data/stripe-19.3.0/lib/stripe/params/issuing/card_retrieve_params.rb +15 -0
  289. data/stripe-19.3.0/lib/stripe/params/issuing/card_return_card_params.rb +15 -0
  290. data/stripe-19.3.0/lib/stripe/params/issuing/card_ship_card_params.rb +15 -0
  291. data/stripe-19.3.0/lib/stripe/params/issuing/card_submit_card_params.rb +15 -0
  292. data/stripe-19.3.0/lib/stripe/params/issuing/card_update_params.rb +189 -0
  293. data/stripe-19.3.0/lib/stripe/params/issuing/cardholder_create_params.rb +246 -0
  294. data/stripe-19.3.0/lib/stripe/params/issuing/cardholder_list_params.rb +66 -0
  295. data/stripe-19.3.0/lib/stripe/params/issuing/cardholder_retrieve_params.rb +15 -0
  296. data/stripe-19.3.0/lib/stripe/params/issuing/cardholder_update_params.rb +238 -0
  297. data/stripe-19.3.0/lib/stripe/params/issuing/dispute_create_params.rb +297 -0
  298. data/stripe-19.3.0/lib/stripe/params/issuing/dispute_list_params.rb +58 -0
  299. data/stripe-19.3.0/lib/stripe/params/issuing/dispute_retrieve_params.rb +15 -0
  300. data/stripe-19.3.0/lib/stripe/params/issuing/dispute_submit_params.rb +18 -0
  301. data/stripe-19.3.0/lib/stripe/params/issuing/dispute_update_params.rb +275 -0
  302. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_activate_params.rb +15 -0
  303. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_create_params.rb +75 -0
  304. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_deactivate_params.rb +15 -0
  305. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_list_params.rb +52 -0
  306. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_reject_params.rb +29 -0
  307. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_retrieve_params.rb +15 -0
  308. data/stripe-19.3.0/lib/stripe/params/issuing/personalization_design_update_params.rb +75 -0
  309. data/stripe-19.3.0/lib/stripe/params/issuing/physical_bundle_list_params.rb +37 -0
  310. data/stripe-19.3.0/lib/stripe/params/issuing/physical_bundle_retrieve_params.rb +15 -0
  311. data/stripe-19.3.0/lib/stripe/params/issuing/token_list_params.rb +58 -0
  312. data/stripe-19.3.0/lib/stripe/params/issuing/token_retrieve_params.rb +15 -0
  313. data/stripe-19.3.0/lib/stripe/params/issuing/token_update_params.rb +18 -0
  314. data/stripe-19.3.0/lib/stripe/params/issuing/transaction_create_force_capture_params.rb +441 -0
  315. data/stripe-19.3.0/lib/stripe/params/issuing/transaction_create_unlinked_refund_params.rb +441 -0
  316. data/stripe-19.3.0/lib/stripe/params/issuing/transaction_list_params.rb +62 -0
  317. data/stripe-19.3.0/lib/stripe/params/issuing/transaction_refund_params.rb +18 -0
  318. data/stripe-19.3.0/lib/stripe/params/issuing/transaction_retrieve_params.rb +15 -0
  319. data/stripe-19.3.0/lib/stripe/params/issuing/transaction_update_params.rb +18 -0
  320. data/stripe-19.3.0/lib/stripe/params/mandate_retrieve_params.rb +13 -0
  321. data/stripe-19.3.0/lib/stripe/params/payment_attempt_record_list_params.rb +22 -0
  322. data/stripe-19.3.0/lib/stripe/params/payment_attempt_record_retrieve_params.rb +13 -0
  323. data/stripe-19.3.0/lib/stripe/params/payment_intent_amount_details_line_item_list_params.rb +22 -0
  324. data/stripe-19.3.0/lib/stripe/params/payment_intent_apply_customer_balance_params.rb +23 -0
  325. data/stripe-19.3.0/lib/stripe/params/payment_intent_cancel_params.rb +16 -0
  326. data/stripe-19.3.0/lib/stripe/params/payment_intent_capture_params.rb +291 -0
  327. data/stripe-19.3.0/lib/stripe/params/payment_intent_confirm_params.rb +2878 -0
  328. data/stripe-19.3.0/lib/stripe/params/payment_intent_create_params.rb +3009 -0
  329. data/stripe-19.3.0/lib/stripe/params/payment_intent_increment_authorization_params.rb +285 -0
  330. data/stripe-19.3.0/lib/stripe/params/payment_intent_list_params.rb +56 -0
  331. data/stripe-19.3.0/lib/stripe/params/payment_intent_retrieve_params.rb +16 -0
  332. data/stripe-19.3.0/lib/stripe/params/payment_intent_search_params.rb +22 -0
  333. data/stripe-19.3.0/lib/stripe/params/payment_intent_update_params.rb +2876 -0
  334. data/stripe-19.3.0/lib/stripe/params/payment_intent_verify_microdeposits_params.rb +19 -0
  335. data/stripe-19.3.0/lib/stripe/params/payment_link_create_params.rb +879 -0
  336. data/stripe-19.3.0/lib/stripe/params/payment_link_line_item_list_params.rb +22 -0
  337. data/stripe-19.3.0/lib/stripe/params/payment_link_list_line_items_params.rb +22 -0
  338. data/stripe-19.3.0/lib/stripe/params/payment_link_list_params.rb +25 -0
  339. data/stripe-19.3.0/lib/stripe/params/payment_link_retrieve_params.rb +13 -0
  340. data/stripe-19.3.0/lib/stripe/params/payment_link_update_params.rb +667 -0
  341. data/stripe-19.3.0/lib/stripe/params/payment_method_attach_params.rb +19 -0
  342. data/stripe-19.3.0/lib/stripe/params/payment_method_configuration_create_params.rb +1282 -0
  343. data/stripe-19.3.0/lib/stripe/params/payment_method_configuration_list_params.rb +35 -0
  344. data/stripe-19.3.0/lib/stripe/params/payment_method_configuration_retrieve_params.rb +13 -0
  345. data/stripe-19.3.0/lib/stripe/params/payment_method_configuration_update_params.rb +1282 -0
  346. data/stripe-19.3.0/lib/stripe/params/payment_method_create_params.rb +662 -0
  347. data/stripe-19.3.0/lib/stripe/params/payment_method_detach_params.rb +13 -0
  348. data/stripe-19.3.0/lib/stripe/params/payment_method_domain_create_params.rb +19 -0
  349. data/stripe-19.3.0/lib/stripe/params/payment_method_domain_list_params.rb +35 -0
  350. data/stripe-19.3.0/lib/stripe/params/payment_method_domain_retrieve_params.rb +13 -0
  351. data/stripe-19.3.0/lib/stripe/params/payment_method_domain_update_params.rb +16 -0
  352. data/stripe-19.3.0/lib/stripe/params/payment_method_domain_validate_params.rb +13 -0
  353. data/stripe-19.3.0/lib/stripe/params/payment_method_list_params.rb +43 -0
  354. data/stripe-19.3.0/lib/stripe/params/payment_method_retrieve_params.rb +13 -0
  355. data/stripe-19.3.0/lib/stripe/params/payment_method_update_params.rb +139 -0
  356. data/stripe-19.3.0/lib/stripe/params/payment_record_report_payment_attempt_canceled_params.rb +19 -0
  357. data/stripe-19.3.0/lib/stripe/params/payment_record_report_payment_attempt_failed_params.rb +19 -0
  358. data/stripe-19.3.0/lib/stripe/params/payment_record_report_payment_attempt_guaranteed_params.rb +19 -0
  359. data/stripe-19.3.0/lib/stripe/params/payment_record_report_payment_attempt_informational_params.rb +93 -0
  360. data/stripe-19.3.0/lib/stripe/params/payment_record_report_payment_attempt_params.rb +186 -0
  361. data/stripe-19.3.0/lib/stripe/params/payment_record_report_payment_params.rb +252 -0
  362. data/stripe-19.3.0/lib/stripe/params/payment_record_report_refund_params.rb +79 -0
  363. data/stripe-19.3.0/lib/stripe/params/payment_record_retrieve_params.rb +13 -0
  364. data/stripe-19.3.0/lib/stripe/params/payout_cancel_params.rb +13 -0
  365. data/stripe-19.3.0/lib/stripe/params/payout_create_params.rb +51 -0
  366. data/stripe-19.3.0/lib/stripe/params/payout_list_params.rb +78 -0
  367. data/stripe-19.3.0/lib/stripe/params/payout_retrieve_params.rb +13 -0
  368. data/stripe-19.3.0/lib/stripe/params/payout_reverse_params.rb +16 -0
  369. data/stripe-19.3.0/lib/stripe/params/payout_update_params.rb +16 -0
  370. data/stripe-19.3.0/lib/stripe/params/plan_create_params.rb +178 -0
  371. data/stripe-19.3.0/lib/stripe/params/plan_delete_params.rb +6 -0
  372. data/stripe-19.3.0/lib/stripe/params/plan_list_params.rb +56 -0
  373. data/stripe-19.3.0/lib/stripe/params/plan_retrieve_params.rb +13 -0
  374. data/stripe-19.3.0/lib/stripe/params/plan_update_params.rb +35 -0
  375. data/stripe-19.3.0/lib/stripe/params/price_create_params.rb +318 -0
  376. data/stripe-19.3.0/lib/stripe/params/price_list_params.rb +87 -0
  377. data/stripe-19.3.0/lib/stripe/params/price_retrieve_params.rb +13 -0
  378. data/stripe-19.3.0/lib/stripe/params/price_search_params.rb +22 -0
  379. data/stripe-19.3.0/lib/stripe/params/price_update_params.rb +133 -0
  380. data/stripe-19.3.0/lib/stripe/params/product_create_params.rb +276 -0
  381. data/stripe-19.3.0/lib/stripe/params/product_delete_params.rb +6 -0
  382. data/stripe-19.3.0/lib/stripe/params/product_feature_create_params.rb +16 -0
  383. data/stripe-19.3.0/lib/stripe/params/product_feature_delete_params.rb +6 -0
  384. data/stripe-19.3.0/lib/stripe/params/product_feature_list_params.rb +22 -0
  385. data/stripe-19.3.0/lib/stripe/params/product_feature_retrieve_params.rb +13 -0
  386. data/stripe-19.3.0/lib/stripe/params/product_list_params.rb +68 -0
  387. data/stripe-19.3.0/lib/stripe/params/product_retrieve_params.rb +13 -0
  388. data/stripe-19.3.0/lib/stripe/params/product_search_params.rb +22 -0
  389. data/stripe-19.3.0/lib/stripe/params/product_update_params.rb +96 -0
  390. data/stripe-19.3.0/lib/stripe/params/promotion_code_create_params.rb +95 -0
  391. data/stripe-19.3.0/lib/stripe/params/promotion_code_list_params.rb +68 -0
  392. data/stripe-19.3.0/lib/stripe/params/promotion_code_retrieve_params.rb +13 -0
  393. data/stripe-19.3.0/lib/stripe/params/promotion_code_update_params.rb +38 -0
  394. data/stripe-19.3.0/lib/stripe/params/quote_accept_params.rb +13 -0
  395. data/stripe-19.3.0/lib/stripe/params/quote_cancel_params.rb +13 -0
  396. data/stripe-19.3.0/lib/stripe/params/quote_computed_upfront_line_items_list_params.rb +22 -0
  397. data/stripe-19.3.0/lib/stripe/params/quote_create_params.rb +327 -0
  398. data/stripe-19.3.0/lib/stripe/params/quote_finalize_quote_params.rb +16 -0
  399. data/stripe-19.3.0/lib/stripe/params/quote_line_item_list_params.rb +22 -0
  400. data/stripe-19.3.0/lib/stripe/params/quote_list_computed_upfront_line_items_params.rb +22 -0
  401. data/stripe-19.3.0/lib/stripe/params/quote_list_line_items_params.rb +22 -0
  402. data/stripe-19.3.0/lib/stripe/params/quote_list_params.rb +43 -0
  403. data/stripe-19.3.0/lib/stripe/params/quote_pdf_params.rb +13 -0
  404. data/stripe-19.3.0/lib/stripe/params/quote_retrieve_params.rb +13 -0
  405. data/stripe-19.3.0/lib/stripe/params/quote_update_params.rb +289 -0
  406. data/stripe-19.3.0/lib/stripe/params/radar/early_fraud_warning_list_params.rb +58 -0
  407. data/stripe-19.3.0/lib/stripe/params/radar/early_fraud_warning_retrieve_params.rb +15 -0
  408. data/stripe-19.3.0/lib/stripe/params/radar/payment_evaluation_create_params.rb +223 -0
  409. data/stripe-19.3.0/lib/stripe/params/radar/value_list_create_params.rb +27 -0
  410. data/stripe-19.3.0/lib/stripe/params/radar/value_list_delete_params.rb +8 -0
  411. data/stripe-19.3.0/lib/stripe/params/radar/value_list_item_create_params.rb +21 -0
  412. data/stripe-19.3.0/lib/stripe/params/radar/value_list_item_delete_params.rb +8 -0
  413. data/stripe-19.3.0/lib/stripe/params/radar/value_list_item_list_params.rb +58 -0
  414. data/stripe-19.3.0/lib/stripe/params/radar/value_list_item_retrieve_params.rb +15 -0
  415. data/stripe-19.3.0/lib/stripe/params/radar/value_list_list_params.rb +58 -0
  416. data/stripe-19.3.0/lib/stripe/params/radar/value_list_retrieve_params.rb +15 -0
  417. data/stripe-19.3.0/lib/stripe/params/radar/value_list_update_params.rb +24 -0
  418. data/stripe-19.3.0/lib/stripe/params/refund_cancel_params.rb +13 -0
  419. data/stripe-19.3.0/lib/stripe/params/refund_create_params.rb +59 -0
  420. data/stripe-19.3.0/lib/stripe/params/refund_expire_params.rb +13 -0
  421. data/stripe-19.3.0/lib/stripe/params/refund_list_params.rb +56 -0
  422. data/stripe-19.3.0/lib/stripe/params/refund_retrieve_params.rb +13 -0
  423. data/stripe-19.3.0/lib/stripe/params/refund_update_params.rb +16 -0
  424. data/stripe-19.3.0/lib/stripe/params/reporting/report_run_create_params.rb +59 -0
  425. data/stripe-19.3.0/lib/stripe/params/reporting/report_run_list_params.rb +44 -0
  426. data/stripe-19.3.0/lib/stripe/params/reporting/report_run_retrieve_params.rb +15 -0
  427. data/stripe-19.3.0/lib/stripe/params/reporting/report_type_list_params.rb +15 -0
  428. data/stripe-19.3.0/lib/stripe/params/reporting/report_type_retrieve_params.rb +15 -0
  429. data/stripe-19.3.0/lib/stripe/params/review_approve_params.rb +13 -0
  430. data/stripe-19.3.0/lib/stripe/params/review_list_params.rb +42 -0
  431. data/stripe-19.3.0/lib/stripe/params/review_retrieve_params.rb +13 -0
  432. data/stripe-19.3.0/lib/stripe/params/setup_attempt_list_params.rb +55 -0
  433. data/stripe-19.3.0/lib/stripe/params/setup_intent_cancel_params.rb +16 -0
  434. data/stripe-19.3.0/lib/stripe/params/setup_intent_confirm_params.rb +1252 -0
  435. data/stripe-19.3.0/lib/stripe/params/setup_intent_create_params.rb +1342 -0
  436. data/stripe-19.3.0/lib/stripe/params/setup_intent_list_params.rb +66 -0
  437. data/stripe-19.3.0/lib/stripe/params/setup_intent_retrieve_params.rb +16 -0
  438. data/stripe-19.3.0/lib/stripe/params/setup_intent_update_params.rb +1237 -0
  439. data/stripe-19.3.0/lib/stripe/params/setup_intent_verify_microdeposits_params.rb +19 -0
  440. data/stripe-19.3.0/lib/stripe/params/shipping_rate_create_params.rb +103 -0
  441. data/stripe-19.3.0/lib/stripe/params/shipping_rate_list_params.rb +56 -0
  442. data/stripe-19.3.0/lib/stripe/params/shipping_rate_retrieve_params.rb +13 -0
  443. data/stripe-19.3.0/lib/stripe/params/shipping_rate_update_params.rb +44 -0
  444. data/stripe-19.3.0/lib/stripe/params/sigma/scheduled_query_run_list_params.rb +24 -0
  445. data/stripe-19.3.0/lib/stripe/params/sigma/scheduled_query_run_retrieve_params.rb +15 -0
  446. data/stripe-19.3.0/lib/stripe/params/source_create_params.rb +317 -0
  447. data/stripe-19.3.0/lib/stripe/params/source_detach_params.rb +13 -0
  448. data/stripe-19.3.0/lib/stripe/params/source_retrieve_params.rb +16 -0
  449. data/stripe-19.3.0/lib/stripe/params/source_transaction_list_params.rb +22 -0
  450. data/stripe-19.3.0/lib/stripe/params/source_update_params.rb +259 -0
  451. data/stripe-19.3.0/lib/stripe/params/source_verify_params.rb +16 -0
  452. data/stripe-19.3.0/lib/stripe/params/subscription_cancel_params.rb +33 -0
  453. data/stripe-19.3.0/lib/stripe/params/subscription_create_params.rb +917 -0
  454. data/stripe-19.3.0/lib/stripe/params/subscription_delete_discount_params.rb +6 -0
  455. data/stripe-19.3.0/lib/stripe/params/subscription_item_create_params.rb +138 -0
  456. data/stripe-19.3.0/lib/stripe/params/subscription_item_delete_params.rb +27 -0
  457. data/stripe-19.3.0/lib/stripe/params/subscription_item_list_params.rb +31 -0
  458. data/stripe-19.3.0/lib/stripe/params/subscription_item_retrieve_params.rb +13 -0
  459. data/stripe-19.3.0/lib/stripe/params/subscription_item_update_params.rb +138 -0
  460. data/stripe-19.3.0/lib/stripe/params/subscription_list_params.rb +133 -0
  461. data/stripe-19.3.0/lib/stripe/params/subscription_migrate_params.rb +35 -0
  462. data/stripe-19.3.0/lib/stripe/params/subscription_resume_params.rb +27 -0
  463. data/stripe-19.3.0/lib/stripe/params/subscription_retrieve_params.rb +13 -0
  464. data/stripe-19.3.0/lib/stripe/params/subscription_schedule_cancel_params.rb +19 -0
  465. data/stripe-19.3.0/lib/stripe/params/subscription_schedule_create_params.rb +668 -0
  466. data/stripe-19.3.0/lib/stripe/params/subscription_schedule_list_params.rb +126 -0
  467. data/stripe-19.3.0/lib/stripe/params/subscription_schedule_release_params.rb +16 -0
  468. data/stripe-19.3.0/lib/stripe/params/subscription_schedule_retrieve_params.rb +13 -0
  469. data/stripe-19.3.0/lib/stripe/params/subscription_schedule_update_params.rb +636 -0
  470. data/stripe-19.3.0/lib/stripe/params/subscription_search_params.rb +22 -0
  471. data/stripe-19.3.0/lib/stripe/params/subscription_update_params.rb +896 -0
  472. data/stripe-19.3.0/lib/stripe/params/tax/association_find_params.rb +18 -0
  473. data/stripe-19.3.0/lib/stripe/params/tax/calculation_create_params.rb +206 -0
  474. data/stripe-19.3.0/lib/stripe/params/tax/calculation_line_item_list_params.rb +24 -0
  475. data/stripe-19.3.0/lib/stripe/params/tax/calculation_list_line_items_params.rb +24 -0
  476. data/stripe-19.3.0/lib/stripe/params/tax/calculation_retrieve_params.rb +15 -0
  477. data/stripe-19.3.0/lib/stripe/params/tax/registration_create_params.rb +2044 -0
  478. data/stripe-19.3.0/lib/stripe/params/tax/registration_list_params.rb +27 -0
  479. data/stripe-19.3.0/lib/stripe/params/tax/registration_retrieve_params.rb +15 -0
  480. data/stripe-19.3.0/lib/stripe/params/tax/registration_update_params.rb +21 -0
  481. data/stripe-19.3.0/lib/stripe/params/tax/settings_retrieve_params.rb +15 -0
  482. data/stripe-19.3.0/lib/stripe/params/tax/settings_update_params.rb +71 -0
  483. data/stripe-19.3.0/lib/stripe/params/tax/transaction_create_from_calculation_params.rb +27 -0
  484. data/stripe-19.3.0/lib/stripe/params/tax/transaction_create_reversal_params.rb +87 -0
  485. data/stripe-19.3.0/lib/stripe/params/tax/transaction_line_item_list_params.rb +24 -0
  486. data/stripe-19.3.0/lib/stripe/params/tax/transaction_list_line_items_params.rb +24 -0
  487. data/stripe-19.3.0/lib/stripe/params/tax/transaction_retrieve_params.rb +15 -0
  488. data/stripe-19.3.0/lib/stripe/params/tax_code_list_params.rb +22 -0
  489. data/stripe-19.3.0/lib/stripe/params/tax_code_retrieve_params.rb +13 -0
  490. data/stripe-19.3.0/lib/stripe/params/tax_id_create_params.rb +39 -0
  491. data/stripe-19.3.0/lib/stripe/params/tax_id_delete_params.rb +6 -0
  492. data/stripe-19.3.0/lib/stripe/params/tax_id_list_params.rb +42 -0
  493. data/stripe-19.3.0/lib/stripe/params/tax_id_retrieve_params.rb +13 -0
  494. data/stripe-19.3.0/lib/stripe/params/tax_rate_create_params.rb +55 -0
  495. data/stripe-19.3.0/lib/stripe/params/tax_rate_list_params.rb +56 -0
  496. data/stripe-19.3.0/lib/stripe/params/tax_rate_retrieve_params.rb +13 -0
  497. data/stripe-19.3.0/lib/stripe/params/tax_rate_update_params.rb +47 -0
  498. data/stripe-19.3.0/lib/stripe/params/terminal/configuration_create_params.rb +671 -0
  499. data/stripe-19.3.0/lib/stripe/params/terminal/configuration_delete_params.rb +8 -0
  500. data/stripe-19.3.0/lib/stripe/params/terminal/configuration_list_params.rb +33 -0
  501. data/stripe-19.3.0/lib/stripe/params/terminal/configuration_retrieve_params.rb +15 -0
  502. data/stripe-19.3.0/lib/stripe/params/terminal/configuration_update_params.rb +671 -0
  503. data/stripe-19.3.0/lib/stripe/params/terminal/connection_token_create_params.rb +18 -0
  504. data/stripe-19.3.0/lib/stripe/params/terminal/location_create_params.rb +153 -0
  505. data/stripe-19.3.0/lib/stripe/params/terminal/location_delete_params.rb +8 -0
  506. data/stripe-19.3.0/lib/stripe/params/terminal/location_list_params.rb +24 -0
  507. data/stripe-19.3.0/lib/stripe/params/terminal/location_retrieve_params.rb +15 -0
  508. data/stripe-19.3.0/lib/stripe/params/terminal/location_update_params.rb +153 -0
  509. data/stripe-19.3.0/lib/stripe/params/terminal/onboarding_link_create_params.rb +43 -0
  510. data/stripe-19.3.0/lib/stripe/params/terminal/reader_cancel_action_params.rb +15 -0
  511. data/stripe-19.3.0/lib/stripe/params/terminal/reader_collect_inputs_params.rb +96 -0
  512. data/stripe-19.3.0/lib/stripe/params/terminal/reader_collect_payment_method_params.rb +51 -0
  513. data/stripe-19.3.0/lib/stripe/params/terminal/reader_confirm_payment_intent_params.rb +29 -0
  514. data/stripe-19.3.0/lib/stripe/params/terminal/reader_create_params.rb +27 -0
  515. data/stripe-19.3.0/lib/stripe/params/terminal/reader_delete_params.rb +8 -0
  516. data/stripe-19.3.0/lib/stripe/params/terminal/reader_list_params.rb +45 -0
  517. data/stripe-19.3.0/lib/stripe/params/terminal/reader_present_payment_method_params.rb +72 -0
  518. data/stripe-19.3.0/lib/stripe/params/terminal/reader_process_payment_intent_params.rb +55 -0
  519. data/stripe-19.3.0/lib/stripe/params/terminal/reader_process_setup_intent_params.rb +32 -0
  520. data/stripe-19.3.0/lib/stripe/params/terminal/reader_refund_payment_params.rb +53 -0
  521. data/stripe-19.3.0/lib/stripe/params/terminal/reader_retrieve_params.rb +15 -0
  522. data/stripe-19.3.0/lib/stripe/params/terminal/reader_set_reader_display_params.rb +52 -0
  523. data/stripe-19.3.0/lib/stripe/params/terminal/reader_succeed_input_collection_params.rb +18 -0
  524. data/stripe-19.3.0/lib/stripe/params/terminal/reader_timeout_input_collection_params.rb +15 -0
  525. data/stripe-19.3.0/lib/stripe/params/terminal/reader_update_params.rb +21 -0
  526. data/stripe-19.3.0/lib/stripe/params/test_helpers/confirmation_token_create_params.rb +717 -0
  527. data/stripe-19.3.0/lib/stripe/params/test_helpers/customer_fund_cash_balance_params.rb +24 -0
  528. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_capture_params.rb +395 -0
  529. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_create_params.rb +457 -0
  530. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_expire_params.rb +17 -0
  531. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_finalize_amount_params.rb +228 -0
  532. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_increment_params.rb +23 -0
  533. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_respond_params.rb +20 -0
  534. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/authorization_reverse_params.rb +20 -0
  535. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/card_deliver_card_params.rb +17 -0
  536. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/card_fail_card_params.rb +17 -0
  537. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/card_return_card_params.rb +17 -0
  538. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/card_ship_card_params.rb +17 -0
  539. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/card_submit_card_params.rb +17 -0
  540. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/personalization_design_activate_params.rb +17 -0
  541. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/personalization_design_deactivate_params.rb +17 -0
  542. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/personalization_design_reject_params.rb +31 -0
  543. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/transaction_create_force_capture_params.rb +446 -0
  544. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/transaction_create_unlinked_refund_params.rb +446 -0
  545. data/stripe-19.3.0/lib/stripe/params/test_helpers/issuing/transaction_refund_params.rb +20 -0
  546. data/stripe-19.3.0/lib/stripe/params/test_helpers/refund_expire_params.rb +15 -0
  547. data/stripe-19.3.0/lib/stripe/params/test_helpers/terminal/reader_present_payment_method_params.rb +74 -0
  548. data/stripe-19.3.0/lib/stripe/params/test_helpers/terminal/reader_succeed_input_collection_params.rb +20 -0
  549. data/stripe-19.3.0/lib/stripe/params/test_helpers/terminal/reader_timeout_input_collection_params.rb +17 -0
  550. data/stripe-19.3.0/lib/stripe/params/test_helpers/test_clock_advance_params.rb +18 -0
  551. data/stripe-19.3.0/lib/stripe/params/test_helpers/test_clock_create_params.rb +24 -0
  552. data/stripe-19.3.0/lib/stripe/params/test_helpers/test_clock_delete_params.rb +8 -0
  553. data/stripe-19.3.0/lib/stripe/params/test_helpers/test_clock_list_params.rb +24 -0
  554. data/stripe-19.3.0/lib/stripe/params/test_helpers/test_clock_retrieve_params.rb +15 -0
  555. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/inbound_transfer_fail_params.rb +28 -0
  556. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/inbound_transfer_return_inbound_transfer_params.rb +17 -0
  557. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/inbound_transfer_succeed_params.rb +17 -0
  558. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_payment_fail_params.rb +17 -0
  559. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_payment_post_params.rb +17 -0
  560. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_payment_return_outbound_payment_params.rb +28 -0
  561. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_payment_update_params.rb +57 -0
  562. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_transfer_fail_params.rb +17 -0
  563. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_transfer_post_params.rb +17 -0
  564. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_transfer_return_outbound_transfer_params.rb +28 -0
  565. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/outbound_transfer_update_params.rb +57 -0
  566. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/received_credit_create_params.rb +68 -0
  567. data/stripe-19.3.0/lib/stripe/params/test_helpers/treasury/received_debit_create_params.rb +68 -0
  568. data/stripe-19.3.0/lib/stripe/params/token_create_params.rb +1210 -0
  569. data/stripe-19.3.0/lib/stripe/params/token_retrieve_params.rb +13 -0
  570. data/stripe-19.3.0/lib/stripe/params/topup_cancel_params.rb +13 -0
  571. data/stripe-19.3.0/lib/stripe/params/topup_create_params.rb +67 -0
  572. data/stripe-19.3.0/lib/stripe/params/topup_list_params.rb +74 -0
  573. data/stripe-19.3.0/lib/stripe/params/topup_retrieve_params.rb +13 -0
  574. data/stripe-19.3.0/lib/stripe/params/topup_update_params.rb +19 -0
  575. data/stripe-19.3.0/lib/stripe/params/transfer_create_params.rb +47 -0
  576. data/stripe-19.3.0/lib/stripe/params/transfer_list_params.rb +56 -0
  577. data/stripe-19.3.0/lib/stripe/params/transfer_retrieve_params.rb +13 -0
  578. data/stripe-19.3.0/lib/stripe/params/transfer_reversal_create_params.rb +31 -0
  579. data/stripe-19.3.0/lib/stripe/params/transfer_reversal_list_params.rb +22 -0
  580. data/stripe-19.3.0/lib/stripe/params/transfer_reversal_retrieve_params.rb +13 -0
  581. data/stripe-19.3.0/lib/stripe/params/transfer_reversal_update_params.rb +16 -0
  582. data/stripe-19.3.0/lib/stripe/params/transfer_update_params.rb +19 -0
  583. data/stripe-19.3.0/lib/stripe/params/treasury/credit_reversal_create_params.rb +21 -0
  584. data/stripe-19.3.0/lib/stripe/params/treasury/credit_reversal_list_params.rb +41 -0
  585. data/stripe-19.3.0/lib/stripe/params/treasury/credit_reversal_retrieve_params.rb +15 -0
  586. data/stripe-19.3.0/lib/stripe/params/treasury/debit_reversal_create_params.rb +21 -0
  587. data/stripe-19.3.0/lib/stripe/params/treasury/debit_reversal_list_params.rb +45 -0
  588. data/stripe-19.3.0/lib/stripe/params/treasury/debit_reversal_retrieve_params.rb +15 -0
  589. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_close_params.rb +32 -0
  590. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_create_params.rb +201 -0
  591. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_features_retrieve_params.rb +15 -0
  592. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_features_update_params.rb +163 -0
  593. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_list_params.rb +54 -0
  594. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_retrieve_features_params.rb +15 -0
  595. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_retrieve_params.rb +15 -0
  596. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_update_features_params.rb +163 -0
  597. data/stripe-19.3.0/lib/stripe/params/treasury/financial_account_update_params.rb +216 -0
  598. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_cancel_params.rb +15 -0
  599. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_create_params.rb +45 -0
  600. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_fail_params.rb +26 -0
  601. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_list_params.rb +37 -0
  602. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_retrieve_params.rb +15 -0
  603. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_return_inbound_transfer_params.rb +15 -0
  604. data/stripe-19.3.0/lib/stripe/params/treasury/inbound_transfer_succeed_params.rb +15 -0
  605. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_cancel_params.rb +15 -0
  606. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_create_params.rb +190 -0
  607. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_fail_params.rb +15 -0
  608. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_list_params.rb +62 -0
  609. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_post_params.rb +15 -0
  610. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_retrieve_params.rb +15 -0
  611. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_return_outbound_payment_params.rb +26 -0
  612. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_payment_update_params.rb +55 -0
  613. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_cancel_params.rb +15 -0
  614. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_create_params.rb +81 -0
  615. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_fail_params.rb +15 -0
  616. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_list_params.rb +37 -0
  617. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_post_params.rb +15 -0
  618. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_retrieve_params.rb +15 -0
  619. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_return_outbound_transfer_params.rb +26 -0
  620. data/stripe-19.3.0/lib/stripe/params/treasury/outbound_transfer_update_params.rb +55 -0
  621. data/stripe-19.3.0/lib/stripe/params/treasury/received_credit_create_params.rb +66 -0
  622. data/stripe-19.3.0/lib/stripe/params/treasury/received_credit_list_params.rb +49 -0
  623. data/stripe-19.3.0/lib/stripe/params/treasury/received_credit_retrieve_params.rb +15 -0
  624. data/stripe-19.3.0/lib/stripe/params/treasury/received_debit_create_params.rb +66 -0
  625. data/stripe-19.3.0/lib/stripe/params/treasury/received_debit_list_params.rb +37 -0
  626. data/stripe-19.3.0/lib/stripe/params/treasury/received_debit_retrieve_params.rb +15 -0
  627. data/stripe-19.3.0/lib/stripe/params/treasury/transaction_entry_list_params.rb +84 -0
  628. data/stripe-19.3.0/lib/stripe/params/treasury/transaction_entry_retrieve_params.rb +15 -0
  629. data/stripe-19.3.0/lib/stripe/params/treasury/transaction_list_params.rb +92 -0
  630. data/stripe-19.3.0/lib/stripe/params/treasury/transaction_retrieve_params.rb +15 -0
  631. data/stripe-19.3.0/lib/stripe/params/v2/billing/meter_event_adjustment_create_params.rb +31 -0
  632. data/stripe-19.3.0/lib/stripe/params/v2/billing/meter_event_create_params.rb +33 -0
  633. data/stripe-19.3.0/lib/stripe/params/v2/billing/meter_event_session_create_params.rb +10 -0
  634. data/stripe-19.3.0/lib/stripe/params/v2/billing/meter_event_stream_create_params.rb +41 -0
  635. data/stripe-19.3.0/lib/stripe/params/v2/commerce/product_catalog/import_create_params.rb +25 -0
  636. data/stripe-19.3.0/lib/stripe/params/v2/commerce/product_catalog/import_list_params.rb +54 -0
  637. data/stripe-19.3.0/lib/stripe/params/v2/commerce/product_catalog/import_retrieve_params.rb +12 -0
  638. data/stripe-19.3.0/lib/stripe/params/v2/core/account_close_params.rb +17 -0
  639. data/stripe-19.3.0/lib/stripe/params/v2/core/account_create_params.rb +2189 -0
  640. data/stripe-19.3.0/lib/stripe/params/v2/core/account_link_create_params.rb +101 -0
  641. data/stripe-19.3.0/lib/stripe/params/v2/core/account_list_params.rb +23 -0
  642. data/stripe-19.3.0/lib/stripe/params/v2/core/account_retrieve_params.rb +17 -0
  643. data/stripe-19.3.0/lib/stripe/params/v2/core/account_token_create_params.rb +1070 -0
  644. data/stripe-19.3.0/lib/stripe/params/v2/core/account_token_retrieve_params.rb +10 -0
  645. data/stripe-19.3.0/lib/stripe/params/v2/core/account_update_params.rb +2242 -0
  646. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_create_params.rb +507 -0
  647. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_delete_params.rb +12 -0
  648. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_list_params.rb +19 -0
  649. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_retrieve_params.rb +12 -0
  650. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_token_create_params.rb +497 -0
  651. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_token_retrieve_params.rb +12 -0
  652. data/stripe-19.3.0/lib/stripe/params/v2/core/accounts/person_update_params.rb +507 -0
  653. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_create_params.rb +106 -0
  654. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_delete_params.rb +10 -0
  655. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_disable_params.rb +10 -0
  656. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_enable_params.rb +10 -0
  657. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_list_params.rb +20 -0
  658. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_ping_params.rb +10 -0
  659. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_retrieve_params.rb +17 -0
  660. data/stripe-19.3.0/lib/stripe/params/v2/core/event_destination_update_params.rb +47 -0
  661. data/stripe-19.3.0/lib/stripe/params/v2/core/event_list_params.rb +45 -0
  662. data/stripe-19.3.0/lib/stripe/params/v2/core/event_retrieve_params.rb +10 -0
  663. data/stripe-19.3.0/lib/stripe/params/webhook_endpoint_create_params.rb +39 -0
  664. data/stripe-19.3.0/lib/stripe/params/webhook_endpoint_delete_params.rb +6 -0
  665. data/stripe-19.3.0/lib/stripe/params/webhook_endpoint_list_params.rb +22 -0
  666. data/stripe-19.3.0/lib/stripe/params/webhook_endpoint_retrieve_params.rb +13 -0
  667. data/stripe-19.3.0/lib/stripe/params/webhook_endpoint_update_params.rb +35 -0
  668. data/stripe-19.3.0/lib/stripe/params.rb +1345 -0
  669. data/stripe-19.3.0/lib/stripe/railtie.rb +8 -0
  670. data/stripe-19.3.0/lib/stripe/request_options.rb +138 -0
  671. data/stripe-19.3.0/lib/stripe/request_params.rb +140 -0
  672. data/stripe-19.3.0/lib/stripe/resources/account.rb +1295 -0
  673. data/stripe-19.3.0/lib/stripe/resources/account_link.rb +39 -0
  674. data/stripe-19.3.0/lib/stripe/resources/account_session.rb +737 -0
  675. data/stripe-19.3.0/lib/stripe/resources/apple_pay_domain.rb +76 -0
  676. data/stripe-19.3.0/lib/stripe/resources/application.rb +28 -0
  677. data/stripe-19.3.0/lib/stripe/resources/application_fee.rb +76 -0
  678. data/stripe-19.3.0/lib/stripe/resources/application_fee_refund.rb +63 -0
  679. data/stripe-19.3.0/lib/stripe/resources/apps/secret.rb +96 -0
  680. data/stripe-19.3.0/lib/stripe/resources/balance.rb +340 -0
  681. data/stripe-19.3.0/lib/stripe/resources/balance_settings.rb +132 -0
  682. data/stripe-19.3.0/lib/stripe/resources/balance_transaction.rb +90 -0
  683. data/stripe-19.3.0/lib/stripe/resources/bank_account.rb +214 -0
  684. data/stripe-19.3.0/lib/stripe/resources/billing/alert.rb +142 -0
  685. data/stripe-19.3.0/lib/stripe/resources/billing/alert_triggered.rb +34 -0
  686. data/stripe-19.3.0/lib/stripe/resources/billing/credit_balance_summary.rb +104 -0
  687. data/stripe-19.3.0/lib/stripe/resources/billing/credit_balance_transaction.rb +177 -0
  688. data/stripe-19.3.0/lib/stripe/resources/billing/credit_grant.rb +200 -0
  689. data/stripe-19.3.0/lib/stripe/resources/billing/meter.rb +178 -0
  690. data/stripe-19.3.0/lib/stripe/resources/billing/meter_event.rb +49 -0
  691. data/stripe-19.3.0/lib/stripe/resources/billing/meter_event_adjustment.rb +59 -0
  692. data/stripe-19.3.0/lib/stripe/resources/billing/meter_event_summary.rb +40 -0
  693. data/stripe-19.3.0/lib/stripe/resources/billing_portal/configuration.rb +306 -0
  694. data/stripe-19.3.0/lib/stripe/resources/billing_portal/session.rb +240 -0
  695. data/stripe-19.3.0/lib/stripe/resources/capability.rb +179 -0
  696. data/stripe-19.3.0/lib/stripe/resources/card.rb +162 -0
  697. data/stripe-19.3.0/lib/stripe/resources/cash_balance.rb +61 -0
  698. data/stripe-19.3.0/lib/stripe/resources/charge.rb +2418 -0
  699. data/stripe-19.3.0/lib/stripe/resources/checkout/session.rb +2541 -0
  700. data/stripe-19.3.0/lib/stripe/resources/climate/order.rb +177 -0
  701. data/stripe-19.3.0/lib/stripe/resources/climate/product.rb +76 -0
  702. data/stripe-19.3.0/lib/stripe/resources/climate/supplier.rb +69 -0
  703. data/stripe-19.3.0/lib/stripe/resources/confirmation_token.rb +1808 -0
  704. data/stripe-19.3.0/lib/stripe/resources/connect_collection_transfer.rb +32 -0
  705. data/stripe-19.3.0/lib/stripe/resources/country_spec.rb +92 -0
  706. data/stripe-19.3.0/lib/stripe/resources/coupon.rb +131 -0
  707. data/stripe-19.3.0/lib/stripe/resources/credit_note.rb +317 -0
  708. data/stripe-19.3.0/lib/stripe/resources/credit_note_line_item.rb +129 -0
  709. data/stripe-19.3.0/lib/stripe/resources/customer.rb +450 -0
  710. data/stripe-19.3.0/lib/stripe/resources/customer_balance_transaction.rb +78 -0
  711. data/stripe-19.3.0/lib/stripe/resources/customer_cash_balance_transaction.rb +234 -0
  712. data/stripe-19.3.0/lib/stripe/resources/customer_session.rb +228 -0
  713. data/stripe-19.3.0/lib/stripe/resources/discount.rb +66 -0
  714. data/stripe-19.3.0/lib/stripe/resources/dispute.rb +496 -0
  715. data/stripe-19.3.0/lib/stripe/resources/entitlements/active_entitlement.rb +45 -0
  716. data/stripe-19.3.0/lib/stripe/resources/entitlements/active_entitlement_summary.rb +31 -0
  717. data/stripe-19.3.0/lib/stripe/resources/entitlements/feature.rb +72 -0
  718. data/stripe-19.3.0/lib/stripe/resources/ephemeral_key.rb +64 -0
  719. data/stripe-19.3.0/lib/stripe/resources/event.rb +96 -0
  720. data/stripe-19.3.0/lib/stripe/resources/exchange_rate.rb +69 -0
  721. data/stripe-19.3.0/lib/stripe/resources/file.rb +89 -0
  722. data/stripe-19.3.0/lib/stripe/resources/file_link.rb +65 -0
  723. data/stripe-19.3.0/lib/stripe/resources/financial_connections/account.rb +375 -0
  724. data/stripe-19.3.0/lib/stripe/resources/financial_connections/account_owner.rb +39 -0
  725. data/stripe-19.3.0/lib/stripe/resources/financial_connections/account_ownership.rb +31 -0
  726. data/stripe-19.3.0/lib/stripe/resources/financial_connections/session.rb +88 -0
  727. data/stripe-19.3.0/lib/stripe/resources/financial_connections/transaction.rb +73 -0
  728. data/stripe-19.3.0/lib/stripe/resources/forwarding/request.rb +163 -0
  729. data/stripe-19.3.0/lib/stripe/resources/funding_instructions.rb +525 -0
  730. data/stripe-19.3.0/lib/stripe/resources/identity/verification_report.rb +408 -0
  731. data/stripe-19.3.0/lib/stripe/resources/identity/verification_session.rb +428 -0
  732. data/stripe-19.3.0/lib/stripe/resources/invoice.rb +1361 -0
  733. data/stripe-19.3.0/lib/stripe/resources/invoice_item.rb +271 -0
  734. data/stripe-19.3.0/lib/stripe/resources/invoice_line_item.rb +321 -0
  735. data/stripe-19.3.0/lib/stripe/resources/invoice_payment.rb +92 -0
  736. data/stripe-19.3.0/lib/stripe/resources/invoice_rendering_template.rb +90 -0
  737. data/stripe-19.3.0/lib/stripe/resources/issuing/authorization.rb +762 -0
  738. data/stripe-19.3.0/lib/stripe/resources/issuing/card.rb +463 -0
  739. data/stripe-19.3.0/lib/stripe/resources/issuing/cardholder.rb +296 -0
  740. data/stripe-19.3.0/lib/stripe/resources/issuing/dispute.rb +324 -0
  741. data/stripe-19.3.0/lib/stripe/resources/issuing/personalization_design.rb +206 -0
  742. data/stripe-19.3.0/lib/stripe/resources/issuing/physical_bundle.rb +65 -0
  743. data/stripe-19.3.0/lib/stripe/resources/issuing/token.rb +195 -0
  744. data/stripe-19.3.0/lib/stripe/resources/issuing/transaction.rb +571 -0
  745. data/stripe-19.3.0/lib/stripe/resources/line_item.rb +108 -0
  746. data/stripe-19.3.0/lib/stripe/resources/login_link.rb +35 -0
  747. data/stripe-19.3.0/lib/stripe/resources/mandate.rb +468 -0
  748. data/stripe-19.3.0/lib/stripe/resources/payment_attempt_record.rb +2060 -0
  749. data/stripe-19.3.0/lib/stripe/resources/payment_intent.rb +3456 -0
  750. data/stripe-19.3.0/lib/stripe/resources/payment_intent_amount_details_line_item.rb +138 -0
  751. data/stripe-19.3.0/lib/stripe/resources/payment_link.rb +849 -0
  752. data/stripe-19.3.0/lib/stripe/resources/payment_method.rb +1754 -0
  753. data/stripe-19.3.0/lib/stripe/resources/payment_method_configuration.rb +2056 -0
  754. data/stripe-19.3.0/lib/stripe/resources/payment_method_domain.rb +280 -0
  755. data/stripe-19.3.0/lib/stripe/resources/payment_record.rb +2190 -0
  756. data/stripe-19.3.0/lib/stripe/resources/payout.rb +168 -0
  757. data/stripe-19.3.0/lib/stripe/resources/person.rb +506 -0
  758. data/stripe-19.3.0/lib/stripe/resources/plan.rb +170 -0
  759. data/stripe-19.3.0/lib/stripe/resources/price.rb +280 -0
  760. data/stripe-19.3.0/lib/stripe/resources/product.rb +159 -0
  761. data/stripe-19.3.0/lib/stripe/resources/product_feature.rb +33 -0
  762. data/stripe-19.3.0/lib/stripe/resources/promotion_code.rb +122 -0
  763. data/stripe-19.3.0/lib/stripe/resources/quote.rb +675 -0
  764. data/stripe-19.3.0/lib/stripe/resources/radar/early_fraud_warning.rb +54 -0
  765. data/stripe-19.3.0/lib/stripe/resources/radar/payment_evaluation.rb +497 -0
  766. data/stripe-19.3.0/lib/stripe/resources/radar/value_list.rb +102 -0
  767. data/stripe-19.3.0/lib/stripe/resources/radar/value_list_item.rb +85 -0
  768. data/stripe-19.3.0/lib/stripe/resources/refund.rb +781 -0
  769. data/stripe-19.3.0/lib/stripe/resources/reporting/report_run.rb +104 -0
  770. data/stripe-19.3.0/lib/stripe/resources/reporting/report_type.rb +60 -0
  771. data/stripe-19.3.0/lib/stripe/resources/reserve/hold.rb +84 -0
  772. data/stripe-19.3.0/lib/stripe/resources/reserve/plan.rb +78 -0
  773. data/stripe-19.3.0/lib/stripe/resources/reserve/release.rb +65 -0
  774. data/stripe-19.3.0/lib/stripe/resources/reserve_transaction.rb +30 -0
  775. data/stripe-19.3.0/lib/stripe/resources/reversal.rb +74 -0
  776. data/stripe-19.3.0/lib/stripe/resources/review.rb +118 -0
  777. data/stripe-19.3.0/lib/stripe/resources/setup_attempt.rb +683 -0
  778. data/stripe-19.3.0/lib/stripe/resources/setup_intent.rb +942 -0
  779. data/stripe-19.3.0/lib/stripe/resources/shipping_rate.rb +144 -0
  780. data/stripe-19.3.0/lib/stripe/resources/sigma/scheduled_query_run.rb +76 -0
  781. data/stripe-19.3.0/lib/stripe/resources/source.rb +972 -0
  782. data/stripe-19.3.0/lib/stripe/resources/source_mandate_notification.rb +98 -0
  783. data/stripe-19.3.0/lib/stripe/resources/source_transaction.rb +154 -0
  784. data/stripe-19.3.0/lib/stripe/resources/subscription.rb +975 -0
  785. data/stripe-19.3.0/lib/stripe/resources/subscription_item.rb +131 -0
  786. data/stripe-19.3.0/lib/stripe/resources/subscription_schedule.rb +618 -0
  787. data/stripe-19.3.0/lib/stripe/resources/tax/association.rb +86 -0
  788. data/stripe-19.3.0/lib/stripe/resources/tax/calculation.rb +321 -0
  789. data/stripe-19.3.0/lib/stripe/resources/tax/calculation_line_item.rb +103 -0
  790. data/stripe-19.3.0/lib/stripe/resources/tax/registration.rb +2275 -0
  791. data/stripe-19.3.0/lib/stripe/resources/tax/settings.rb +131 -0
  792. data/stripe-19.3.0/lib/stripe/resources/tax/transaction.rb +287 -0
  793. data/stripe-19.3.0/lib/stripe/resources/tax/transaction_line_item.rb +60 -0
  794. data/stripe-19.3.0/lib/stripe/resources/tax_code.rb +36 -0
  795. data/stripe-19.3.0/lib/stripe/resources/tax_deducted_at_source.rb +30 -0
  796. data/stripe-19.3.0/lib/stripe/resources/tax_id.rb +119 -0
  797. data/stripe-19.3.0/lib/stripe/resources/tax_rate.rb +99 -0
  798. data/stripe-19.3.0/lib/stripe/resources/terminal/configuration.rb +799 -0
  799. data/stripe-19.3.0/lib/stripe/resources/terminal/connection_token.rb +43 -0
  800. data/stripe-19.3.0/lib/stripe/resources/terminal/location.rb +183 -0
  801. data/stripe-19.3.0/lib/stripe/resources/terminal/onboarding_link.rb +71 -0
  802. data/stripe-19.3.0/lib/stripe/resources/terminal/reader.rb +925 -0
  803. data/stripe-19.3.0/lib/stripe/resources/test_helpers/test_clock.rb +133 -0
  804. data/stripe-19.3.0/lib/stripe/resources/token.rb +76 -0
  805. data/stripe-19.3.0/lib/stripe/resources/topup.rb +101 -0
  806. data/stripe-19.3.0/lib/stripe/resources/transfer.rb +93 -0
  807. data/stripe-19.3.0/lib/stripe/resources/treasury/credit_reversal.rb +86 -0
  808. data/stripe-19.3.0/lib/stripe/resources/treasury/debit_reversal.rb +101 -0
  809. data/stripe-19.3.0/lib/stripe/resources/treasury/financial_account.rb +253 -0
  810. data/stripe-19.3.0/lib/stripe/resources/treasury/financial_account_features.rb +396 -0
  811. data/stripe-19.3.0/lib/stripe/resources/treasury/inbound_transfer.rb +308 -0
  812. data/stripe-19.3.0/lib/stripe/resources/treasury/outbound_payment.rb +408 -0
  813. data/stripe-19.3.0/lib/stripe/resources/treasury/outbound_transfer.rb +388 -0
  814. data/stripe-19.3.0/lib/stripe/resources/treasury/received_credit.rb +261 -0
  815. data/stripe-19.3.0/lib/stripe/resources/treasury/received_debit.rb +226 -0
  816. data/stripe-19.3.0/lib/stripe/resources/treasury/transaction.rb +143 -0
  817. data/stripe-19.3.0/lib/stripe/resources/treasury/transaction_entry.rb +124 -0
  818. data/stripe-19.3.0/lib/stripe/resources/v2/amount.rb +9 -0
  819. data/stripe-19.3.0/lib/stripe/resources/v2/billing/meter_event.rb +43 -0
  820. data/stripe-19.3.0/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +53 -0
  821. data/stripe-19.3.0/lib/stripe/resources/v2/billing/meter_event_session.rb +38 -0
  822. data/stripe-19.3.0/lib/stripe/resources/v2/commerce/product_catalog_import.rb +276 -0
  823. data/stripe-19.3.0/lib/stripe/resources/v2/core/account.rb +3645 -0
  824. data/stripe-19.3.0/lib/stripe/resources/v2/core/account_link.rb +123 -0
  825. data/stripe-19.3.0/lib/stripe/resources/v2/core/account_person.rb +487 -0
  826. data/stripe-19.3.0/lib/stripe/resources/v2/core/account_person_token.rb +37 -0
  827. data/stripe-19.3.0/lib/stripe/resources/v2/core/account_token.rb +37 -0
  828. data/stripe-19.3.0/lib/stripe/resources/v2/core/event.rb +70 -0
  829. data/stripe-19.3.0/lib/stripe/resources/v2/core/event_destination.rb +147 -0
  830. data/stripe-19.3.0/lib/stripe/resources/v2/core/event_notification.rb +63 -0
  831. data/stripe-19.3.0/lib/stripe/resources/v2/deleted_object.rb +21 -0
  832. data/stripe-19.3.0/lib/stripe/resources/webhook_endpoint.rb +103 -0
  833. data/stripe-19.3.0/lib/stripe/resources.rb +503 -0
  834. data/stripe-19.3.0/lib/stripe/search_result_object.rb +89 -0
  835. data/stripe-19.3.0/lib/stripe/services/account_capability_service.rb +39 -0
  836. data/stripe-19.3.0/lib/stripe/services/account_external_account_service.rb +68 -0
  837. data/stripe-19.3.0/lib/stripe/services/account_link_service.rb +17 -0
  838. data/stripe-19.3.0/lib/stripe/services/account_login_link_service.rb +19 -0
  839. data/stripe-19.3.0/lib/stripe/services/account_person_service.rb +61 -0
  840. data/stripe-19.3.0/lib/stripe/services/account_service.rb +100 -0
  841. data/stripe-19.3.0/lib/stripe/services/account_session_service.rb +17 -0
  842. data/stripe-19.3.0/lib/stripe/services/apple_pay_domain_service.rb +50 -0
  843. data/stripe-19.3.0/lib/stripe/services/application_fee_refund_service.rb +60 -0
  844. data/stripe-19.3.0/lib/stripe/services/application_fee_service.rb +35 -0
  845. data/stripe-19.3.0/lib/stripe/services/apps/secret_service.rb +52 -0
  846. data/stripe-19.3.0/lib/stripe/services/apps_service.rb +13 -0
  847. data/stripe-19.3.0/lib/stripe/services/balance_service.rb +12 -0
  848. data/stripe-19.3.0/lib/stripe/services/balance_settings_service.rb +30 -0
  849. data/stripe-19.3.0/lib/stripe/services/balance_transaction_service.rb +32 -0
  850. data/stripe-19.3.0/lib/stripe/services/billing/alert_service.rb +74 -0
  851. data/stripe-19.3.0/lib/stripe/services/billing/credit_balance_summary_service.rb +19 -0
  852. data/stripe-19.3.0/lib/stripe/services/billing/credit_balance_transaction_service.rb +30 -0
  853. data/stripe-19.3.0/lib/stripe/services/billing/credit_grant_service.rb +74 -0
  854. data/stripe-19.3.0/lib/stripe/services/billing/meter_event_adjustment_service.rb +19 -0
  855. data/stripe-19.3.0/lib/stripe/services/billing/meter_event_service.rb +19 -0
  856. data/stripe-19.3.0/lib/stripe/services/billing/meter_event_summary_service.rb +19 -0
  857. data/stripe-19.3.0/lib/stripe/services/billing/meter_service.rb +81 -0
  858. data/stripe-19.3.0/lib/stripe/services/billing_portal/configuration_service.rb +52 -0
  859. data/stripe-19.3.0/lib/stripe/services/billing_portal/session_service.rb +19 -0
  860. data/stripe-19.3.0/lib/stripe/services/billing_portal_service.rb +14 -0
  861. data/stripe-19.3.0/lib/stripe/services/billing_service.rb +20 -0
  862. data/stripe-19.3.0/lib/stripe/services/charge_service.rb +69 -0
  863. data/stripe-19.3.0/lib/stripe/services/checkout/session_line_item_service.rb +19 -0
  864. data/stripe-19.3.0/lib/stripe/services/checkout/session_service.rb +82 -0
  865. data/stripe-19.3.0/lib/stripe/services/checkout_service.rb +13 -0
  866. data/stripe-19.3.0/lib/stripe/services/climate/order_service.rb +70 -0
  867. data/stripe-19.3.0/lib/stripe/services/climate/product_service.rb +30 -0
  868. data/stripe-19.3.0/lib/stripe/services/climate/supplier_service.rb +30 -0
  869. data/stripe-19.3.0/lib/stripe/services/climate_service.rb +15 -0
  870. data/stripe-19.3.0/lib/stripe/services/confirmation_token_service.rb +17 -0
  871. data/stripe-19.3.0/lib/stripe/services/country_spec_service.rb +28 -0
  872. data/stripe-19.3.0/lib/stripe/services/coupon_service.rb +51 -0
  873. data/stripe-19.3.0/lib/stripe/services/credit_note_line_item_service.rb +17 -0
  874. data/stripe-19.3.0/lib/stripe/services/credit_note_preview_lines_service.rb +21 -0
  875. data/stripe-19.3.0/lib/stripe/services/credit_note_service.rb +98 -0
  876. data/stripe-19.3.0/lib/stripe/services/customer_balance_transaction_service.rb +50 -0
  877. data/stripe-19.3.0/lib/stripe/services/customer_cash_balance_service.rb +28 -0
  878. data/stripe-19.3.0/lib/stripe/services/customer_cash_balance_transaction_service.rb +28 -0
  879. data/stripe-19.3.0/lib/stripe/services/customer_funding_instructions_service.rb +19 -0
  880. data/stripe-19.3.0/lib/stripe/services/customer_payment_method_service.rb +28 -0
  881. data/stripe-19.3.0/lib/stripe/services/customer_payment_source_service.rb +76 -0
  882. data/stripe-19.3.0/lib/stripe/services/customer_service.rb +89 -0
  883. data/stripe-19.3.0/lib/stripe/services/customer_session_service.rb +17 -0
  884. data/stripe-19.3.0/lib/stripe/services/customer_tax_id_service.rb +50 -0
  885. data/stripe-19.3.0/lib/stripe/services/dispute_service.rb +48 -0
  886. data/stripe-19.3.0/lib/stripe/services/entitlements/active_entitlement_service.rb +30 -0
  887. data/stripe-19.3.0/lib/stripe/services/entitlements/feature_service.rb +52 -0
  888. data/stripe-19.3.0/lib/stripe/services/entitlements_service.rb +14 -0
  889. data/stripe-19.3.0/lib/stripe/services/ephemeral_key_service.rb +28 -0
  890. data/stripe-19.3.0/lib/stripe/services/event_service.rb +22 -0
  891. data/stripe-19.3.0/lib/stripe/services/exchange_rate_service.rb +32 -0
  892. data/stripe-19.3.0/lib/stripe/services/file_link_service.rb +38 -0
  893. data/stripe-19.3.0/lib/stripe/services/file_service.rb +35 -0
  894. data/stripe-19.3.0/lib/stripe/services/financial_connections/account_owner_service.rb +19 -0
  895. data/stripe-19.3.0/lib/stripe/services/financial_connections/account_service.rb +81 -0
  896. data/stripe-19.3.0/lib/stripe/services/financial_connections/session_service.rb +30 -0
  897. data/stripe-19.3.0/lib/stripe/services/financial_connections/transaction_service.rb +30 -0
  898. data/stripe-19.3.0/lib/stripe/services/financial_connections_service.rb +15 -0
  899. data/stripe-19.3.0/lib/stripe/services/forwarding/request_service.rb +41 -0
  900. data/stripe-19.3.0/lib/stripe/services/forwarding_service.rb +13 -0
  901. data/stripe-19.3.0/lib/stripe/services/identity/verification_report_service.rb +30 -0
  902. data/stripe-19.3.0/lib/stripe/services/identity/verification_session_service.rb +106 -0
  903. data/stripe-19.3.0/lib/stripe/services/identity_service.rb +14 -0
  904. data/stripe-19.3.0/lib/stripe/services/invoice_item_service.rb +65 -0
  905. data/stripe-19.3.0/lib/stripe/services/invoice_line_item_service.rb +33 -0
  906. data/stripe-19.3.0/lib/stripe/services/invoice_payment_service.rb +28 -0
  907. data/stripe-19.3.0/lib/stripe/services/invoice_rendering_template_service.rb +50 -0
  908. data/stripe-19.3.0/lib/stripe/services/invoice_service.rb +212 -0
  909. data/stripe-19.3.0/lib/stripe/services/issuing/authorization_service.rb +65 -0
  910. data/stripe-19.3.0/lib/stripe/services/issuing/card_service.rb +52 -0
  911. data/stripe-19.3.0/lib/stripe/services/issuing/cardholder_service.rb +52 -0
  912. data/stripe-19.3.0/lib/stripe/services/issuing/dispute_service.rb +63 -0
  913. data/stripe-19.3.0/lib/stripe/services/issuing/personalization_design_service.rb +52 -0
  914. data/stripe-19.3.0/lib/stripe/services/issuing/physical_bundle_service.rb +30 -0
  915. data/stripe-19.3.0/lib/stripe/services/issuing/token_service.rb +41 -0
  916. data/stripe-19.3.0/lib/stripe/services/issuing/transaction_service.rb +41 -0
  917. data/stripe-19.3.0/lib/stripe/services/issuing_service.rb +20 -0
  918. data/stripe-19.3.0/lib/stripe/services/mandate_service.rb +17 -0
  919. data/stripe-19.3.0/lib/stripe/services/oauth_service.rb +63 -0
  920. data/stripe-19.3.0/lib/stripe/services/payment_attempt_record_service.rb +28 -0
  921. data/stripe-19.3.0/lib/stripe/services/payment_intent_amount_details_line_item_service.rb +17 -0
  922. data/stripe-19.3.0/lib/stripe/services/payment_intent_service.rb +218 -0
  923. data/stripe-19.3.0/lib/stripe/services/payment_link_line_item_service.rb +17 -0
  924. data/stripe-19.3.0/lib/stripe/services/payment_link_service.rb +59 -0
  925. data/stripe-19.3.0/lib/stripe/services/payment_method_configuration_service.rb +50 -0
  926. data/stripe-19.3.0/lib/stripe/services/payment_method_domain_service.rb +66 -0
  927. data/stripe-19.3.0/lib/stripe/services/payment_method_service.rb +86 -0
  928. data/stripe-19.3.0/lib/stripe/services/payment_record_service.rb +101 -0
  929. data/stripe-19.3.0/lib/stripe/services/payout_service.rb +66 -0
  930. data/stripe-19.3.0/lib/stripe/services/plan_service.rb +51 -0
  931. data/stripe-19.3.0/lib/stripe/services/price_service.rb +54 -0
  932. data/stripe-19.3.0/lib/stripe/services/product_feature_service.rb +50 -0
  933. data/stripe-19.3.0/lib/stripe/services/product_service.rb +72 -0
  934. data/stripe-19.3.0/lib/stripe/services/promotion_code_service.rb +50 -0
  935. data/stripe-19.3.0/lib/stripe/services/quote_computed_upfront_line_items_service.rb +17 -0
  936. data/stripe-19.3.0/lib/stripe/services/quote_line_item_service.rb +17 -0
  937. data/stripe-19.3.0/lib/stripe/services/quote_service.rb +96 -0
  938. data/stripe-19.3.0/lib/stripe/services/radar/early_fraud_warning_service.rb +32 -0
  939. data/stripe-19.3.0/lib/stripe/services/radar/payment_evaluation_service.rb +19 -0
  940. data/stripe-19.3.0/lib/stripe/services/radar/value_list_item_service.rb +52 -0
  941. data/stripe-19.3.0/lib/stripe/services/radar/value_list_service.rb +63 -0
  942. data/stripe-19.3.0/lib/stripe/services/radar_service.rb +16 -0
  943. data/stripe-19.3.0/lib/stripe/services/refund_service.rb +63 -0
  944. data/stripe-19.3.0/lib/stripe/services/reporting/report_run_service.rb +41 -0
  945. data/stripe-19.3.0/lib/stripe/services/reporting/report_type_service.rb +30 -0
  946. data/stripe-19.3.0/lib/stripe/services/reporting_service.rb +14 -0
  947. data/stripe-19.3.0/lib/stripe/services/review_service.rb +33 -0
  948. data/stripe-19.3.0/lib/stripe/services/setup_attempt_service.rb +17 -0
  949. data/stripe-19.3.0/lib/stripe/services/setup_intent_service.rb +105 -0
  950. data/stripe-19.3.0/lib/stripe/services/shipping_rate_service.rb +50 -0
  951. data/stripe-19.3.0/lib/stripe/services/sigma/scheduled_query_run_service.rb +30 -0
  952. data/stripe-19.3.0/lib/stripe/services/sigma_service.rb +13 -0
  953. data/stripe-19.3.0/lib/stripe/services/source_service.rb +64 -0
  954. data/stripe-19.3.0/lib/stripe/services/source_transaction_service.rb +17 -0
  955. data/stripe-19.3.0/lib/stripe/services/subscription_item_service.rb +65 -0
  956. data/stripe-19.3.0/lib/stripe/services/subscription_schedule_service.rb +80 -0
  957. data/stripe-19.3.0/lib/stripe/services/subscription_service.rb +142 -0
  958. data/stripe-19.3.0/lib/stripe/services/tax/association_service.rb +19 -0
  959. data/stripe-19.3.0/lib/stripe/services/tax/calculation_line_item_service.rb +19 -0
  960. data/stripe-19.3.0/lib/stripe/services/tax/calculation_service.rb +37 -0
  961. data/stripe-19.3.0/lib/stripe/services/tax/registration_service.rb +54 -0
  962. data/stripe-19.3.0/lib/stripe/services/tax/settings_service.rb +30 -0
  963. data/stripe-19.3.0/lib/stripe/services/tax/transaction_line_item_service.rb +19 -0
  964. data/stripe-19.3.0/lib/stripe/services/tax/transaction_service.rb +48 -0
  965. data/stripe-19.3.0/lib/stripe/services/tax_code_service.rb +22 -0
  966. data/stripe-19.3.0/lib/stripe/services/tax_id_service.rb +38 -0
  967. data/stripe-19.3.0/lib/stripe/services/tax_rate_service.rb +38 -0
  968. data/stripe-19.3.0/lib/stripe/services/tax_service.rb +17 -0
  969. data/stripe-19.3.0/lib/stripe/services/terminal/configuration_service.rb +63 -0
  970. data/stripe-19.3.0/lib/stripe/services/terminal/connection_token_service.rb +19 -0
  971. data/stripe-19.3.0/lib/stripe/services/terminal/location_service.rb +64 -0
  972. data/stripe-19.3.0/lib/stripe/services/terminal/onboarding_link_service.rb +19 -0
  973. data/stripe-19.3.0/lib/stripe/services/terminal/reader_service.rb +151 -0
  974. data/stripe-19.3.0/lib/stripe/services/terminal_service.rb +17 -0
  975. data/stripe-19.3.0/lib/stripe/services/test_helpers/confirmation_token_service.rb +19 -0
  976. data/stripe-19.3.0/lib/stripe/services/test_helpers/customer_service.rb +19 -0
  977. data/stripe-19.3.0/lib/stripe/services/test_helpers/issuing/authorization_service.rb +99 -0
  978. data/stripe-19.3.0/lib/stripe/services/test_helpers/issuing/card_service.rb +65 -0
  979. data/stripe-19.3.0/lib/stripe/services/test_helpers/issuing/personalization_design_service.rb +43 -0
  980. data/stripe-19.3.0/lib/stripe/services/test_helpers/issuing/transaction_service.rb +51 -0
  981. data/stripe-19.3.0/lib/stripe/services/test_helpers/issuing_service.rb +19 -0
  982. data/stripe-19.3.0/lib/stripe/services/test_helpers/refund_service.rb +19 -0
  983. data/stripe-19.3.0/lib/stripe/services/test_helpers/terminal/reader_service.rb +43 -0
  984. data/stripe-19.3.0/lib/stripe/services/test_helpers/terminal_service.rb +15 -0
  985. data/stripe-19.3.0/lib/stripe/services/test_helpers/test_clock_service.rb +63 -0
  986. data/stripe-19.3.0/lib/stripe/services/test_helpers/treasury/inbound_transfer_service.rb +43 -0
  987. data/stripe-19.3.0/lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb +54 -0
  988. data/stripe-19.3.0/lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb +54 -0
  989. data/stripe-19.3.0/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +21 -0
  990. data/stripe-19.3.0/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +21 -0
  991. data/stripe-19.3.0/lib/stripe/services/test_helpers/treasury_service.rb +19 -0
  992. data/stripe-19.3.0/lib/stripe/services/test_helpers_service.rb +19 -0
  993. data/stripe-19.3.0/lib/stripe/services/token_service.rb +23 -0
  994. data/stripe-19.3.0/lib/stripe/services/topup_service.rb +49 -0
  995. data/stripe-19.3.0/lib/stripe/services/transfer_reversal_service.rb +56 -0
  996. data/stripe-19.3.0/lib/stripe/services/transfer_service.rb +47 -0
  997. data/stripe-19.3.0/lib/stripe/services/treasury/credit_reversal_service.rb +41 -0
  998. data/stripe-19.3.0/lib/stripe/services/treasury/debit_reversal_service.rb +41 -0
  999. data/stripe-19.3.0/lib/stripe/services/treasury/financial_account_features_service.rb +30 -0
  1000. data/stripe-19.3.0/lib/stripe/services/treasury/financial_account_service.rb +70 -0
  1001. data/stripe-19.3.0/lib/stripe/services/treasury/inbound_transfer_service.rb +52 -0
  1002. data/stripe-19.3.0/lib/stripe/services/treasury/outbound_payment_service.rb +52 -0
  1003. data/stripe-19.3.0/lib/stripe/services/treasury/outbound_transfer_service.rb +52 -0
  1004. data/stripe-19.3.0/lib/stripe/services/treasury/received_credit_service.rb +30 -0
  1005. data/stripe-19.3.0/lib/stripe/services/treasury/received_debit_service.rb +30 -0
  1006. data/stripe-19.3.0/lib/stripe/services/treasury/transaction_entry_service.rb +30 -0
  1007. data/stripe-19.3.0/lib/stripe/services/treasury/transaction_service.rb +30 -0
  1008. data/stripe-19.3.0/lib/stripe/services/treasury_service.rb +22 -0
  1009. data/stripe-19.3.0/lib/stripe/services/v1_services.rb +93 -0
  1010. data/stripe-19.3.0/lib/stripe/services/v2/billing/meter_event_adjustment_service.rb +21 -0
  1011. data/stripe-19.3.0/lib/stripe/services/v2/billing/meter_event_service.rb +21 -0
  1012. data/stripe-19.3.0/lib/stripe/services/v2/billing/meter_event_session_service.rb +21 -0
  1013. data/stripe-19.3.0/lib/stripe/services/v2/billing/meter_event_stream_service.rb +23 -0
  1014. data/stripe-19.3.0/lib/stripe/services/v2/billing_service.rb +18 -0
  1015. data/stripe-19.3.0/lib/stripe/services/v2/commerce/product_catalog/import_service.rb +45 -0
  1016. data/stripe-19.3.0/lib/stripe/services/v2/commerce/product_catalog_service.rb +17 -0
  1017. data/stripe-19.3.0/lib/stripe/services/v2/commerce_service.rb +15 -0
  1018. data/stripe-19.3.0/lib/stripe/services/v2/core/account_link_service.rb +23 -0
  1019. data/stripe-19.3.0/lib/stripe/services/v2/core/account_service.rb +91 -0
  1020. data/stripe-19.3.0/lib/stripe/services/v2/core/account_token_service.rb +44 -0
  1021. data/stripe-19.3.0/lib/stripe/services/v2/core/accounts/person_service.rb +85 -0
  1022. data/stripe-19.3.0/lib/stripe/services/v2/core/accounts/person_token_service.rb +43 -0
  1023. data/stripe-19.3.0/lib/stripe/services/v2/core/event_destination_service.rb +98 -0
  1024. data/stripe-19.3.0/lib/stripe/services/v2/core/event_service.rb +33 -0
  1025. data/stripe-19.3.0/lib/stripe/services/v2/core_service.rb +19 -0
  1026. data/stripe-19.3.0/lib/stripe/services/v2_services.rb +15 -0
  1027. data/stripe-19.3.0/lib/stripe/services/webhook_endpoint_service.rb +61 -0
  1028. data/stripe-19.3.0/lib/stripe/services.rb +472 -0
  1029. data/stripe-19.3.0/lib/stripe/singleton_api_resource.rb +26 -0
  1030. data/stripe-19.3.0/lib/stripe/stripe_client.rb +97 -0
  1031. data/stripe-19.3.0/lib/stripe/stripe_configuration.rb +210 -0
  1032. data/stripe-19.3.0/lib/stripe/stripe_context.rb +68 -0
  1033. data/stripe-19.3.0/lib/stripe/stripe_object.rb +692 -0
  1034. data/stripe-19.3.0/lib/stripe/stripe_response.rb +108 -0
  1035. data/stripe-19.3.0/lib/stripe/stripe_service.rb +34 -0
  1036. data/stripe-19.3.0/lib/stripe/util.rb +490 -0
  1037. data/stripe-19.3.0/lib/stripe/v2_list_object.rb +84 -0
  1038. data/stripe-19.3.0/lib/stripe/version.rb +5 -0
  1039. data/stripe-19.3.0/lib/stripe/webhook.rb +129 -0
  1040. data/stripe-19.3.0/lib/stripe.rb +185 -0
  1041. data/stripe-19.3.0/rbi/stripe/resources/v2/core/event_notification.rbi +43 -0
  1042. data/stripe-19.3.0/rbi/stripe/stripe_client.rbi +17 -0
  1043. data/stripe-19.3.0/rbi/stripe.rbi +170441 -0
  1044. metadata +1083 -0
@@ -0,0 +1,2044 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ module Tax
6
+ class RegistrationCreateParams < ::Stripe::RequestParams
7
+ class CountryOptions < ::Stripe::RequestParams
8
+ class Ae < ::Stripe::RequestParams
9
+ class Standard < ::Stripe::RequestParams
10
+ # Place of supply scheme used in an standard registration.
11
+ attr_accessor :place_of_supply_scheme
12
+
13
+ def initialize(place_of_supply_scheme: nil)
14
+ @place_of_supply_scheme = place_of_supply_scheme
15
+ end
16
+ end
17
+ # Options for the standard registration.
18
+ attr_accessor :standard
19
+ # Type of registration to be created in `country`.
20
+ attr_accessor :type
21
+
22
+ def initialize(standard: nil, type: nil)
23
+ @standard = standard
24
+ @type = type
25
+ end
26
+ end
27
+
28
+ class Al < ::Stripe::RequestParams
29
+ class Standard < ::Stripe::RequestParams
30
+ # Place of supply scheme used in an standard registration.
31
+ attr_accessor :place_of_supply_scheme
32
+
33
+ def initialize(place_of_supply_scheme: nil)
34
+ @place_of_supply_scheme = place_of_supply_scheme
35
+ end
36
+ end
37
+ # Options for the standard registration.
38
+ attr_accessor :standard
39
+ # Type of registration to be created in `country`.
40
+ attr_accessor :type
41
+
42
+ def initialize(standard: nil, type: nil)
43
+ @standard = standard
44
+ @type = type
45
+ end
46
+ end
47
+
48
+ class Am < ::Stripe::RequestParams
49
+ # Type of registration to be created in `country`.
50
+ attr_accessor :type
51
+
52
+ def initialize(type: nil)
53
+ @type = type
54
+ end
55
+ end
56
+
57
+ class Ao < ::Stripe::RequestParams
58
+ class Standard < ::Stripe::RequestParams
59
+ # Place of supply scheme used in an standard registration.
60
+ attr_accessor :place_of_supply_scheme
61
+
62
+ def initialize(place_of_supply_scheme: nil)
63
+ @place_of_supply_scheme = place_of_supply_scheme
64
+ end
65
+ end
66
+ # Options for the standard registration.
67
+ attr_accessor :standard
68
+ # Type of registration to be created in `country`.
69
+ attr_accessor :type
70
+
71
+ def initialize(standard: nil, type: nil)
72
+ @standard = standard
73
+ @type = type
74
+ end
75
+ end
76
+
77
+ class At < ::Stripe::RequestParams
78
+ class Standard < ::Stripe::RequestParams
79
+ # Place of supply scheme used in an EU standard registration.
80
+ attr_accessor :place_of_supply_scheme
81
+
82
+ def initialize(place_of_supply_scheme: nil)
83
+ @place_of_supply_scheme = place_of_supply_scheme
84
+ end
85
+ end
86
+ # Options for the standard registration.
87
+ attr_accessor :standard
88
+ # Type of registration to be created in an EU country.
89
+ attr_accessor :type
90
+
91
+ def initialize(standard: nil, type: nil)
92
+ @standard = standard
93
+ @type = type
94
+ end
95
+ end
96
+
97
+ class Au < ::Stripe::RequestParams
98
+ class Standard < ::Stripe::RequestParams
99
+ # Place of supply scheme used in an standard registration.
100
+ attr_accessor :place_of_supply_scheme
101
+
102
+ def initialize(place_of_supply_scheme: nil)
103
+ @place_of_supply_scheme = place_of_supply_scheme
104
+ end
105
+ end
106
+ # Options for the standard registration.
107
+ attr_accessor :standard
108
+ # Type of registration to be created in `country`.
109
+ attr_accessor :type
110
+
111
+ def initialize(standard: nil, type: nil)
112
+ @standard = standard
113
+ @type = type
114
+ end
115
+ end
116
+
117
+ class Aw < ::Stripe::RequestParams
118
+ class Standard < ::Stripe::RequestParams
119
+ # Place of supply scheme used in an standard registration.
120
+ attr_accessor :place_of_supply_scheme
121
+
122
+ def initialize(place_of_supply_scheme: nil)
123
+ @place_of_supply_scheme = place_of_supply_scheme
124
+ end
125
+ end
126
+ # Options for the standard registration.
127
+ attr_accessor :standard
128
+ # Type of registration to be created in `country`.
129
+ attr_accessor :type
130
+
131
+ def initialize(standard: nil, type: nil)
132
+ @standard = standard
133
+ @type = type
134
+ end
135
+ end
136
+
137
+ class Az < ::Stripe::RequestParams
138
+ # Type of registration to be created in `country`.
139
+ attr_accessor :type
140
+
141
+ def initialize(type: nil)
142
+ @type = type
143
+ end
144
+ end
145
+
146
+ class Ba < ::Stripe::RequestParams
147
+ class Standard < ::Stripe::RequestParams
148
+ # Place of supply scheme used in an standard registration.
149
+ attr_accessor :place_of_supply_scheme
150
+
151
+ def initialize(place_of_supply_scheme: nil)
152
+ @place_of_supply_scheme = place_of_supply_scheme
153
+ end
154
+ end
155
+ # Options for the standard registration.
156
+ attr_accessor :standard
157
+ # Type of registration to be created in `country`.
158
+ attr_accessor :type
159
+
160
+ def initialize(standard: nil, type: nil)
161
+ @standard = standard
162
+ @type = type
163
+ end
164
+ end
165
+
166
+ class Bb < ::Stripe::RequestParams
167
+ class Standard < ::Stripe::RequestParams
168
+ # Place of supply scheme used in an standard registration.
169
+ attr_accessor :place_of_supply_scheme
170
+
171
+ def initialize(place_of_supply_scheme: nil)
172
+ @place_of_supply_scheme = place_of_supply_scheme
173
+ end
174
+ end
175
+ # Options for the standard registration.
176
+ attr_accessor :standard
177
+ # Type of registration to be created in `country`.
178
+ attr_accessor :type
179
+
180
+ def initialize(standard: nil, type: nil)
181
+ @standard = standard
182
+ @type = type
183
+ end
184
+ end
185
+
186
+ class Bd < ::Stripe::RequestParams
187
+ class Standard < ::Stripe::RequestParams
188
+ # Place of supply scheme used in an standard registration.
189
+ attr_accessor :place_of_supply_scheme
190
+
191
+ def initialize(place_of_supply_scheme: nil)
192
+ @place_of_supply_scheme = place_of_supply_scheme
193
+ end
194
+ end
195
+ # Options for the standard registration.
196
+ attr_accessor :standard
197
+ # Type of registration to be created in `country`.
198
+ attr_accessor :type
199
+
200
+ def initialize(standard: nil, type: nil)
201
+ @standard = standard
202
+ @type = type
203
+ end
204
+ end
205
+
206
+ class Be < ::Stripe::RequestParams
207
+ class Standard < ::Stripe::RequestParams
208
+ # Place of supply scheme used in an EU standard registration.
209
+ attr_accessor :place_of_supply_scheme
210
+
211
+ def initialize(place_of_supply_scheme: nil)
212
+ @place_of_supply_scheme = place_of_supply_scheme
213
+ end
214
+ end
215
+ # Options for the standard registration.
216
+ attr_accessor :standard
217
+ # Type of registration to be created in an EU country.
218
+ attr_accessor :type
219
+
220
+ def initialize(standard: nil, type: nil)
221
+ @standard = standard
222
+ @type = type
223
+ end
224
+ end
225
+
226
+ class Bf < ::Stripe::RequestParams
227
+ class Standard < ::Stripe::RequestParams
228
+ # Place of supply scheme used in an standard registration.
229
+ attr_accessor :place_of_supply_scheme
230
+
231
+ def initialize(place_of_supply_scheme: nil)
232
+ @place_of_supply_scheme = place_of_supply_scheme
233
+ end
234
+ end
235
+ # Options for the standard registration.
236
+ attr_accessor :standard
237
+ # Type of registration to be created in `country`.
238
+ attr_accessor :type
239
+
240
+ def initialize(standard: nil, type: nil)
241
+ @standard = standard
242
+ @type = type
243
+ end
244
+ end
245
+
246
+ class Bg < ::Stripe::RequestParams
247
+ class Standard < ::Stripe::RequestParams
248
+ # Place of supply scheme used in an EU standard registration.
249
+ attr_accessor :place_of_supply_scheme
250
+
251
+ def initialize(place_of_supply_scheme: nil)
252
+ @place_of_supply_scheme = place_of_supply_scheme
253
+ end
254
+ end
255
+ # Options for the standard registration.
256
+ attr_accessor :standard
257
+ # Type of registration to be created in an EU country.
258
+ attr_accessor :type
259
+
260
+ def initialize(standard: nil, type: nil)
261
+ @standard = standard
262
+ @type = type
263
+ end
264
+ end
265
+
266
+ class Bh < ::Stripe::RequestParams
267
+ class Standard < ::Stripe::RequestParams
268
+ # Place of supply scheme used in an standard registration.
269
+ attr_accessor :place_of_supply_scheme
270
+
271
+ def initialize(place_of_supply_scheme: nil)
272
+ @place_of_supply_scheme = place_of_supply_scheme
273
+ end
274
+ end
275
+ # Options for the standard registration.
276
+ attr_accessor :standard
277
+ # Type of registration to be created in `country`.
278
+ attr_accessor :type
279
+
280
+ def initialize(standard: nil, type: nil)
281
+ @standard = standard
282
+ @type = type
283
+ end
284
+ end
285
+
286
+ class Bj < ::Stripe::RequestParams
287
+ # Type of registration to be created in `country`.
288
+ attr_accessor :type
289
+
290
+ def initialize(type: nil)
291
+ @type = type
292
+ end
293
+ end
294
+
295
+ class Bs < ::Stripe::RequestParams
296
+ class Standard < ::Stripe::RequestParams
297
+ # Place of supply scheme used in an standard registration.
298
+ attr_accessor :place_of_supply_scheme
299
+
300
+ def initialize(place_of_supply_scheme: nil)
301
+ @place_of_supply_scheme = place_of_supply_scheme
302
+ end
303
+ end
304
+ # Options for the standard registration.
305
+ attr_accessor :standard
306
+ # Type of registration to be created in `country`.
307
+ attr_accessor :type
308
+
309
+ def initialize(standard: nil, type: nil)
310
+ @standard = standard
311
+ @type = type
312
+ end
313
+ end
314
+
315
+ class By < ::Stripe::RequestParams
316
+ # Type of registration to be created in `country`.
317
+ attr_accessor :type
318
+
319
+ def initialize(type: nil)
320
+ @type = type
321
+ end
322
+ end
323
+
324
+ class Ca < ::Stripe::RequestParams
325
+ class ProvinceStandard < ::Stripe::RequestParams
326
+ # Two-letter CA province code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
327
+ attr_accessor :province
328
+
329
+ def initialize(province: nil)
330
+ @province = province
331
+ end
332
+ end
333
+ # Options for the provincial tax registration.
334
+ attr_accessor :province_standard
335
+ # Type of registration to be created in Canada.
336
+ attr_accessor :type
337
+
338
+ def initialize(province_standard: nil, type: nil)
339
+ @province_standard = province_standard
340
+ @type = type
341
+ end
342
+ end
343
+
344
+ class Cd < ::Stripe::RequestParams
345
+ class Standard < ::Stripe::RequestParams
346
+ # Place of supply scheme used in an standard registration.
347
+ attr_accessor :place_of_supply_scheme
348
+
349
+ def initialize(place_of_supply_scheme: nil)
350
+ @place_of_supply_scheme = place_of_supply_scheme
351
+ end
352
+ end
353
+ # Options for the standard registration.
354
+ attr_accessor :standard
355
+ # Type of registration to be created in `country`.
356
+ attr_accessor :type
357
+
358
+ def initialize(standard: nil, type: nil)
359
+ @standard = standard
360
+ @type = type
361
+ end
362
+ end
363
+
364
+ class Ch < ::Stripe::RequestParams
365
+ class Standard < ::Stripe::RequestParams
366
+ # Place of supply scheme used in an standard registration.
367
+ attr_accessor :place_of_supply_scheme
368
+
369
+ def initialize(place_of_supply_scheme: nil)
370
+ @place_of_supply_scheme = place_of_supply_scheme
371
+ end
372
+ end
373
+ # Options for the standard registration.
374
+ attr_accessor :standard
375
+ # Type of registration to be created in `country`.
376
+ attr_accessor :type
377
+
378
+ def initialize(standard: nil, type: nil)
379
+ @standard = standard
380
+ @type = type
381
+ end
382
+ end
383
+
384
+ class Cl < ::Stripe::RequestParams
385
+ # Type of registration to be created in `country`.
386
+ attr_accessor :type
387
+
388
+ def initialize(type: nil)
389
+ @type = type
390
+ end
391
+ end
392
+
393
+ class Cm < ::Stripe::RequestParams
394
+ # Type of registration to be created in `country`.
395
+ attr_accessor :type
396
+
397
+ def initialize(type: nil)
398
+ @type = type
399
+ end
400
+ end
401
+
402
+ class Co < ::Stripe::RequestParams
403
+ # Type of registration to be created in `country`.
404
+ attr_accessor :type
405
+
406
+ def initialize(type: nil)
407
+ @type = type
408
+ end
409
+ end
410
+
411
+ class Cr < ::Stripe::RequestParams
412
+ # Type of registration to be created in `country`.
413
+ attr_accessor :type
414
+
415
+ def initialize(type: nil)
416
+ @type = type
417
+ end
418
+ end
419
+
420
+ class Cv < ::Stripe::RequestParams
421
+ # Type of registration to be created in `country`.
422
+ attr_accessor :type
423
+
424
+ def initialize(type: nil)
425
+ @type = type
426
+ end
427
+ end
428
+
429
+ class Cy < ::Stripe::RequestParams
430
+ class Standard < ::Stripe::RequestParams
431
+ # Place of supply scheme used in an EU standard registration.
432
+ attr_accessor :place_of_supply_scheme
433
+
434
+ def initialize(place_of_supply_scheme: nil)
435
+ @place_of_supply_scheme = place_of_supply_scheme
436
+ end
437
+ end
438
+ # Options for the standard registration.
439
+ attr_accessor :standard
440
+ # Type of registration to be created in an EU country.
441
+ attr_accessor :type
442
+
443
+ def initialize(standard: nil, type: nil)
444
+ @standard = standard
445
+ @type = type
446
+ end
447
+ end
448
+
449
+ class Cz < ::Stripe::RequestParams
450
+ class Standard < ::Stripe::RequestParams
451
+ # Place of supply scheme used in an EU standard registration.
452
+ attr_accessor :place_of_supply_scheme
453
+
454
+ def initialize(place_of_supply_scheme: nil)
455
+ @place_of_supply_scheme = place_of_supply_scheme
456
+ end
457
+ end
458
+ # Options for the standard registration.
459
+ attr_accessor :standard
460
+ # Type of registration to be created in an EU country.
461
+ attr_accessor :type
462
+
463
+ def initialize(standard: nil, type: nil)
464
+ @standard = standard
465
+ @type = type
466
+ end
467
+ end
468
+
469
+ class De < ::Stripe::RequestParams
470
+ class Standard < ::Stripe::RequestParams
471
+ # Place of supply scheme used in an EU standard registration.
472
+ attr_accessor :place_of_supply_scheme
473
+
474
+ def initialize(place_of_supply_scheme: nil)
475
+ @place_of_supply_scheme = place_of_supply_scheme
476
+ end
477
+ end
478
+ # Options for the standard registration.
479
+ attr_accessor :standard
480
+ # Type of registration to be created in an EU country.
481
+ attr_accessor :type
482
+
483
+ def initialize(standard: nil, type: nil)
484
+ @standard = standard
485
+ @type = type
486
+ end
487
+ end
488
+
489
+ class Dk < ::Stripe::RequestParams
490
+ class Standard < ::Stripe::RequestParams
491
+ # Place of supply scheme used in an EU standard registration.
492
+ attr_accessor :place_of_supply_scheme
493
+
494
+ def initialize(place_of_supply_scheme: nil)
495
+ @place_of_supply_scheme = place_of_supply_scheme
496
+ end
497
+ end
498
+ # Options for the standard registration.
499
+ attr_accessor :standard
500
+ # Type of registration to be created in an EU country.
501
+ attr_accessor :type
502
+
503
+ def initialize(standard: nil, type: nil)
504
+ @standard = standard
505
+ @type = type
506
+ end
507
+ end
508
+
509
+ class Ec < ::Stripe::RequestParams
510
+ # Type of registration to be created in `country`.
511
+ attr_accessor :type
512
+
513
+ def initialize(type: nil)
514
+ @type = type
515
+ end
516
+ end
517
+
518
+ class Ee < ::Stripe::RequestParams
519
+ class Standard < ::Stripe::RequestParams
520
+ # Place of supply scheme used in an EU standard registration.
521
+ attr_accessor :place_of_supply_scheme
522
+
523
+ def initialize(place_of_supply_scheme: nil)
524
+ @place_of_supply_scheme = place_of_supply_scheme
525
+ end
526
+ end
527
+ # Options for the standard registration.
528
+ attr_accessor :standard
529
+ # Type of registration to be created in an EU country.
530
+ attr_accessor :type
531
+
532
+ def initialize(standard: nil, type: nil)
533
+ @standard = standard
534
+ @type = type
535
+ end
536
+ end
537
+
538
+ class Eg < ::Stripe::RequestParams
539
+ # Type of registration to be created in `country`.
540
+ attr_accessor :type
541
+
542
+ def initialize(type: nil)
543
+ @type = type
544
+ end
545
+ end
546
+
547
+ class Es < ::Stripe::RequestParams
548
+ class Standard < ::Stripe::RequestParams
549
+ # Place of supply scheme used in an EU standard registration.
550
+ attr_accessor :place_of_supply_scheme
551
+
552
+ def initialize(place_of_supply_scheme: nil)
553
+ @place_of_supply_scheme = place_of_supply_scheme
554
+ end
555
+ end
556
+ # Options for the standard registration.
557
+ attr_accessor :standard
558
+ # Type of registration to be created in an EU country.
559
+ attr_accessor :type
560
+
561
+ def initialize(standard: nil, type: nil)
562
+ @standard = standard
563
+ @type = type
564
+ end
565
+ end
566
+
567
+ class Et < ::Stripe::RequestParams
568
+ class Standard < ::Stripe::RequestParams
569
+ # Place of supply scheme used in an standard registration.
570
+ attr_accessor :place_of_supply_scheme
571
+
572
+ def initialize(place_of_supply_scheme: nil)
573
+ @place_of_supply_scheme = place_of_supply_scheme
574
+ end
575
+ end
576
+ # Options for the standard registration.
577
+ attr_accessor :standard
578
+ # Type of registration to be created in `country`.
579
+ attr_accessor :type
580
+
581
+ def initialize(standard: nil, type: nil)
582
+ @standard = standard
583
+ @type = type
584
+ end
585
+ end
586
+
587
+ class Fi < ::Stripe::RequestParams
588
+ class Standard < ::Stripe::RequestParams
589
+ # Place of supply scheme used in an EU standard registration.
590
+ attr_accessor :place_of_supply_scheme
591
+
592
+ def initialize(place_of_supply_scheme: nil)
593
+ @place_of_supply_scheme = place_of_supply_scheme
594
+ end
595
+ end
596
+ # Options for the standard registration.
597
+ attr_accessor :standard
598
+ # Type of registration to be created in an EU country.
599
+ attr_accessor :type
600
+
601
+ def initialize(standard: nil, type: nil)
602
+ @standard = standard
603
+ @type = type
604
+ end
605
+ end
606
+
607
+ class Fr < ::Stripe::RequestParams
608
+ class Standard < ::Stripe::RequestParams
609
+ # Place of supply scheme used in an EU standard registration.
610
+ attr_accessor :place_of_supply_scheme
611
+
612
+ def initialize(place_of_supply_scheme: nil)
613
+ @place_of_supply_scheme = place_of_supply_scheme
614
+ end
615
+ end
616
+ # Options for the standard registration.
617
+ attr_accessor :standard
618
+ # Type of registration to be created in an EU country.
619
+ attr_accessor :type
620
+
621
+ def initialize(standard: nil, type: nil)
622
+ @standard = standard
623
+ @type = type
624
+ end
625
+ end
626
+
627
+ class Gb < ::Stripe::RequestParams
628
+ class Standard < ::Stripe::RequestParams
629
+ # Place of supply scheme used in an standard registration.
630
+ attr_accessor :place_of_supply_scheme
631
+
632
+ def initialize(place_of_supply_scheme: nil)
633
+ @place_of_supply_scheme = place_of_supply_scheme
634
+ end
635
+ end
636
+ # Options for the standard registration.
637
+ attr_accessor :standard
638
+ # Type of registration to be created in `country`.
639
+ attr_accessor :type
640
+
641
+ def initialize(standard: nil, type: nil)
642
+ @standard = standard
643
+ @type = type
644
+ end
645
+ end
646
+
647
+ class Ge < ::Stripe::RequestParams
648
+ # Type of registration to be created in `country`.
649
+ attr_accessor :type
650
+
651
+ def initialize(type: nil)
652
+ @type = type
653
+ end
654
+ end
655
+
656
+ class Gn < ::Stripe::RequestParams
657
+ class Standard < ::Stripe::RequestParams
658
+ # Place of supply scheme used in an standard registration.
659
+ attr_accessor :place_of_supply_scheme
660
+
661
+ def initialize(place_of_supply_scheme: nil)
662
+ @place_of_supply_scheme = place_of_supply_scheme
663
+ end
664
+ end
665
+ # Options for the standard registration.
666
+ attr_accessor :standard
667
+ # Type of registration to be created in `country`.
668
+ attr_accessor :type
669
+
670
+ def initialize(standard: nil, type: nil)
671
+ @standard = standard
672
+ @type = type
673
+ end
674
+ end
675
+
676
+ class Gr < ::Stripe::RequestParams
677
+ class Standard < ::Stripe::RequestParams
678
+ # Place of supply scheme used in an EU standard registration.
679
+ attr_accessor :place_of_supply_scheme
680
+
681
+ def initialize(place_of_supply_scheme: nil)
682
+ @place_of_supply_scheme = place_of_supply_scheme
683
+ end
684
+ end
685
+ # Options for the standard registration.
686
+ attr_accessor :standard
687
+ # Type of registration to be created in an EU country.
688
+ attr_accessor :type
689
+
690
+ def initialize(standard: nil, type: nil)
691
+ @standard = standard
692
+ @type = type
693
+ end
694
+ end
695
+
696
+ class Hr < ::Stripe::RequestParams
697
+ class Standard < ::Stripe::RequestParams
698
+ # Place of supply scheme used in an EU standard registration.
699
+ attr_accessor :place_of_supply_scheme
700
+
701
+ def initialize(place_of_supply_scheme: nil)
702
+ @place_of_supply_scheme = place_of_supply_scheme
703
+ end
704
+ end
705
+ # Options for the standard registration.
706
+ attr_accessor :standard
707
+ # Type of registration to be created in an EU country.
708
+ attr_accessor :type
709
+
710
+ def initialize(standard: nil, type: nil)
711
+ @standard = standard
712
+ @type = type
713
+ end
714
+ end
715
+
716
+ class Hu < ::Stripe::RequestParams
717
+ class Standard < ::Stripe::RequestParams
718
+ # Place of supply scheme used in an EU standard registration.
719
+ attr_accessor :place_of_supply_scheme
720
+
721
+ def initialize(place_of_supply_scheme: nil)
722
+ @place_of_supply_scheme = place_of_supply_scheme
723
+ end
724
+ end
725
+ # Options for the standard registration.
726
+ attr_accessor :standard
727
+ # Type of registration to be created in an EU country.
728
+ attr_accessor :type
729
+
730
+ def initialize(standard: nil, type: nil)
731
+ @standard = standard
732
+ @type = type
733
+ end
734
+ end
735
+
736
+ class Id < ::Stripe::RequestParams
737
+ # Type of registration to be created in `country`.
738
+ attr_accessor :type
739
+
740
+ def initialize(type: nil)
741
+ @type = type
742
+ end
743
+ end
744
+
745
+ class Ie < ::Stripe::RequestParams
746
+ class Standard < ::Stripe::RequestParams
747
+ # Place of supply scheme used in an EU standard registration.
748
+ attr_accessor :place_of_supply_scheme
749
+
750
+ def initialize(place_of_supply_scheme: nil)
751
+ @place_of_supply_scheme = place_of_supply_scheme
752
+ end
753
+ end
754
+ # Options for the standard registration.
755
+ attr_accessor :standard
756
+ # Type of registration to be created in an EU country.
757
+ attr_accessor :type
758
+
759
+ def initialize(standard: nil, type: nil)
760
+ @standard = standard
761
+ @type = type
762
+ end
763
+ end
764
+
765
+ class In < ::Stripe::RequestParams
766
+ # Type of registration to be created in `country`.
767
+ attr_accessor :type
768
+
769
+ def initialize(type: nil)
770
+ @type = type
771
+ end
772
+ end
773
+
774
+ class Is < ::Stripe::RequestParams
775
+ class Standard < ::Stripe::RequestParams
776
+ # Place of supply scheme used in an standard registration.
777
+ attr_accessor :place_of_supply_scheme
778
+
779
+ def initialize(place_of_supply_scheme: nil)
780
+ @place_of_supply_scheme = place_of_supply_scheme
781
+ end
782
+ end
783
+ # Options for the standard registration.
784
+ attr_accessor :standard
785
+ # Type of registration to be created in `country`.
786
+ attr_accessor :type
787
+
788
+ def initialize(standard: nil, type: nil)
789
+ @standard = standard
790
+ @type = type
791
+ end
792
+ end
793
+
794
+ class It < ::Stripe::RequestParams
795
+ class Standard < ::Stripe::RequestParams
796
+ # Place of supply scheme used in an EU standard registration.
797
+ attr_accessor :place_of_supply_scheme
798
+
799
+ def initialize(place_of_supply_scheme: nil)
800
+ @place_of_supply_scheme = place_of_supply_scheme
801
+ end
802
+ end
803
+ # Options for the standard registration.
804
+ attr_accessor :standard
805
+ # Type of registration to be created in an EU country.
806
+ attr_accessor :type
807
+
808
+ def initialize(standard: nil, type: nil)
809
+ @standard = standard
810
+ @type = type
811
+ end
812
+ end
813
+
814
+ class Jp < ::Stripe::RequestParams
815
+ class Standard < ::Stripe::RequestParams
816
+ # Place of supply scheme used in an standard registration.
817
+ attr_accessor :place_of_supply_scheme
818
+
819
+ def initialize(place_of_supply_scheme: nil)
820
+ @place_of_supply_scheme = place_of_supply_scheme
821
+ end
822
+ end
823
+ # Options for the standard registration.
824
+ attr_accessor :standard
825
+ # Type of registration to be created in `country`.
826
+ attr_accessor :type
827
+
828
+ def initialize(standard: nil, type: nil)
829
+ @standard = standard
830
+ @type = type
831
+ end
832
+ end
833
+
834
+ class Ke < ::Stripe::RequestParams
835
+ # Type of registration to be created in `country`.
836
+ attr_accessor :type
837
+
838
+ def initialize(type: nil)
839
+ @type = type
840
+ end
841
+ end
842
+
843
+ class Kg < ::Stripe::RequestParams
844
+ # Type of registration to be created in `country`.
845
+ attr_accessor :type
846
+
847
+ def initialize(type: nil)
848
+ @type = type
849
+ end
850
+ end
851
+
852
+ class Kh < ::Stripe::RequestParams
853
+ # Type of registration to be created in `country`.
854
+ attr_accessor :type
855
+
856
+ def initialize(type: nil)
857
+ @type = type
858
+ end
859
+ end
860
+
861
+ class Kr < ::Stripe::RequestParams
862
+ # Type of registration to be created in `country`.
863
+ attr_accessor :type
864
+
865
+ def initialize(type: nil)
866
+ @type = type
867
+ end
868
+ end
869
+
870
+ class Kz < ::Stripe::RequestParams
871
+ # Type of registration to be created in `country`.
872
+ attr_accessor :type
873
+
874
+ def initialize(type: nil)
875
+ @type = type
876
+ end
877
+ end
878
+
879
+ class La < ::Stripe::RequestParams
880
+ # Type of registration to be created in `country`.
881
+ attr_accessor :type
882
+
883
+ def initialize(type: nil)
884
+ @type = type
885
+ end
886
+ end
887
+
888
+ class Lk < ::Stripe::RequestParams
889
+ # Type of registration to be created in `country`.
890
+ attr_accessor :type
891
+
892
+ def initialize(type: nil)
893
+ @type = type
894
+ end
895
+ end
896
+
897
+ class Lt < ::Stripe::RequestParams
898
+ class Standard < ::Stripe::RequestParams
899
+ # Place of supply scheme used in an EU standard registration.
900
+ attr_accessor :place_of_supply_scheme
901
+
902
+ def initialize(place_of_supply_scheme: nil)
903
+ @place_of_supply_scheme = place_of_supply_scheme
904
+ end
905
+ end
906
+ # Options for the standard registration.
907
+ attr_accessor :standard
908
+ # Type of registration to be created in an EU country.
909
+ attr_accessor :type
910
+
911
+ def initialize(standard: nil, type: nil)
912
+ @standard = standard
913
+ @type = type
914
+ end
915
+ end
916
+
917
+ class Lu < ::Stripe::RequestParams
918
+ class Standard < ::Stripe::RequestParams
919
+ # Place of supply scheme used in an EU standard registration.
920
+ attr_accessor :place_of_supply_scheme
921
+
922
+ def initialize(place_of_supply_scheme: nil)
923
+ @place_of_supply_scheme = place_of_supply_scheme
924
+ end
925
+ end
926
+ # Options for the standard registration.
927
+ attr_accessor :standard
928
+ # Type of registration to be created in an EU country.
929
+ attr_accessor :type
930
+
931
+ def initialize(standard: nil, type: nil)
932
+ @standard = standard
933
+ @type = type
934
+ end
935
+ end
936
+
937
+ class Lv < ::Stripe::RequestParams
938
+ class Standard < ::Stripe::RequestParams
939
+ # Place of supply scheme used in an EU standard registration.
940
+ attr_accessor :place_of_supply_scheme
941
+
942
+ def initialize(place_of_supply_scheme: nil)
943
+ @place_of_supply_scheme = place_of_supply_scheme
944
+ end
945
+ end
946
+ # Options for the standard registration.
947
+ attr_accessor :standard
948
+ # Type of registration to be created in an EU country.
949
+ attr_accessor :type
950
+
951
+ def initialize(standard: nil, type: nil)
952
+ @standard = standard
953
+ @type = type
954
+ end
955
+ end
956
+
957
+ class Ma < ::Stripe::RequestParams
958
+ # Type of registration to be created in `country`.
959
+ attr_accessor :type
960
+
961
+ def initialize(type: nil)
962
+ @type = type
963
+ end
964
+ end
965
+
966
+ class Md < ::Stripe::RequestParams
967
+ # Type of registration to be created in `country`.
968
+ attr_accessor :type
969
+
970
+ def initialize(type: nil)
971
+ @type = type
972
+ end
973
+ end
974
+
975
+ class Me < ::Stripe::RequestParams
976
+ class Standard < ::Stripe::RequestParams
977
+ # Place of supply scheme used in an standard registration.
978
+ attr_accessor :place_of_supply_scheme
979
+
980
+ def initialize(place_of_supply_scheme: nil)
981
+ @place_of_supply_scheme = place_of_supply_scheme
982
+ end
983
+ end
984
+ # Options for the standard registration.
985
+ attr_accessor :standard
986
+ # Type of registration to be created in `country`.
987
+ attr_accessor :type
988
+
989
+ def initialize(standard: nil, type: nil)
990
+ @standard = standard
991
+ @type = type
992
+ end
993
+ end
994
+
995
+ class Mk < ::Stripe::RequestParams
996
+ class Standard < ::Stripe::RequestParams
997
+ # Place of supply scheme used in an standard registration.
998
+ attr_accessor :place_of_supply_scheme
999
+
1000
+ def initialize(place_of_supply_scheme: nil)
1001
+ @place_of_supply_scheme = place_of_supply_scheme
1002
+ end
1003
+ end
1004
+ # Options for the standard registration.
1005
+ attr_accessor :standard
1006
+ # Type of registration to be created in `country`.
1007
+ attr_accessor :type
1008
+
1009
+ def initialize(standard: nil, type: nil)
1010
+ @standard = standard
1011
+ @type = type
1012
+ end
1013
+ end
1014
+
1015
+ class Mr < ::Stripe::RequestParams
1016
+ class Standard < ::Stripe::RequestParams
1017
+ # Place of supply scheme used in an standard registration.
1018
+ attr_accessor :place_of_supply_scheme
1019
+
1020
+ def initialize(place_of_supply_scheme: nil)
1021
+ @place_of_supply_scheme = place_of_supply_scheme
1022
+ end
1023
+ end
1024
+ # Options for the standard registration.
1025
+ attr_accessor :standard
1026
+ # Type of registration to be created in `country`.
1027
+ attr_accessor :type
1028
+
1029
+ def initialize(standard: nil, type: nil)
1030
+ @standard = standard
1031
+ @type = type
1032
+ end
1033
+ end
1034
+
1035
+ class Mt < ::Stripe::RequestParams
1036
+ class Standard < ::Stripe::RequestParams
1037
+ # Place of supply scheme used in an EU standard registration.
1038
+ attr_accessor :place_of_supply_scheme
1039
+
1040
+ def initialize(place_of_supply_scheme: nil)
1041
+ @place_of_supply_scheme = place_of_supply_scheme
1042
+ end
1043
+ end
1044
+ # Options for the standard registration.
1045
+ attr_accessor :standard
1046
+ # Type of registration to be created in an EU country.
1047
+ attr_accessor :type
1048
+
1049
+ def initialize(standard: nil, type: nil)
1050
+ @standard = standard
1051
+ @type = type
1052
+ end
1053
+ end
1054
+
1055
+ class Mx < ::Stripe::RequestParams
1056
+ # Type of registration to be created in `country`.
1057
+ attr_accessor :type
1058
+
1059
+ def initialize(type: nil)
1060
+ @type = type
1061
+ end
1062
+ end
1063
+
1064
+ class My < ::Stripe::RequestParams
1065
+ # Type of registration to be created in `country`.
1066
+ attr_accessor :type
1067
+
1068
+ def initialize(type: nil)
1069
+ @type = type
1070
+ end
1071
+ end
1072
+
1073
+ class Ng < ::Stripe::RequestParams
1074
+ # Type of registration to be created in `country`.
1075
+ attr_accessor :type
1076
+
1077
+ def initialize(type: nil)
1078
+ @type = type
1079
+ end
1080
+ end
1081
+
1082
+ class Nl < ::Stripe::RequestParams
1083
+ class Standard < ::Stripe::RequestParams
1084
+ # Place of supply scheme used in an EU standard registration.
1085
+ attr_accessor :place_of_supply_scheme
1086
+
1087
+ def initialize(place_of_supply_scheme: nil)
1088
+ @place_of_supply_scheme = place_of_supply_scheme
1089
+ end
1090
+ end
1091
+ # Options for the standard registration.
1092
+ attr_accessor :standard
1093
+ # Type of registration to be created in an EU country.
1094
+ attr_accessor :type
1095
+
1096
+ def initialize(standard: nil, type: nil)
1097
+ @standard = standard
1098
+ @type = type
1099
+ end
1100
+ end
1101
+
1102
+ class No < ::Stripe::RequestParams
1103
+ class Standard < ::Stripe::RequestParams
1104
+ # Place of supply scheme used in an standard registration.
1105
+ attr_accessor :place_of_supply_scheme
1106
+
1107
+ def initialize(place_of_supply_scheme: nil)
1108
+ @place_of_supply_scheme = place_of_supply_scheme
1109
+ end
1110
+ end
1111
+ # Options for the standard registration.
1112
+ attr_accessor :standard
1113
+ # Type of registration to be created in `country`.
1114
+ attr_accessor :type
1115
+
1116
+ def initialize(standard: nil, type: nil)
1117
+ @standard = standard
1118
+ @type = type
1119
+ end
1120
+ end
1121
+
1122
+ class Np < ::Stripe::RequestParams
1123
+ # Type of registration to be created in `country`.
1124
+ attr_accessor :type
1125
+
1126
+ def initialize(type: nil)
1127
+ @type = type
1128
+ end
1129
+ end
1130
+
1131
+ class Nz < ::Stripe::RequestParams
1132
+ class Standard < ::Stripe::RequestParams
1133
+ # Place of supply scheme used in an standard registration.
1134
+ attr_accessor :place_of_supply_scheme
1135
+
1136
+ def initialize(place_of_supply_scheme: nil)
1137
+ @place_of_supply_scheme = place_of_supply_scheme
1138
+ end
1139
+ end
1140
+ # Options for the standard registration.
1141
+ attr_accessor :standard
1142
+ # Type of registration to be created in `country`.
1143
+ attr_accessor :type
1144
+
1145
+ def initialize(standard: nil, type: nil)
1146
+ @standard = standard
1147
+ @type = type
1148
+ end
1149
+ end
1150
+
1151
+ class Om < ::Stripe::RequestParams
1152
+ class Standard < ::Stripe::RequestParams
1153
+ # Place of supply scheme used in an standard registration.
1154
+ attr_accessor :place_of_supply_scheme
1155
+
1156
+ def initialize(place_of_supply_scheme: nil)
1157
+ @place_of_supply_scheme = place_of_supply_scheme
1158
+ end
1159
+ end
1160
+ # Options for the standard registration.
1161
+ attr_accessor :standard
1162
+ # Type of registration to be created in `country`.
1163
+ attr_accessor :type
1164
+
1165
+ def initialize(standard: nil, type: nil)
1166
+ @standard = standard
1167
+ @type = type
1168
+ end
1169
+ end
1170
+
1171
+ class Pe < ::Stripe::RequestParams
1172
+ # Type of registration to be created in `country`.
1173
+ attr_accessor :type
1174
+
1175
+ def initialize(type: nil)
1176
+ @type = type
1177
+ end
1178
+ end
1179
+
1180
+ class Ph < ::Stripe::RequestParams
1181
+ # Type of registration to be created in `country`.
1182
+ attr_accessor :type
1183
+
1184
+ def initialize(type: nil)
1185
+ @type = type
1186
+ end
1187
+ end
1188
+
1189
+ class Pl < ::Stripe::RequestParams
1190
+ class Standard < ::Stripe::RequestParams
1191
+ # Place of supply scheme used in an EU standard registration.
1192
+ attr_accessor :place_of_supply_scheme
1193
+
1194
+ def initialize(place_of_supply_scheme: nil)
1195
+ @place_of_supply_scheme = place_of_supply_scheme
1196
+ end
1197
+ end
1198
+ # Options for the standard registration.
1199
+ attr_accessor :standard
1200
+ # Type of registration to be created in an EU country.
1201
+ attr_accessor :type
1202
+
1203
+ def initialize(standard: nil, type: nil)
1204
+ @standard = standard
1205
+ @type = type
1206
+ end
1207
+ end
1208
+
1209
+ class Pt < ::Stripe::RequestParams
1210
+ class Standard < ::Stripe::RequestParams
1211
+ # Place of supply scheme used in an EU standard registration.
1212
+ attr_accessor :place_of_supply_scheme
1213
+
1214
+ def initialize(place_of_supply_scheme: nil)
1215
+ @place_of_supply_scheme = place_of_supply_scheme
1216
+ end
1217
+ end
1218
+ # Options for the standard registration.
1219
+ attr_accessor :standard
1220
+ # Type of registration to be created in an EU country.
1221
+ attr_accessor :type
1222
+
1223
+ def initialize(standard: nil, type: nil)
1224
+ @standard = standard
1225
+ @type = type
1226
+ end
1227
+ end
1228
+
1229
+ class Ro < ::Stripe::RequestParams
1230
+ class Standard < ::Stripe::RequestParams
1231
+ # Place of supply scheme used in an EU standard registration.
1232
+ attr_accessor :place_of_supply_scheme
1233
+
1234
+ def initialize(place_of_supply_scheme: nil)
1235
+ @place_of_supply_scheme = place_of_supply_scheme
1236
+ end
1237
+ end
1238
+ # Options for the standard registration.
1239
+ attr_accessor :standard
1240
+ # Type of registration to be created in an EU country.
1241
+ attr_accessor :type
1242
+
1243
+ def initialize(standard: nil, type: nil)
1244
+ @standard = standard
1245
+ @type = type
1246
+ end
1247
+ end
1248
+
1249
+ class Rs < ::Stripe::RequestParams
1250
+ class Standard < ::Stripe::RequestParams
1251
+ # Place of supply scheme used in an standard registration.
1252
+ attr_accessor :place_of_supply_scheme
1253
+
1254
+ def initialize(place_of_supply_scheme: nil)
1255
+ @place_of_supply_scheme = place_of_supply_scheme
1256
+ end
1257
+ end
1258
+ # Options for the standard registration.
1259
+ attr_accessor :standard
1260
+ # Type of registration to be created in `country`.
1261
+ attr_accessor :type
1262
+
1263
+ def initialize(standard: nil, type: nil)
1264
+ @standard = standard
1265
+ @type = type
1266
+ end
1267
+ end
1268
+
1269
+ class Ru < ::Stripe::RequestParams
1270
+ # Type of registration to be created in `country`.
1271
+ attr_accessor :type
1272
+
1273
+ def initialize(type: nil)
1274
+ @type = type
1275
+ end
1276
+ end
1277
+
1278
+ class Sa < ::Stripe::RequestParams
1279
+ # Type of registration to be created in `country`.
1280
+ attr_accessor :type
1281
+
1282
+ def initialize(type: nil)
1283
+ @type = type
1284
+ end
1285
+ end
1286
+
1287
+ class Se < ::Stripe::RequestParams
1288
+ class Standard < ::Stripe::RequestParams
1289
+ # Place of supply scheme used in an EU standard registration.
1290
+ attr_accessor :place_of_supply_scheme
1291
+
1292
+ def initialize(place_of_supply_scheme: nil)
1293
+ @place_of_supply_scheme = place_of_supply_scheme
1294
+ end
1295
+ end
1296
+ # Options for the standard registration.
1297
+ attr_accessor :standard
1298
+ # Type of registration to be created in an EU country.
1299
+ attr_accessor :type
1300
+
1301
+ def initialize(standard: nil, type: nil)
1302
+ @standard = standard
1303
+ @type = type
1304
+ end
1305
+ end
1306
+
1307
+ class Sg < ::Stripe::RequestParams
1308
+ class Standard < ::Stripe::RequestParams
1309
+ # Place of supply scheme used in an standard registration.
1310
+ attr_accessor :place_of_supply_scheme
1311
+
1312
+ def initialize(place_of_supply_scheme: nil)
1313
+ @place_of_supply_scheme = place_of_supply_scheme
1314
+ end
1315
+ end
1316
+ # Options for the standard registration.
1317
+ attr_accessor :standard
1318
+ # Type of registration to be created in `country`.
1319
+ attr_accessor :type
1320
+
1321
+ def initialize(standard: nil, type: nil)
1322
+ @standard = standard
1323
+ @type = type
1324
+ end
1325
+ end
1326
+
1327
+ class Si < ::Stripe::RequestParams
1328
+ class Standard < ::Stripe::RequestParams
1329
+ # Place of supply scheme used in an EU standard registration.
1330
+ attr_accessor :place_of_supply_scheme
1331
+
1332
+ def initialize(place_of_supply_scheme: nil)
1333
+ @place_of_supply_scheme = place_of_supply_scheme
1334
+ end
1335
+ end
1336
+ # Options for the standard registration.
1337
+ attr_accessor :standard
1338
+ # Type of registration to be created in an EU country.
1339
+ attr_accessor :type
1340
+
1341
+ def initialize(standard: nil, type: nil)
1342
+ @standard = standard
1343
+ @type = type
1344
+ end
1345
+ end
1346
+
1347
+ class Sk < ::Stripe::RequestParams
1348
+ class Standard < ::Stripe::RequestParams
1349
+ # Place of supply scheme used in an EU standard registration.
1350
+ attr_accessor :place_of_supply_scheme
1351
+
1352
+ def initialize(place_of_supply_scheme: nil)
1353
+ @place_of_supply_scheme = place_of_supply_scheme
1354
+ end
1355
+ end
1356
+ # Options for the standard registration.
1357
+ attr_accessor :standard
1358
+ # Type of registration to be created in an EU country.
1359
+ attr_accessor :type
1360
+
1361
+ def initialize(standard: nil, type: nil)
1362
+ @standard = standard
1363
+ @type = type
1364
+ end
1365
+ end
1366
+
1367
+ class Sn < ::Stripe::RequestParams
1368
+ # Type of registration to be created in `country`.
1369
+ attr_accessor :type
1370
+
1371
+ def initialize(type: nil)
1372
+ @type = type
1373
+ end
1374
+ end
1375
+
1376
+ class Sr < ::Stripe::RequestParams
1377
+ class Standard < ::Stripe::RequestParams
1378
+ # Place of supply scheme used in an standard registration.
1379
+ attr_accessor :place_of_supply_scheme
1380
+
1381
+ def initialize(place_of_supply_scheme: nil)
1382
+ @place_of_supply_scheme = place_of_supply_scheme
1383
+ end
1384
+ end
1385
+ # Options for the standard registration.
1386
+ attr_accessor :standard
1387
+ # Type of registration to be created in `country`.
1388
+ attr_accessor :type
1389
+
1390
+ def initialize(standard: nil, type: nil)
1391
+ @standard = standard
1392
+ @type = type
1393
+ end
1394
+ end
1395
+
1396
+ class Th < ::Stripe::RequestParams
1397
+ # Type of registration to be created in `country`.
1398
+ attr_accessor :type
1399
+
1400
+ def initialize(type: nil)
1401
+ @type = type
1402
+ end
1403
+ end
1404
+
1405
+ class Tj < ::Stripe::RequestParams
1406
+ # Type of registration to be created in `country`.
1407
+ attr_accessor :type
1408
+
1409
+ def initialize(type: nil)
1410
+ @type = type
1411
+ end
1412
+ end
1413
+
1414
+ class Tr < ::Stripe::RequestParams
1415
+ # Type of registration to be created in `country`.
1416
+ attr_accessor :type
1417
+
1418
+ def initialize(type: nil)
1419
+ @type = type
1420
+ end
1421
+ end
1422
+
1423
+ class Tw < ::Stripe::RequestParams
1424
+ # Type of registration to be created in `country`.
1425
+ attr_accessor :type
1426
+
1427
+ def initialize(type: nil)
1428
+ @type = type
1429
+ end
1430
+ end
1431
+
1432
+ class Tz < ::Stripe::RequestParams
1433
+ # Type of registration to be created in `country`.
1434
+ attr_accessor :type
1435
+
1436
+ def initialize(type: nil)
1437
+ @type = type
1438
+ end
1439
+ end
1440
+
1441
+ class Ua < ::Stripe::RequestParams
1442
+ # Type of registration to be created in `country`.
1443
+ attr_accessor :type
1444
+
1445
+ def initialize(type: nil)
1446
+ @type = type
1447
+ end
1448
+ end
1449
+
1450
+ class Ug < ::Stripe::RequestParams
1451
+ # Type of registration to be created in `country`.
1452
+ attr_accessor :type
1453
+
1454
+ def initialize(type: nil)
1455
+ @type = type
1456
+ end
1457
+ end
1458
+
1459
+ class Us < ::Stripe::RequestParams
1460
+ class LocalAmusementTax < ::Stripe::RequestParams
1461
+ # A jurisdiction code representing the [local jurisdiction](/tax/registering?type=amusement_tax#registration-types).
1462
+ attr_accessor :jurisdiction
1463
+
1464
+ def initialize(jurisdiction: nil)
1465
+ @jurisdiction = jurisdiction
1466
+ end
1467
+ end
1468
+
1469
+ class LocalLeaseTax < ::Stripe::RequestParams
1470
+ # A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago).
1471
+ attr_accessor :jurisdiction
1472
+
1473
+ def initialize(jurisdiction: nil)
1474
+ @jurisdiction = jurisdiction
1475
+ end
1476
+ end
1477
+
1478
+ class StateSalesTax < ::Stripe::RequestParams
1479
+ class Election < ::Stripe::RequestParams
1480
+ # 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).
1481
+ attr_accessor :jurisdiction
1482
+ # The type of the election for the state sales tax registration.
1483
+ attr_accessor :type
1484
+
1485
+ def initialize(jurisdiction: nil, type: nil)
1486
+ @jurisdiction = jurisdiction
1487
+ @type = type
1488
+ end
1489
+ end
1490
+ # Elections for the state sales tax registration.
1491
+ attr_accessor :elections
1492
+
1493
+ def initialize(elections: nil)
1494
+ @elections = elections
1495
+ end
1496
+ end
1497
+ # Options for the local amusement tax registration.
1498
+ attr_accessor :local_amusement_tax
1499
+ # Options for the local lease tax registration.
1500
+ attr_accessor :local_lease_tax
1501
+ # Two-letter US state code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
1502
+ attr_accessor :state
1503
+ # Options for the state sales tax registration.
1504
+ attr_accessor :state_sales_tax
1505
+ # Type of registration to be created in the US.
1506
+ attr_accessor :type
1507
+
1508
+ def initialize(
1509
+ local_amusement_tax: nil,
1510
+ local_lease_tax: nil,
1511
+ state: nil,
1512
+ state_sales_tax: nil,
1513
+ type: nil
1514
+ )
1515
+ @local_amusement_tax = local_amusement_tax
1516
+ @local_lease_tax = local_lease_tax
1517
+ @state = state
1518
+ @state_sales_tax = state_sales_tax
1519
+ @type = type
1520
+ end
1521
+ end
1522
+
1523
+ class Uy < ::Stripe::RequestParams
1524
+ class Standard < ::Stripe::RequestParams
1525
+ # Place of supply scheme used in an standard registration.
1526
+ attr_accessor :place_of_supply_scheme
1527
+
1528
+ def initialize(place_of_supply_scheme: nil)
1529
+ @place_of_supply_scheme = place_of_supply_scheme
1530
+ end
1531
+ end
1532
+ # Options for the standard registration.
1533
+ attr_accessor :standard
1534
+ # Type of registration to be created in `country`.
1535
+ attr_accessor :type
1536
+
1537
+ def initialize(standard: nil, type: nil)
1538
+ @standard = standard
1539
+ @type = type
1540
+ end
1541
+ end
1542
+
1543
+ class Uz < ::Stripe::RequestParams
1544
+ # Type of registration to be created in `country`.
1545
+ attr_accessor :type
1546
+
1547
+ def initialize(type: nil)
1548
+ @type = type
1549
+ end
1550
+ end
1551
+
1552
+ class Vn < ::Stripe::RequestParams
1553
+ # Type of registration to be created in `country`.
1554
+ attr_accessor :type
1555
+
1556
+ def initialize(type: nil)
1557
+ @type = type
1558
+ end
1559
+ end
1560
+
1561
+ class Za < ::Stripe::RequestParams
1562
+ class Standard < ::Stripe::RequestParams
1563
+ # Place of supply scheme used in an standard registration.
1564
+ attr_accessor :place_of_supply_scheme
1565
+
1566
+ def initialize(place_of_supply_scheme: nil)
1567
+ @place_of_supply_scheme = place_of_supply_scheme
1568
+ end
1569
+ end
1570
+ # Options for the standard registration.
1571
+ attr_accessor :standard
1572
+ # Type of registration to be created in `country`.
1573
+ attr_accessor :type
1574
+
1575
+ def initialize(standard: nil, type: nil)
1576
+ @standard = standard
1577
+ @type = type
1578
+ end
1579
+ end
1580
+
1581
+ class Zm < ::Stripe::RequestParams
1582
+ # Type of registration to be created in `country`.
1583
+ attr_accessor :type
1584
+
1585
+ def initialize(type: nil)
1586
+ @type = type
1587
+ end
1588
+ end
1589
+
1590
+ class Zw < ::Stripe::RequestParams
1591
+ class Standard < ::Stripe::RequestParams
1592
+ # Place of supply scheme used in an standard registration.
1593
+ attr_accessor :place_of_supply_scheme
1594
+
1595
+ def initialize(place_of_supply_scheme: nil)
1596
+ @place_of_supply_scheme = place_of_supply_scheme
1597
+ end
1598
+ end
1599
+ # Options for the standard registration.
1600
+ attr_accessor :standard
1601
+ # Type of registration to be created in `country`.
1602
+ attr_accessor :type
1603
+
1604
+ def initialize(standard: nil, type: nil)
1605
+ @standard = standard
1606
+ @type = type
1607
+ end
1608
+ end
1609
+ # Options for the registration in AE.
1610
+ attr_accessor :ae
1611
+ # Options for the registration in AL.
1612
+ attr_accessor :al
1613
+ # Options for the registration in AM.
1614
+ attr_accessor :am
1615
+ # Options for the registration in AO.
1616
+ attr_accessor :ao
1617
+ # Options for the registration in AT.
1618
+ attr_accessor :at
1619
+ # Options for the registration in AU.
1620
+ attr_accessor :au
1621
+ # Options for the registration in AW.
1622
+ attr_accessor :aw
1623
+ # Options for the registration in AZ.
1624
+ attr_accessor :az
1625
+ # Options for the registration in BA.
1626
+ attr_accessor :ba
1627
+ # Options for the registration in BB.
1628
+ attr_accessor :bb
1629
+ # Options for the registration in BD.
1630
+ attr_accessor :bd
1631
+ # Options for the registration in BE.
1632
+ attr_accessor :be
1633
+ # Options for the registration in BF.
1634
+ attr_accessor :bf
1635
+ # Options for the registration in BG.
1636
+ attr_accessor :bg
1637
+ # Options for the registration in BH.
1638
+ attr_accessor :bh
1639
+ # Options for the registration in BJ.
1640
+ attr_accessor :bj
1641
+ # Options for the registration in BS.
1642
+ attr_accessor :bs
1643
+ # Options for the registration in BY.
1644
+ attr_accessor :by
1645
+ # Options for the registration in CA.
1646
+ attr_accessor :ca
1647
+ # Options for the registration in CD.
1648
+ attr_accessor :cd
1649
+ # Options for the registration in CH.
1650
+ attr_accessor :ch
1651
+ # Options for the registration in CL.
1652
+ attr_accessor :cl
1653
+ # Options for the registration in CM.
1654
+ attr_accessor :cm
1655
+ # Options for the registration in CO.
1656
+ attr_accessor :co
1657
+ # Options for the registration in CR.
1658
+ attr_accessor :cr
1659
+ # Options for the registration in CV.
1660
+ attr_accessor :cv
1661
+ # Options for the registration in CY.
1662
+ attr_accessor :cy
1663
+ # Options for the registration in CZ.
1664
+ attr_accessor :cz
1665
+ # Options for the registration in DE.
1666
+ attr_accessor :de
1667
+ # Options for the registration in DK.
1668
+ attr_accessor :dk
1669
+ # Options for the registration in EC.
1670
+ attr_accessor :ec
1671
+ # Options for the registration in EE.
1672
+ attr_accessor :ee
1673
+ # Options for the registration in EG.
1674
+ attr_accessor :eg
1675
+ # Options for the registration in ES.
1676
+ attr_accessor :es
1677
+ # Options for the registration in ET.
1678
+ attr_accessor :et
1679
+ # Options for the registration in FI.
1680
+ attr_accessor :fi
1681
+ # Options for the registration in FR.
1682
+ attr_accessor :fr
1683
+ # Options for the registration in GB.
1684
+ attr_accessor :gb
1685
+ # Options for the registration in GE.
1686
+ attr_accessor :ge
1687
+ # Options for the registration in GN.
1688
+ attr_accessor :gn
1689
+ # Options for the registration in GR.
1690
+ attr_accessor :gr
1691
+ # Options for the registration in HR.
1692
+ attr_accessor :hr
1693
+ # Options for the registration in HU.
1694
+ attr_accessor :hu
1695
+ # Options for the registration in ID.
1696
+ attr_accessor :id
1697
+ # Options for the registration in IE.
1698
+ attr_accessor :ie
1699
+ # Options for the registration in IN.
1700
+ attr_accessor :in
1701
+ # Options for the registration in IS.
1702
+ attr_accessor :is
1703
+ # Options for the registration in IT.
1704
+ attr_accessor :it
1705
+ # Options for the registration in JP.
1706
+ attr_accessor :jp
1707
+ # Options for the registration in KE.
1708
+ attr_accessor :ke
1709
+ # Options for the registration in KG.
1710
+ attr_accessor :kg
1711
+ # Options for the registration in KH.
1712
+ attr_accessor :kh
1713
+ # Options for the registration in KR.
1714
+ attr_accessor :kr
1715
+ # Options for the registration in KZ.
1716
+ attr_accessor :kz
1717
+ # Options for the registration in LA.
1718
+ attr_accessor :la
1719
+ # Options for the registration in LK.
1720
+ attr_accessor :lk
1721
+ # Options for the registration in LT.
1722
+ attr_accessor :lt
1723
+ # Options for the registration in LU.
1724
+ attr_accessor :lu
1725
+ # Options for the registration in LV.
1726
+ attr_accessor :lv
1727
+ # Options for the registration in MA.
1728
+ attr_accessor :ma
1729
+ # Options for the registration in MD.
1730
+ attr_accessor :md
1731
+ # Options for the registration in ME.
1732
+ attr_accessor :me
1733
+ # Options for the registration in MK.
1734
+ attr_accessor :mk
1735
+ # Options for the registration in MR.
1736
+ attr_accessor :mr
1737
+ # Options for the registration in MT.
1738
+ attr_accessor :mt
1739
+ # Options for the registration in MX.
1740
+ attr_accessor :mx
1741
+ # Options for the registration in MY.
1742
+ attr_accessor :my
1743
+ # Options for the registration in NG.
1744
+ attr_accessor :ng
1745
+ # Options for the registration in NL.
1746
+ attr_accessor :nl
1747
+ # Options for the registration in NO.
1748
+ attr_accessor :no
1749
+ # Options for the registration in NP.
1750
+ attr_accessor :np
1751
+ # Options for the registration in NZ.
1752
+ attr_accessor :nz
1753
+ # Options for the registration in OM.
1754
+ attr_accessor :om
1755
+ # Options for the registration in PE.
1756
+ attr_accessor :pe
1757
+ # Options for the registration in PH.
1758
+ attr_accessor :ph
1759
+ # Options for the registration in PL.
1760
+ attr_accessor :pl
1761
+ # Options for the registration in PT.
1762
+ attr_accessor :pt
1763
+ # Options for the registration in RO.
1764
+ attr_accessor :ro
1765
+ # Options for the registration in RS.
1766
+ attr_accessor :rs
1767
+ # Options for the registration in RU.
1768
+ attr_accessor :ru
1769
+ # Options for the registration in SA.
1770
+ attr_accessor :sa
1771
+ # Options for the registration in SE.
1772
+ attr_accessor :se
1773
+ # Options for the registration in SG.
1774
+ attr_accessor :sg
1775
+ # Options for the registration in SI.
1776
+ attr_accessor :si
1777
+ # Options for the registration in SK.
1778
+ attr_accessor :sk
1779
+ # Options for the registration in SN.
1780
+ attr_accessor :sn
1781
+ # Options for the registration in SR.
1782
+ attr_accessor :sr
1783
+ # Options for the registration in TH.
1784
+ attr_accessor :th
1785
+ # Options for the registration in TJ.
1786
+ attr_accessor :tj
1787
+ # Options for the registration in TR.
1788
+ attr_accessor :tr
1789
+ # Options for the registration in TW.
1790
+ attr_accessor :tw
1791
+ # Options for the registration in TZ.
1792
+ attr_accessor :tz
1793
+ # Options for the registration in UA.
1794
+ attr_accessor :ua
1795
+ # Options for the registration in UG.
1796
+ attr_accessor :ug
1797
+ # Options for the registration in US.
1798
+ attr_accessor :us
1799
+ # Options for the registration in UY.
1800
+ attr_accessor :uy
1801
+ # Options for the registration in UZ.
1802
+ attr_accessor :uz
1803
+ # Options for the registration in VN.
1804
+ attr_accessor :vn
1805
+ # Options for the registration in ZA.
1806
+ attr_accessor :za
1807
+ # Options for the registration in ZM.
1808
+ attr_accessor :zm
1809
+ # Options for the registration in ZW.
1810
+ attr_accessor :zw
1811
+
1812
+ def initialize(
1813
+ ae: nil,
1814
+ al: nil,
1815
+ am: nil,
1816
+ ao: nil,
1817
+ at: nil,
1818
+ au: nil,
1819
+ aw: nil,
1820
+ az: nil,
1821
+ ba: nil,
1822
+ bb: nil,
1823
+ bd: nil,
1824
+ be: nil,
1825
+ bf: nil,
1826
+ bg: nil,
1827
+ bh: nil,
1828
+ bj: nil,
1829
+ bs: nil,
1830
+ by: nil,
1831
+ ca: nil,
1832
+ cd: nil,
1833
+ ch: nil,
1834
+ cl: nil,
1835
+ cm: nil,
1836
+ co: nil,
1837
+ cr: nil,
1838
+ cv: nil,
1839
+ cy: nil,
1840
+ cz: nil,
1841
+ de: nil,
1842
+ dk: nil,
1843
+ ec: nil,
1844
+ ee: nil,
1845
+ eg: nil,
1846
+ es: nil,
1847
+ et: nil,
1848
+ fi: nil,
1849
+ fr: nil,
1850
+ gb: nil,
1851
+ ge: nil,
1852
+ gn: nil,
1853
+ gr: nil,
1854
+ hr: nil,
1855
+ hu: nil,
1856
+ id: nil,
1857
+ ie: nil,
1858
+ in_: nil,
1859
+ is: nil,
1860
+ it: nil,
1861
+ jp: nil,
1862
+ ke: nil,
1863
+ kg: nil,
1864
+ kh: nil,
1865
+ kr: nil,
1866
+ kz: nil,
1867
+ la: nil,
1868
+ lk: nil,
1869
+ lt: nil,
1870
+ lu: nil,
1871
+ lv: nil,
1872
+ ma: nil,
1873
+ md: nil,
1874
+ me: nil,
1875
+ mk: nil,
1876
+ mr: nil,
1877
+ mt: nil,
1878
+ mx: nil,
1879
+ my: nil,
1880
+ ng: nil,
1881
+ nl: nil,
1882
+ no: nil,
1883
+ np: nil,
1884
+ nz: nil,
1885
+ om: nil,
1886
+ pe: nil,
1887
+ ph: nil,
1888
+ pl: nil,
1889
+ pt: nil,
1890
+ ro: nil,
1891
+ rs: nil,
1892
+ ru: nil,
1893
+ sa: nil,
1894
+ se: nil,
1895
+ sg: nil,
1896
+ si: nil,
1897
+ sk: nil,
1898
+ sn: nil,
1899
+ sr: nil,
1900
+ th: nil,
1901
+ tj: nil,
1902
+ tr: nil,
1903
+ tw: nil,
1904
+ tz: nil,
1905
+ ua: nil,
1906
+ ug: nil,
1907
+ us: nil,
1908
+ uy: nil,
1909
+ uz: nil,
1910
+ vn: nil,
1911
+ za: nil,
1912
+ zm: nil,
1913
+ zw: nil
1914
+ )
1915
+ @ae = ae
1916
+ @al = al
1917
+ @am = am
1918
+ @ao = ao
1919
+ @at = at
1920
+ @au = au
1921
+ @aw = aw
1922
+ @az = az
1923
+ @ba = ba
1924
+ @bb = bb
1925
+ @bd = bd
1926
+ @be = be
1927
+ @bf = bf
1928
+ @bg = bg
1929
+ @bh = bh
1930
+ @bj = bj
1931
+ @bs = bs
1932
+ @by = by
1933
+ @ca = ca
1934
+ @cd = cd
1935
+ @ch = ch
1936
+ @cl = cl
1937
+ @cm = cm
1938
+ @co = co
1939
+ @cr = cr
1940
+ @cv = cv
1941
+ @cy = cy
1942
+ @cz = cz
1943
+ @de = de
1944
+ @dk = dk
1945
+ @ec = ec
1946
+ @ee = ee
1947
+ @eg = eg
1948
+ @es = es
1949
+ @et = et
1950
+ @fi = fi
1951
+ @fr = fr
1952
+ @gb = gb
1953
+ @ge = ge
1954
+ @gn = gn
1955
+ @gr = gr
1956
+ @hr = hr
1957
+ @hu = hu
1958
+ @id = id
1959
+ @ie = ie
1960
+ @in = in_
1961
+ @is = is
1962
+ @it = it
1963
+ @jp = jp
1964
+ @ke = ke
1965
+ @kg = kg
1966
+ @kh = kh
1967
+ @kr = kr
1968
+ @kz = kz
1969
+ @la = la
1970
+ @lk = lk
1971
+ @lt = lt
1972
+ @lu = lu
1973
+ @lv = lv
1974
+ @ma = ma
1975
+ @md = md
1976
+ @me = me
1977
+ @mk = mk
1978
+ @mr = mr
1979
+ @mt = mt
1980
+ @mx = mx
1981
+ @my = my
1982
+ @ng = ng
1983
+ @nl = nl
1984
+ @no = no
1985
+ @np = np
1986
+ @nz = nz
1987
+ @om = om
1988
+ @pe = pe
1989
+ @ph = ph
1990
+ @pl = pl
1991
+ @pt = pt
1992
+ @ro = ro
1993
+ @rs = rs
1994
+ @ru = ru
1995
+ @sa = sa
1996
+ @se = se
1997
+ @sg = sg
1998
+ @si = si
1999
+ @sk = sk
2000
+ @sn = sn
2001
+ @sr = sr
2002
+ @th = th
2003
+ @tj = tj
2004
+ @tr = tr
2005
+ @tw = tw
2006
+ @tz = tz
2007
+ @ua = ua
2008
+ @ug = ug
2009
+ @us = us
2010
+ @uy = uy
2011
+ @uz = uz
2012
+ @vn = vn
2013
+ @za = za
2014
+ @zm = zm
2015
+ @zw = zw
2016
+ end
2017
+ end
2018
+ # 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.
2019
+ attr_accessor :active_from
2020
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2021
+ attr_accessor :country
2022
+ # Specific options for a registration in the specified `country`.
2023
+ attr_accessor :country_options
2024
+ # Specifies which fields in the response should be expanded.
2025
+ attr_accessor :expand
2026
+ # 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.
2027
+ attr_accessor :expires_at
2028
+
2029
+ def initialize(
2030
+ active_from: nil,
2031
+ country: nil,
2032
+ country_options: nil,
2033
+ expand: nil,
2034
+ expires_at: nil
2035
+ )
2036
+ @active_from = active_from
2037
+ @country = country
2038
+ @country_options = country_options
2039
+ @expand = expand
2040
+ @expires_at = expires_at
2041
+ end
2042
+ end
2043
+ end
2044
+ end