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,3645 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ module V2
6
+ module Core
7
+ # An Account v2 object represents a company, individual, or other entity that your Stripe integration interacts with. It contains both identifying information and properties that control its behavior and functionality. An Account can have one or more configurations that enable sets of related features, such as allowing it to act as a merchant or customer.
8
+ # The Accounts v2 API is broadly available to Connect platforms, and to other users in preview. The Accounts v2 API also supports the Global Payouts preview feature.
9
+ class Account < APIResource
10
+ OBJECT_NAME = "v2.core.account"
11
+ def self.object_name
12
+ "v2.core.account"
13
+ end
14
+
15
+ class Configuration < ::Stripe::StripeObject
16
+ class Customer < ::Stripe::StripeObject
17
+ class AutomaticIndirectTax < ::Stripe::StripeObject
18
+ class Location < ::Stripe::StripeObject
19
+ # The identified tax country of the customer.
20
+ attr_reader :country
21
+ # The identified tax state, county, province, or region of the customer.
22
+ attr_reader :state
23
+
24
+ def self.inner_class_types
25
+ @inner_class_types = {}
26
+ end
27
+
28
+ def self.field_remappings
29
+ @field_remappings = {}
30
+ end
31
+ end
32
+ # The customer account's tax exemption status: `none`, `exempt`, or `reverse`. When `reverse`, invoice and receipt PDFs include "Reverse charge".
33
+ attr_reader :exempt
34
+ # A recent IP address of the customer used for tax reporting and tax location inference.
35
+ attr_reader :ip_address
36
+ # The customer account's identified tax location, derived from `location_source`. Only rendered if the `automatic_indirect_tax` feature is requested and `active`.
37
+ attr_reader :location
38
+ # Data source used to identify the customer account's tax location. Defaults to `identity_address`. Used for automatic indirect tax calculation.
39
+ attr_reader :location_source
40
+
41
+ def self.inner_class_types
42
+ @inner_class_types = { location: Location }
43
+ end
44
+
45
+ def self.field_remappings
46
+ @field_remappings = {}
47
+ end
48
+ end
49
+
50
+ class Billing < ::Stripe::StripeObject
51
+ class Invoice < ::Stripe::StripeObject
52
+ class CustomField < ::Stripe::StripeObject
53
+ # The name of the custom field. This may be up to 40 characters.
54
+ attr_reader :name
55
+ # The value of the custom field. This may be up to 140 characters. When updating, pass an empty string to remove previously-defined values.
56
+ attr_reader :value
57
+
58
+ def self.inner_class_types
59
+ @inner_class_types = {}
60
+ end
61
+
62
+ def self.field_remappings
63
+ @field_remappings = {}
64
+ end
65
+ end
66
+
67
+ class Rendering < ::Stripe::StripeObject
68
+ # Indicates whether displayed line item prices and amounts on invoice PDFs include inclusive tax amounts. Must be either `include_inclusive_tax` or `exclude_tax`.
69
+ attr_reader :amount_tax_display
70
+ # ID of the invoice rendering template to use for future invoices.
71
+ attr_reader :template
72
+
73
+ def self.inner_class_types
74
+ @inner_class_types = {}
75
+ end
76
+
77
+ def self.field_remappings
78
+ @field_remappings = {}
79
+ end
80
+ end
81
+ # The list of up to 4 default custom fields to be displayed on invoices for this customer. When updating, pass an empty string to remove previously-defined fields.
82
+ attr_reader :custom_fields
83
+ # Default invoice footer.
84
+ attr_reader :footer
85
+ # Sequence number to use on the customer account's next invoice. Defaults to 1.
86
+ attr_reader :next_sequence
87
+ # Prefix used to generate unique invoice numbers. Must be 3-12 uppercase letters or numbers.
88
+ attr_reader :prefix
89
+ # Default invoice PDF rendering options.
90
+ attr_reader :rendering
91
+
92
+ def self.inner_class_types
93
+ @inner_class_types = { custom_fields: CustomField, rendering: Rendering }
94
+ end
95
+
96
+ def self.field_remappings
97
+ @field_remappings = {}
98
+ end
99
+ end
100
+ # The ID of a `PaymentMethod` attached to this Account's `customer` configuration, used as the default payment method for invoices and subscriptions.
101
+ attr_reader :default_payment_method
102
+ # Default invoice settings for the customer account.
103
+ attr_reader :invoice
104
+
105
+ def self.inner_class_types
106
+ @inner_class_types = { invoice: Invoice }
107
+ end
108
+
109
+ def self.field_remappings
110
+ @field_remappings = {}
111
+ end
112
+ end
113
+
114
+ class Capabilities < ::Stripe::StripeObject
115
+ class AutomaticIndirectTax < ::Stripe::StripeObject
116
+ class StatusDetail < ::Stripe::StripeObject
117
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
118
+ attr_reader :code
119
+ # Machine-readable code explaining how to make the Capability active.
120
+ attr_reader :resolution
121
+
122
+ def self.inner_class_types
123
+ @inner_class_types = {}
124
+ end
125
+
126
+ def self.field_remappings
127
+ @field_remappings = {}
128
+ end
129
+ end
130
+ # The status of the Capability.
131
+ attr_reader :status
132
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
133
+ attr_reader :status_details
134
+
135
+ def self.inner_class_types
136
+ @inner_class_types = { status_details: StatusDetail }
137
+ end
138
+
139
+ def self.field_remappings
140
+ @field_remappings = {}
141
+ end
142
+ end
143
+ # Generates requirements for enabling automatic indirect tax calculation on this customer's invoices or subscriptions. Recommended to request this capability if planning to enable automatic tax calculation on this customer's invoices or subscriptions.
144
+ attr_reader :automatic_indirect_tax
145
+
146
+ def self.inner_class_types
147
+ @inner_class_types = { automatic_indirect_tax: AutomaticIndirectTax }
148
+ end
149
+
150
+ def self.field_remappings
151
+ @field_remappings = {}
152
+ end
153
+ end
154
+
155
+ class Shipping < ::Stripe::StripeObject
156
+ class Address < ::Stripe::StripeObject
157
+ # City, district, suburb, town, or village.
158
+ attr_reader :city
159
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
160
+ attr_reader :country
161
+ # Address line 1 (e.g., street, PO Box, or company name).
162
+ attr_reader :line1
163
+ # Address line 2 (e.g., apartment, suite, unit, or building).
164
+ attr_reader :line2
165
+ # ZIP or postal code.
166
+ attr_reader :postal_code
167
+ # State, county, province, or region.
168
+ attr_reader :state
169
+
170
+ def self.inner_class_types
171
+ @inner_class_types = {}
172
+ end
173
+
174
+ def self.field_remappings
175
+ @field_remappings = {}
176
+ end
177
+ end
178
+ # Customer shipping address.
179
+ attr_reader :address
180
+ # Customer name.
181
+ attr_reader :name
182
+ # Customer phone (including extension).
183
+ attr_reader :phone
184
+
185
+ def self.inner_class_types
186
+ @inner_class_types = { address: Address }
187
+ end
188
+
189
+ def self.field_remappings
190
+ @field_remappings = {}
191
+ end
192
+ end
193
+ # Indicates whether the customer configuration is active. You can deactivate or reactivate the customer configuration by updating this property. Deactivating the configuration by setting this value to false will unrequest all capabilities within the configuration. It will not delete any of the configuration's other properties.
194
+ attr_reader :applied
195
+ # Settings for automatic indirect tax calculation on the customer's invoices, subscriptions, Checkout Sessions, and Payment Links. Available when automatic tax calculation is available for the customer account's location.
196
+ attr_reader :automatic_indirect_tax
197
+ # Default Billing settings for the customer account, used in Invoices and Subscriptions.
198
+ attr_reader :billing
199
+ # Capabilities that have been requested on the Customer Configuration.
200
+ attr_reader :capabilities
201
+ # The customer's shipping information. Appears on invoices emailed to this customer.
202
+ attr_reader :shipping
203
+ # ID of the test clock to attach to the customer. Can only be set on testmode Accounts, and when the Customer Configuration is first set on an Account.
204
+ attr_reader :test_clock
205
+
206
+ def self.inner_class_types
207
+ @inner_class_types = {
208
+ automatic_indirect_tax: AutomaticIndirectTax,
209
+ billing: Billing,
210
+ capabilities: Capabilities,
211
+ shipping: Shipping,
212
+ }
213
+ end
214
+
215
+ def self.field_remappings
216
+ @field_remappings = {}
217
+ end
218
+ end
219
+
220
+ class Merchant < ::Stripe::StripeObject
221
+ class BacsDebitPayments < ::Stripe::StripeObject
222
+ # Display name for Bacs Direct Debit payments.
223
+ attr_reader :display_name
224
+ # Service User Number (SUN) for Bacs Direct Debit payments.
225
+ attr_reader :service_user_number
226
+
227
+ def self.inner_class_types
228
+ @inner_class_types = {}
229
+ end
230
+
231
+ def self.field_remappings
232
+ @field_remappings = {}
233
+ end
234
+ end
235
+
236
+ class Branding < ::Stripe::StripeObject
237
+ # ID of a [file upload](https://docs.stripe.com/api/persons/update#create_file): An icon for the merchant. Must be square and at least 128px x 128px.
238
+ attr_reader :icon
239
+ # ID of a [file upload](https://docs.stripe.com/api/persons/update#create_file): A logo for the merchant that will be used in Checkout instead of the icon and without the merchant's name next to it if provided. Must be at least 128px x 128px.
240
+ attr_reader :logo
241
+ # A CSS hex color value representing the primary branding color for the merchant.
242
+ attr_reader :primary_color
243
+ # A CSS hex color value representing the secondary branding color for the merchant.
244
+ attr_reader :secondary_color
245
+
246
+ def self.inner_class_types
247
+ @inner_class_types = {}
248
+ end
249
+
250
+ def self.field_remappings
251
+ @field_remappings = {}
252
+ end
253
+ end
254
+
255
+ class Capabilities < ::Stripe::StripeObject
256
+ class AchDebitPayments < ::Stripe::StripeObject
257
+ class StatusDetail < ::Stripe::StripeObject
258
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
259
+ attr_reader :code
260
+ # Machine-readable code explaining how to make the Capability active.
261
+ attr_reader :resolution
262
+
263
+ def self.inner_class_types
264
+ @inner_class_types = {}
265
+ end
266
+
267
+ def self.field_remappings
268
+ @field_remappings = {}
269
+ end
270
+ end
271
+ # The status of the Capability.
272
+ attr_reader :status
273
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
274
+ attr_reader :status_details
275
+
276
+ def self.inner_class_types
277
+ @inner_class_types = { status_details: StatusDetail }
278
+ end
279
+
280
+ def self.field_remappings
281
+ @field_remappings = {}
282
+ end
283
+ end
284
+
285
+ class AcssDebitPayments < ::Stripe::StripeObject
286
+ class StatusDetail < ::Stripe::StripeObject
287
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
288
+ attr_reader :code
289
+ # Machine-readable code explaining how to make the Capability active.
290
+ attr_reader :resolution
291
+
292
+ def self.inner_class_types
293
+ @inner_class_types = {}
294
+ end
295
+
296
+ def self.field_remappings
297
+ @field_remappings = {}
298
+ end
299
+ end
300
+ # The status of the Capability.
301
+ attr_reader :status
302
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
303
+ attr_reader :status_details
304
+
305
+ def self.inner_class_types
306
+ @inner_class_types = { status_details: StatusDetail }
307
+ end
308
+
309
+ def self.field_remappings
310
+ @field_remappings = {}
311
+ end
312
+ end
313
+
314
+ class AffirmPayments < ::Stripe::StripeObject
315
+ class StatusDetail < ::Stripe::StripeObject
316
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
317
+ attr_reader :code
318
+ # Machine-readable code explaining how to make the Capability active.
319
+ attr_reader :resolution
320
+
321
+ def self.inner_class_types
322
+ @inner_class_types = {}
323
+ end
324
+
325
+ def self.field_remappings
326
+ @field_remappings = {}
327
+ end
328
+ end
329
+ # The status of the Capability.
330
+ attr_reader :status
331
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
332
+ attr_reader :status_details
333
+
334
+ def self.inner_class_types
335
+ @inner_class_types = { status_details: StatusDetail }
336
+ end
337
+
338
+ def self.field_remappings
339
+ @field_remappings = {}
340
+ end
341
+ end
342
+
343
+ class AfterpayClearpayPayments < ::Stripe::StripeObject
344
+ class StatusDetail < ::Stripe::StripeObject
345
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
346
+ attr_reader :code
347
+ # Machine-readable code explaining how to make the Capability active.
348
+ attr_reader :resolution
349
+
350
+ def self.inner_class_types
351
+ @inner_class_types = {}
352
+ end
353
+
354
+ def self.field_remappings
355
+ @field_remappings = {}
356
+ end
357
+ end
358
+ # The status of the Capability.
359
+ attr_reader :status
360
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
361
+ attr_reader :status_details
362
+
363
+ def self.inner_class_types
364
+ @inner_class_types = { status_details: StatusDetail }
365
+ end
366
+
367
+ def self.field_remappings
368
+ @field_remappings = {}
369
+ end
370
+ end
371
+
372
+ class AlmaPayments < ::Stripe::StripeObject
373
+ class StatusDetail < ::Stripe::StripeObject
374
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
375
+ attr_reader :code
376
+ # Machine-readable code explaining how to make the Capability active.
377
+ attr_reader :resolution
378
+
379
+ def self.inner_class_types
380
+ @inner_class_types = {}
381
+ end
382
+
383
+ def self.field_remappings
384
+ @field_remappings = {}
385
+ end
386
+ end
387
+ # The status of the Capability.
388
+ attr_reader :status
389
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
390
+ attr_reader :status_details
391
+
392
+ def self.inner_class_types
393
+ @inner_class_types = { status_details: StatusDetail }
394
+ end
395
+
396
+ def self.field_remappings
397
+ @field_remappings = {}
398
+ end
399
+ end
400
+
401
+ class AmazonPayPayments < ::Stripe::StripeObject
402
+ class StatusDetail < ::Stripe::StripeObject
403
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
404
+ attr_reader :code
405
+ # Machine-readable code explaining how to make the Capability active.
406
+ attr_reader :resolution
407
+
408
+ def self.inner_class_types
409
+ @inner_class_types = {}
410
+ end
411
+
412
+ def self.field_remappings
413
+ @field_remappings = {}
414
+ end
415
+ end
416
+ # The status of the Capability.
417
+ attr_reader :status
418
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
419
+ attr_reader :status_details
420
+
421
+ def self.inner_class_types
422
+ @inner_class_types = { status_details: StatusDetail }
423
+ end
424
+
425
+ def self.field_remappings
426
+ @field_remappings = {}
427
+ end
428
+ end
429
+
430
+ class AuBecsDebitPayments < ::Stripe::StripeObject
431
+ class StatusDetail < ::Stripe::StripeObject
432
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
433
+ attr_reader :code
434
+ # Machine-readable code explaining how to make the Capability active.
435
+ attr_reader :resolution
436
+
437
+ def self.inner_class_types
438
+ @inner_class_types = {}
439
+ end
440
+
441
+ def self.field_remappings
442
+ @field_remappings = {}
443
+ end
444
+ end
445
+ # The status of the Capability.
446
+ attr_reader :status
447
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
448
+ attr_reader :status_details
449
+
450
+ def self.inner_class_types
451
+ @inner_class_types = { status_details: StatusDetail }
452
+ end
453
+
454
+ def self.field_remappings
455
+ @field_remappings = {}
456
+ end
457
+ end
458
+
459
+ class BacsDebitPayments < ::Stripe::StripeObject
460
+ class StatusDetail < ::Stripe::StripeObject
461
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
462
+ attr_reader :code
463
+ # Machine-readable code explaining how to make the Capability active.
464
+ attr_reader :resolution
465
+
466
+ def self.inner_class_types
467
+ @inner_class_types = {}
468
+ end
469
+
470
+ def self.field_remappings
471
+ @field_remappings = {}
472
+ end
473
+ end
474
+ # The status of the Capability.
475
+ attr_reader :status
476
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
477
+ attr_reader :status_details
478
+
479
+ def self.inner_class_types
480
+ @inner_class_types = { status_details: StatusDetail }
481
+ end
482
+
483
+ def self.field_remappings
484
+ @field_remappings = {}
485
+ end
486
+ end
487
+
488
+ class BancontactPayments < ::Stripe::StripeObject
489
+ class StatusDetail < ::Stripe::StripeObject
490
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
491
+ attr_reader :code
492
+ # Machine-readable code explaining how to make the Capability active.
493
+ attr_reader :resolution
494
+
495
+ def self.inner_class_types
496
+ @inner_class_types = {}
497
+ end
498
+
499
+ def self.field_remappings
500
+ @field_remappings = {}
501
+ end
502
+ end
503
+ # The status of the Capability.
504
+ attr_reader :status
505
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
506
+ attr_reader :status_details
507
+
508
+ def self.inner_class_types
509
+ @inner_class_types = { status_details: StatusDetail }
510
+ end
511
+
512
+ def self.field_remappings
513
+ @field_remappings = {}
514
+ end
515
+ end
516
+
517
+ class BlikPayments < ::Stripe::StripeObject
518
+ class StatusDetail < ::Stripe::StripeObject
519
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
520
+ attr_reader :code
521
+ # Machine-readable code explaining how to make the Capability active.
522
+ attr_reader :resolution
523
+
524
+ def self.inner_class_types
525
+ @inner_class_types = {}
526
+ end
527
+
528
+ def self.field_remappings
529
+ @field_remappings = {}
530
+ end
531
+ end
532
+ # The status of the Capability.
533
+ attr_reader :status
534
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
535
+ attr_reader :status_details
536
+
537
+ def self.inner_class_types
538
+ @inner_class_types = { status_details: StatusDetail }
539
+ end
540
+
541
+ def self.field_remappings
542
+ @field_remappings = {}
543
+ end
544
+ end
545
+
546
+ class BoletoPayments < ::Stripe::StripeObject
547
+ class StatusDetail < ::Stripe::StripeObject
548
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
549
+ attr_reader :code
550
+ # Machine-readable code explaining how to make the Capability active.
551
+ attr_reader :resolution
552
+
553
+ def self.inner_class_types
554
+ @inner_class_types = {}
555
+ end
556
+
557
+ def self.field_remappings
558
+ @field_remappings = {}
559
+ end
560
+ end
561
+ # The status of the Capability.
562
+ attr_reader :status
563
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
564
+ attr_reader :status_details
565
+
566
+ def self.inner_class_types
567
+ @inner_class_types = { status_details: StatusDetail }
568
+ end
569
+
570
+ def self.field_remappings
571
+ @field_remappings = {}
572
+ end
573
+ end
574
+
575
+ class CardPayments < ::Stripe::StripeObject
576
+ class StatusDetail < ::Stripe::StripeObject
577
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
578
+ attr_reader :code
579
+ # Machine-readable code explaining how to make the Capability active.
580
+ attr_reader :resolution
581
+
582
+ def self.inner_class_types
583
+ @inner_class_types = {}
584
+ end
585
+
586
+ def self.field_remappings
587
+ @field_remappings = {}
588
+ end
589
+ end
590
+ # The status of the Capability.
591
+ attr_reader :status
592
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
593
+ attr_reader :status_details
594
+
595
+ def self.inner_class_types
596
+ @inner_class_types = { status_details: StatusDetail }
597
+ end
598
+
599
+ def self.field_remappings
600
+ @field_remappings = {}
601
+ end
602
+ end
603
+
604
+ class CartesBancairesPayments < ::Stripe::StripeObject
605
+ class StatusDetail < ::Stripe::StripeObject
606
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
607
+ attr_reader :code
608
+ # Machine-readable code explaining how to make the Capability active.
609
+ attr_reader :resolution
610
+
611
+ def self.inner_class_types
612
+ @inner_class_types = {}
613
+ end
614
+
615
+ def self.field_remappings
616
+ @field_remappings = {}
617
+ end
618
+ end
619
+ # The status of the Capability.
620
+ attr_reader :status
621
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
622
+ attr_reader :status_details
623
+
624
+ def self.inner_class_types
625
+ @inner_class_types = { status_details: StatusDetail }
626
+ end
627
+
628
+ def self.field_remappings
629
+ @field_remappings = {}
630
+ end
631
+ end
632
+
633
+ class CashappPayments < ::Stripe::StripeObject
634
+ class StatusDetail < ::Stripe::StripeObject
635
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
636
+ attr_reader :code
637
+ # Machine-readable code explaining how to make the Capability active.
638
+ attr_reader :resolution
639
+
640
+ def self.inner_class_types
641
+ @inner_class_types = {}
642
+ end
643
+
644
+ def self.field_remappings
645
+ @field_remappings = {}
646
+ end
647
+ end
648
+ # The status of the Capability.
649
+ attr_reader :status
650
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
651
+ attr_reader :status_details
652
+
653
+ def self.inner_class_types
654
+ @inner_class_types = { status_details: StatusDetail }
655
+ end
656
+
657
+ def self.field_remappings
658
+ @field_remappings = {}
659
+ end
660
+ end
661
+
662
+ class EpsPayments < ::Stripe::StripeObject
663
+ class StatusDetail < ::Stripe::StripeObject
664
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
665
+ attr_reader :code
666
+ # Machine-readable code explaining how to make the Capability active.
667
+ attr_reader :resolution
668
+
669
+ def self.inner_class_types
670
+ @inner_class_types = {}
671
+ end
672
+
673
+ def self.field_remappings
674
+ @field_remappings = {}
675
+ end
676
+ end
677
+ # The status of the Capability.
678
+ attr_reader :status
679
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
680
+ attr_reader :status_details
681
+
682
+ def self.inner_class_types
683
+ @inner_class_types = { status_details: StatusDetail }
684
+ end
685
+
686
+ def self.field_remappings
687
+ @field_remappings = {}
688
+ end
689
+ end
690
+
691
+ class FpxPayments < ::Stripe::StripeObject
692
+ class StatusDetail < ::Stripe::StripeObject
693
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
694
+ attr_reader :code
695
+ # Machine-readable code explaining how to make the Capability active.
696
+ attr_reader :resolution
697
+
698
+ def self.inner_class_types
699
+ @inner_class_types = {}
700
+ end
701
+
702
+ def self.field_remappings
703
+ @field_remappings = {}
704
+ end
705
+ end
706
+ # The status of the Capability.
707
+ attr_reader :status
708
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
709
+ attr_reader :status_details
710
+
711
+ def self.inner_class_types
712
+ @inner_class_types = { status_details: StatusDetail }
713
+ end
714
+
715
+ def self.field_remappings
716
+ @field_remappings = {}
717
+ end
718
+ end
719
+
720
+ class GbBankTransferPayments < ::Stripe::StripeObject
721
+ class StatusDetail < ::Stripe::StripeObject
722
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
723
+ attr_reader :code
724
+ # Machine-readable code explaining how to make the Capability active.
725
+ attr_reader :resolution
726
+
727
+ def self.inner_class_types
728
+ @inner_class_types = {}
729
+ end
730
+
731
+ def self.field_remappings
732
+ @field_remappings = {}
733
+ end
734
+ end
735
+ # The status of the Capability.
736
+ attr_reader :status
737
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
738
+ attr_reader :status_details
739
+
740
+ def self.inner_class_types
741
+ @inner_class_types = { status_details: StatusDetail }
742
+ end
743
+
744
+ def self.field_remappings
745
+ @field_remappings = {}
746
+ end
747
+ end
748
+
749
+ class GrabpayPayments < ::Stripe::StripeObject
750
+ class StatusDetail < ::Stripe::StripeObject
751
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
752
+ attr_reader :code
753
+ # Machine-readable code explaining how to make the Capability active.
754
+ attr_reader :resolution
755
+
756
+ def self.inner_class_types
757
+ @inner_class_types = {}
758
+ end
759
+
760
+ def self.field_remappings
761
+ @field_remappings = {}
762
+ end
763
+ end
764
+ # The status of the Capability.
765
+ attr_reader :status
766
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
767
+ attr_reader :status_details
768
+
769
+ def self.inner_class_types
770
+ @inner_class_types = { status_details: StatusDetail }
771
+ end
772
+
773
+ def self.field_remappings
774
+ @field_remappings = {}
775
+ end
776
+ end
777
+
778
+ class IdealPayments < ::Stripe::StripeObject
779
+ class StatusDetail < ::Stripe::StripeObject
780
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
781
+ attr_reader :code
782
+ # Machine-readable code explaining how to make the Capability active.
783
+ attr_reader :resolution
784
+
785
+ def self.inner_class_types
786
+ @inner_class_types = {}
787
+ end
788
+
789
+ def self.field_remappings
790
+ @field_remappings = {}
791
+ end
792
+ end
793
+ # The status of the Capability.
794
+ attr_reader :status
795
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
796
+ attr_reader :status_details
797
+
798
+ def self.inner_class_types
799
+ @inner_class_types = { status_details: StatusDetail }
800
+ end
801
+
802
+ def self.field_remappings
803
+ @field_remappings = {}
804
+ end
805
+ end
806
+
807
+ class JcbPayments < ::Stripe::StripeObject
808
+ class StatusDetail < ::Stripe::StripeObject
809
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
810
+ attr_reader :code
811
+ # Machine-readable code explaining how to make the Capability active.
812
+ attr_reader :resolution
813
+
814
+ def self.inner_class_types
815
+ @inner_class_types = {}
816
+ end
817
+
818
+ def self.field_remappings
819
+ @field_remappings = {}
820
+ end
821
+ end
822
+ # The status of the Capability.
823
+ attr_reader :status
824
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
825
+ attr_reader :status_details
826
+
827
+ def self.inner_class_types
828
+ @inner_class_types = { status_details: StatusDetail }
829
+ end
830
+
831
+ def self.field_remappings
832
+ @field_remappings = {}
833
+ end
834
+ end
835
+
836
+ class JpBankTransferPayments < ::Stripe::StripeObject
837
+ class StatusDetail < ::Stripe::StripeObject
838
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
839
+ attr_reader :code
840
+ # Machine-readable code explaining how to make the Capability active.
841
+ attr_reader :resolution
842
+
843
+ def self.inner_class_types
844
+ @inner_class_types = {}
845
+ end
846
+
847
+ def self.field_remappings
848
+ @field_remappings = {}
849
+ end
850
+ end
851
+ # The status of the Capability.
852
+ attr_reader :status
853
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
854
+ attr_reader :status_details
855
+
856
+ def self.inner_class_types
857
+ @inner_class_types = { status_details: StatusDetail }
858
+ end
859
+
860
+ def self.field_remappings
861
+ @field_remappings = {}
862
+ end
863
+ end
864
+
865
+ class KakaoPayPayments < ::Stripe::StripeObject
866
+ class StatusDetail < ::Stripe::StripeObject
867
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
868
+ attr_reader :code
869
+ # Machine-readable code explaining how to make the Capability active.
870
+ attr_reader :resolution
871
+
872
+ def self.inner_class_types
873
+ @inner_class_types = {}
874
+ end
875
+
876
+ def self.field_remappings
877
+ @field_remappings = {}
878
+ end
879
+ end
880
+ # The status of the Capability.
881
+ attr_reader :status
882
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
883
+ attr_reader :status_details
884
+
885
+ def self.inner_class_types
886
+ @inner_class_types = { status_details: StatusDetail }
887
+ end
888
+
889
+ def self.field_remappings
890
+ @field_remappings = {}
891
+ end
892
+ end
893
+
894
+ class KlarnaPayments < ::Stripe::StripeObject
895
+ class StatusDetail < ::Stripe::StripeObject
896
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
897
+ attr_reader :code
898
+ # Machine-readable code explaining how to make the Capability active.
899
+ attr_reader :resolution
900
+
901
+ def self.inner_class_types
902
+ @inner_class_types = {}
903
+ end
904
+
905
+ def self.field_remappings
906
+ @field_remappings = {}
907
+ end
908
+ end
909
+ # The status of the Capability.
910
+ attr_reader :status
911
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
912
+ attr_reader :status_details
913
+
914
+ def self.inner_class_types
915
+ @inner_class_types = { status_details: StatusDetail }
916
+ end
917
+
918
+ def self.field_remappings
919
+ @field_remappings = {}
920
+ end
921
+ end
922
+
923
+ class KonbiniPayments < ::Stripe::StripeObject
924
+ class StatusDetail < ::Stripe::StripeObject
925
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
926
+ attr_reader :code
927
+ # Machine-readable code explaining how to make the Capability active.
928
+ attr_reader :resolution
929
+
930
+ def self.inner_class_types
931
+ @inner_class_types = {}
932
+ end
933
+
934
+ def self.field_remappings
935
+ @field_remappings = {}
936
+ end
937
+ end
938
+ # The status of the Capability.
939
+ attr_reader :status
940
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
941
+ attr_reader :status_details
942
+
943
+ def self.inner_class_types
944
+ @inner_class_types = { status_details: StatusDetail }
945
+ end
946
+
947
+ def self.field_remappings
948
+ @field_remappings = {}
949
+ end
950
+ end
951
+
952
+ class KrCardPayments < ::Stripe::StripeObject
953
+ class StatusDetail < ::Stripe::StripeObject
954
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
955
+ attr_reader :code
956
+ # Machine-readable code explaining how to make the Capability active.
957
+ attr_reader :resolution
958
+
959
+ def self.inner_class_types
960
+ @inner_class_types = {}
961
+ end
962
+
963
+ def self.field_remappings
964
+ @field_remappings = {}
965
+ end
966
+ end
967
+ # The status of the Capability.
968
+ attr_reader :status
969
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
970
+ attr_reader :status_details
971
+
972
+ def self.inner_class_types
973
+ @inner_class_types = { status_details: StatusDetail }
974
+ end
975
+
976
+ def self.field_remappings
977
+ @field_remappings = {}
978
+ end
979
+ end
980
+
981
+ class LinkPayments < ::Stripe::StripeObject
982
+ class StatusDetail < ::Stripe::StripeObject
983
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
984
+ attr_reader :code
985
+ # Machine-readable code explaining how to make the Capability active.
986
+ attr_reader :resolution
987
+
988
+ def self.inner_class_types
989
+ @inner_class_types = {}
990
+ end
991
+
992
+ def self.field_remappings
993
+ @field_remappings = {}
994
+ end
995
+ end
996
+ # The status of the Capability.
997
+ attr_reader :status
998
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
999
+ attr_reader :status_details
1000
+
1001
+ def self.inner_class_types
1002
+ @inner_class_types = { status_details: StatusDetail }
1003
+ end
1004
+
1005
+ def self.field_remappings
1006
+ @field_remappings = {}
1007
+ end
1008
+ end
1009
+
1010
+ class MobilepayPayments < ::Stripe::StripeObject
1011
+ class StatusDetail < ::Stripe::StripeObject
1012
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1013
+ attr_reader :code
1014
+ # Machine-readable code explaining how to make the Capability active.
1015
+ attr_reader :resolution
1016
+
1017
+ def self.inner_class_types
1018
+ @inner_class_types = {}
1019
+ end
1020
+
1021
+ def self.field_remappings
1022
+ @field_remappings = {}
1023
+ end
1024
+ end
1025
+ # The status of the Capability.
1026
+ attr_reader :status
1027
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1028
+ attr_reader :status_details
1029
+
1030
+ def self.inner_class_types
1031
+ @inner_class_types = { status_details: StatusDetail }
1032
+ end
1033
+
1034
+ def self.field_remappings
1035
+ @field_remappings = {}
1036
+ end
1037
+ end
1038
+
1039
+ class MultibancoPayments < ::Stripe::StripeObject
1040
+ class StatusDetail < ::Stripe::StripeObject
1041
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1042
+ attr_reader :code
1043
+ # Machine-readable code explaining how to make the Capability active.
1044
+ attr_reader :resolution
1045
+
1046
+ def self.inner_class_types
1047
+ @inner_class_types = {}
1048
+ end
1049
+
1050
+ def self.field_remappings
1051
+ @field_remappings = {}
1052
+ end
1053
+ end
1054
+ # The status of the Capability.
1055
+ attr_reader :status
1056
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1057
+ attr_reader :status_details
1058
+
1059
+ def self.inner_class_types
1060
+ @inner_class_types = { status_details: StatusDetail }
1061
+ end
1062
+
1063
+ def self.field_remappings
1064
+ @field_remappings = {}
1065
+ end
1066
+ end
1067
+
1068
+ class MxBankTransferPayments < ::Stripe::StripeObject
1069
+ class StatusDetail < ::Stripe::StripeObject
1070
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1071
+ attr_reader :code
1072
+ # Machine-readable code explaining how to make the Capability active.
1073
+ attr_reader :resolution
1074
+
1075
+ def self.inner_class_types
1076
+ @inner_class_types = {}
1077
+ end
1078
+
1079
+ def self.field_remappings
1080
+ @field_remappings = {}
1081
+ end
1082
+ end
1083
+ # The status of the Capability.
1084
+ attr_reader :status
1085
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1086
+ attr_reader :status_details
1087
+
1088
+ def self.inner_class_types
1089
+ @inner_class_types = { status_details: StatusDetail }
1090
+ end
1091
+
1092
+ def self.field_remappings
1093
+ @field_remappings = {}
1094
+ end
1095
+ end
1096
+
1097
+ class NaverPayPayments < ::Stripe::StripeObject
1098
+ class StatusDetail < ::Stripe::StripeObject
1099
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1100
+ attr_reader :code
1101
+ # Machine-readable code explaining how to make the Capability active.
1102
+ attr_reader :resolution
1103
+
1104
+ def self.inner_class_types
1105
+ @inner_class_types = {}
1106
+ end
1107
+
1108
+ def self.field_remappings
1109
+ @field_remappings = {}
1110
+ end
1111
+ end
1112
+ # The status of the Capability.
1113
+ attr_reader :status
1114
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1115
+ attr_reader :status_details
1116
+
1117
+ def self.inner_class_types
1118
+ @inner_class_types = { status_details: StatusDetail }
1119
+ end
1120
+
1121
+ def self.field_remappings
1122
+ @field_remappings = {}
1123
+ end
1124
+ end
1125
+
1126
+ class OxxoPayments < ::Stripe::StripeObject
1127
+ class StatusDetail < ::Stripe::StripeObject
1128
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1129
+ attr_reader :code
1130
+ # Machine-readable code explaining how to make the Capability active.
1131
+ attr_reader :resolution
1132
+
1133
+ def self.inner_class_types
1134
+ @inner_class_types = {}
1135
+ end
1136
+
1137
+ def self.field_remappings
1138
+ @field_remappings = {}
1139
+ end
1140
+ end
1141
+ # The status of the Capability.
1142
+ attr_reader :status
1143
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1144
+ attr_reader :status_details
1145
+
1146
+ def self.inner_class_types
1147
+ @inner_class_types = { status_details: StatusDetail }
1148
+ end
1149
+
1150
+ def self.field_remappings
1151
+ @field_remappings = {}
1152
+ end
1153
+ end
1154
+
1155
+ class P24Payments < ::Stripe::StripeObject
1156
+ class StatusDetail < ::Stripe::StripeObject
1157
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1158
+ attr_reader :code
1159
+ # Machine-readable code explaining how to make the Capability active.
1160
+ attr_reader :resolution
1161
+
1162
+ def self.inner_class_types
1163
+ @inner_class_types = {}
1164
+ end
1165
+
1166
+ def self.field_remappings
1167
+ @field_remappings = {}
1168
+ end
1169
+ end
1170
+ # The status of the Capability.
1171
+ attr_reader :status
1172
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1173
+ attr_reader :status_details
1174
+
1175
+ def self.inner_class_types
1176
+ @inner_class_types = { status_details: StatusDetail }
1177
+ end
1178
+
1179
+ def self.field_remappings
1180
+ @field_remappings = {}
1181
+ end
1182
+ end
1183
+
1184
+ class PayByBankPayments < ::Stripe::StripeObject
1185
+ class StatusDetail < ::Stripe::StripeObject
1186
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1187
+ attr_reader :code
1188
+ # Machine-readable code explaining how to make the Capability active.
1189
+ attr_reader :resolution
1190
+
1191
+ def self.inner_class_types
1192
+ @inner_class_types = {}
1193
+ end
1194
+
1195
+ def self.field_remappings
1196
+ @field_remappings = {}
1197
+ end
1198
+ end
1199
+ # The status of the Capability.
1200
+ attr_reader :status
1201
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1202
+ attr_reader :status_details
1203
+
1204
+ def self.inner_class_types
1205
+ @inner_class_types = { status_details: StatusDetail }
1206
+ end
1207
+
1208
+ def self.field_remappings
1209
+ @field_remappings = {}
1210
+ end
1211
+ end
1212
+
1213
+ class PaycoPayments < ::Stripe::StripeObject
1214
+ class StatusDetail < ::Stripe::StripeObject
1215
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1216
+ attr_reader :code
1217
+ # Machine-readable code explaining how to make the Capability active.
1218
+ attr_reader :resolution
1219
+
1220
+ def self.inner_class_types
1221
+ @inner_class_types = {}
1222
+ end
1223
+
1224
+ def self.field_remappings
1225
+ @field_remappings = {}
1226
+ end
1227
+ end
1228
+ # The status of the Capability.
1229
+ attr_reader :status
1230
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1231
+ attr_reader :status_details
1232
+
1233
+ def self.inner_class_types
1234
+ @inner_class_types = { status_details: StatusDetail }
1235
+ end
1236
+
1237
+ def self.field_remappings
1238
+ @field_remappings = {}
1239
+ end
1240
+ end
1241
+
1242
+ class PaynowPayments < ::Stripe::StripeObject
1243
+ class StatusDetail < ::Stripe::StripeObject
1244
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1245
+ attr_reader :code
1246
+ # Machine-readable code explaining how to make the Capability active.
1247
+ attr_reader :resolution
1248
+
1249
+ def self.inner_class_types
1250
+ @inner_class_types = {}
1251
+ end
1252
+
1253
+ def self.field_remappings
1254
+ @field_remappings = {}
1255
+ end
1256
+ end
1257
+ # The status of the Capability.
1258
+ attr_reader :status
1259
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1260
+ attr_reader :status_details
1261
+
1262
+ def self.inner_class_types
1263
+ @inner_class_types = { status_details: StatusDetail }
1264
+ end
1265
+
1266
+ def self.field_remappings
1267
+ @field_remappings = {}
1268
+ end
1269
+ end
1270
+
1271
+ class PromptpayPayments < ::Stripe::StripeObject
1272
+ class StatusDetail < ::Stripe::StripeObject
1273
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1274
+ attr_reader :code
1275
+ # Machine-readable code explaining how to make the Capability active.
1276
+ attr_reader :resolution
1277
+
1278
+ def self.inner_class_types
1279
+ @inner_class_types = {}
1280
+ end
1281
+
1282
+ def self.field_remappings
1283
+ @field_remappings = {}
1284
+ end
1285
+ end
1286
+ # The status of the Capability.
1287
+ attr_reader :status
1288
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1289
+ attr_reader :status_details
1290
+
1291
+ def self.inner_class_types
1292
+ @inner_class_types = { status_details: StatusDetail }
1293
+ end
1294
+
1295
+ def self.field_remappings
1296
+ @field_remappings = {}
1297
+ end
1298
+ end
1299
+
1300
+ class RevolutPayPayments < ::Stripe::StripeObject
1301
+ class StatusDetail < ::Stripe::StripeObject
1302
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1303
+ attr_reader :code
1304
+ # Machine-readable code explaining how to make the Capability active.
1305
+ attr_reader :resolution
1306
+
1307
+ def self.inner_class_types
1308
+ @inner_class_types = {}
1309
+ end
1310
+
1311
+ def self.field_remappings
1312
+ @field_remappings = {}
1313
+ end
1314
+ end
1315
+ # The status of the Capability.
1316
+ attr_reader :status
1317
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1318
+ attr_reader :status_details
1319
+
1320
+ def self.inner_class_types
1321
+ @inner_class_types = { status_details: StatusDetail }
1322
+ end
1323
+
1324
+ def self.field_remappings
1325
+ @field_remappings = {}
1326
+ end
1327
+ end
1328
+
1329
+ class SamsungPayPayments < ::Stripe::StripeObject
1330
+ class StatusDetail < ::Stripe::StripeObject
1331
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1332
+ attr_reader :code
1333
+ # Machine-readable code explaining how to make the Capability active.
1334
+ attr_reader :resolution
1335
+
1336
+ def self.inner_class_types
1337
+ @inner_class_types = {}
1338
+ end
1339
+
1340
+ def self.field_remappings
1341
+ @field_remappings = {}
1342
+ end
1343
+ end
1344
+ # The status of the Capability.
1345
+ attr_reader :status
1346
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1347
+ attr_reader :status_details
1348
+
1349
+ def self.inner_class_types
1350
+ @inner_class_types = { status_details: StatusDetail }
1351
+ end
1352
+
1353
+ def self.field_remappings
1354
+ @field_remappings = {}
1355
+ end
1356
+ end
1357
+
1358
+ class SepaBankTransferPayments < ::Stripe::StripeObject
1359
+ class StatusDetail < ::Stripe::StripeObject
1360
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1361
+ attr_reader :code
1362
+ # Machine-readable code explaining how to make the Capability active.
1363
+ attr_reader :resolution
1364
+
1365
+ def self.inner_class_types
1366
+ @inner_class_types = {}
1367
+ end
1368
+
1369
+ def self.field_remappings
1370
+ @field_remappings = {}
1371
+ end
1372
+ end
1373
+ # The status of the Capability.
1374
+ attr_reader :status
1375
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1376
+ attr_reader :status_details
1377
+
1378
+ def self.inner_class_types
1379
+ @inner_class_types = { status_details: StatusDetail }
1380
+ end
1381
+
1382
+ def self.field_remappings
1383
+ @field_remappings = {}
1384
+ end
1385
+ end
1386
+
1387
+ class SepaDebitPayments < ::Stripe::StripeObject
1388
+ class StatusDetail < ::Stripe::StripeObject
1389
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1390
+ attr_reader :code
1391
+ # Machine-readable code explaining how to make the Capability active.
1392
+ attr_reader :resolution
1393
+
1394
+ def self.inner_class_types
1395
+ @inner_class_types = {}
1396
+ end
1397
+
1398
+ def self.field_remappings
1399
+ @field_remappings = {}
1400
+ end
1401
+ end
1402
+ # The status of the Capability.
1403
+ attr_reader :status
1404
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1405
+ attr_reader :status_details
1406
+
1407
+ def self.inner_class_types
1408
+ @inner_class_types = { status_details: StatusDetail }
1409
+ end
1410
+
1411
+ def self.field_remappings
1412
+ @field_remappings = {}
1413
+ end
1414
+ end
1415
+
1416
+ class StripeBalance < ::Stripe::StripeObject
1417
+ class Payouts < ::Stripe::StripeObject
1418
+ class StatusDetail < ::Stripe::StripeObject
1419
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1420
+ attr_reader :code
1421
+ # Machine-readable code explaining how to make the Capability active.
1422
+ attr_reader :resolution
1423
+
1424
+ def self.inner_class_types
1425
+ @inner_class_types = {}
1426
+ end
1427
+
1428
+ def self.field_remappings
1429
+ @field_remappings = {}
1430
+ end
1431
+ end
1432
+ # The status of the Capability.
1433
+ attr_reader :status
1434
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1435
+ attr_reader :status_details
1436
+
1437
+ def self.inner_class_types
1438
+ @inner_class_types = { status_details: StatusDetail }
1439
+ end
1440
+
1441
+ def self.field_remappings
1442
+ @field_remappings = {}
1443
+ end
1444
+ end
1445
+ # Enables this Account to complete payouts from their Stripe Balance (/v1/balance).
1446
+ attr_reader :payouts
1447
+
1448
+ def self.inner_class_types
1449
+ @inner_class_types = { payouts: Payouts }
1450
+ end
1451
+
1452
+ def self.field_remappings
1453
+ @field_remappings = {}
1454
+ end
1455
+ end
1456
+
1457
+ class SunbitPayments < ::Stripe::StripeObject
1458
+ class StatusDetail < ::Stripe::StripeObject
1459
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1460
+ attr_reader :code
1461
+ # Machine-readable code explaining how to make the Capability active.
1462
+ attr_reader :resolution
1463
+
1464
+ def self.inner_class_types
1465
+ @inner_class_types = {}
1466
+ end
1467
+
1468
+ def self.field_remappings
1469
+ @field_remappings = {}
1470
+ end
1471
+ end
1472
+ # The status of the Capability.
1473
+ attr_reader :status
1474
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1475
+ attr_reader :status_details
1476
+
1477
+ def self.inner_class_types
1478
+ @inner_class_types = { status_details: StatusDetail }
1479
+ end
1480
+
1481
+ def self.field_remappings
1482
+ @field_remappings = {}
1483
+ end
1484
+ end
1485
+
1486
+ class SwishPayments < ::Stripe::StripeObject
1487
+ class StatusDetail < ::Stripe::StripeObject
1488
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1489
+ attr_reader :code
1490
+ # Machine-readable code explaining how to make the Capability active.
1491
+ attr_reader :resolution
1492
+
1493
+ def self.inner_class_types
1494
+ @inner_class_types = {}
1495
+ end
1496
+
1497
+ def self.field_remappings
1498
+ @field_remappings = {}
1499
+ end
1500
+ end
1501
+ # The status of the Capability.
1502
+ attr_reader :status
1503
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1504
+ attr_reader :status_details
1505
+
1506
+ def self.inner_class_types
1507
+ @inner_class_types = { status_details: StatusDetail }
1508
+ end
1509
+
1510
+ def self.field_remappings
1511
+ @field_remappings = {}
1512
+ end
1513
+ end
1514
+
1515
+ class TwintPayments < ::Stripe::StripeObject
1516
+ class StatusDetail < ::Stripe::StripeObject
1517
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1518
+ attr_reader :code
1519
+ # Machine-readable code explaining how to make the Capability active.
1520
+ attr_reader :resolution
1521
+
1522
+ def self.inner_class_types
1523
+ @inner_class_types = {}
1524
+ end
1525
+
1526
+ def self.field_remappings
1527
+ @field_remappings = {}
1528
+ end
1529
+ end
1530
+ # The status of the Capability.
1531
+ attr_reader :status
1532
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1533
+ attr_reader :status_details
1534
+
1535
+ def self.inner_class_types
1536
+ @inner_class_types = { status_details: StatusDetail }
1537
+ end
1538
+
1539
+ def self.field_remappings
1540
+ @field_remappings = {}
1541
+ end
1542
+ end
1543
+
1544
+ class UsBankTransferPayments < ::Stripe::StripeObject
1545
+ class StatusDetail < ::Stripe::StripeObject
1546
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1547
+ attr_reader :code
1548
+ # Machine-readable code explaining how to make the Capability active.
1549
+ attr_reader :resolution
1550
+
1551
+ def self.inner_class_types
1552
+ @inner_class_types = {}
1553
+ end
1554
+
1555
+ def self.field_remappings
1556
+ @field_remappings = {}
1557
+ end
1558
+ end
1559
+ # The status of the Capability.
1560
+ attr_reader :status
1561
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1562
+ attr_reader :status_details
1563
+
1564
+ def self.inner_class_types
1565
+ @inner_class_types = { status_details: StatusDetail }
1566
+ end
1567
+
1568
+ def self.field_remappings
1569
+ @field_remappings = {}
1570
+ end
1571
+ end
1572
+
1573
+ class ZipPayments < ::Stripe::StripeObject
1574
+ class StatusDetail < ::Stripe::StripeObject
1575
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1576
+ attr_reader :code
1577
+ # Machine-readable code explaining how to make the Capability active.
1578
+ attr_reader :resolution
1579
+
1580
+ def self.inner_class_types
1581
+ @inner_class_types = {}
1582
+ end
1583
+
1584
+ def self.field_remappings
1585
+ @field_remappings = {}
1586
+ end
1587
+ end
1588
+ # The status of the Capability.
1589
+ attr_reader :status
1590
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1591
+ attr_reader :status_details
1592
+
1593
+ def self.inner_class_types
1594
+ @inner_class_types = { status_details: StatusDetail }
1595
+ end
1596
+
1597
+ def self.field_remappings
1598
+ @field_remappings = {}
1599
+ end
1600
+ end
1601
+ # Allow the merchant to process ACH debit payments.
1602
+ attr_reader :ach_debit_payments
1603
+ # Allow the merchant to process ACSS debit payments.
1604
+ attr_reader :acss_debit_payments
1605
+ # Allow the merchant to process Affirm payments.
1606
+ attr_reader :affirm_payments
1607
+ # Allow the merchant to process Afterpay/Clearpay payments.
1608
+ attr_reader :afterpay_clearpay_payments
1609
+ # Allow the merchant to process Alma payments.
1610
+ attr_reader :alma_payments
1611
+ # Allow the merchant to process Amazon Pay payments.
1612
+ attr_reader :amazon_pay_payments
1613
+ # Allow the merchant to process Australian BECS Direct Debit payments.
1614
+ attr_reader :au_becs_debit_payments
1615
+ # Allow the merchant to process BACS Direct Debit payments.
1616
+ attr_reader :bacs_debit_payments
1617
+ # Allow the merchant to process Bancontact payments.
1618
+ attr_reader :bancontact_payments
1619
+ # Allow the merchant to process BLIK payments.
1620
+ attr_reader :blik_payments
1621
+ # Allow the merchant to process Boleto payments.
1622
+ attr_reader :boleto_payments
1623
+ # Allow the merchant to collect card payments.
1624
+ attr_reader :card_payments
1625
+ # Allow the merchant to process Cartes Bancaires payments.
1626
+ attr_reader :cartes_bancaires_payments
1627
+ # Allow the merchant to process Cash App payments.
1628
+ attr_reader :cashapp_payments
1629
+ # Allow the merchant to process EPS payments.
1630
+ attr_reader :eps_payments
1631
+ # Allow the merchant to process FPX payments.
1632
+ attr_reader :fpx_payments
1633
+ # Allow the merchant to process UK bank transfer payments.
1634
+ attr_reader :gb_bank_transfer_payments
1635
+ # Allow the merchant to process GrabPay payments.
1636
+ attr_reader :grabpay_payments
1637
+ # Allow the merchant to process iDEAL payments.
1638
+ attr_reader :ideal_payments
1639
+ # Allow the merchant to process JCB card payments.
1640
+ attr_reader :jcb_payments
1641
+ # Allow the merchant to process Japanese bank transfer payments.
1642
+ attr_reader :jp_bank_transfer_payments
1643
+ # Allow the merchant to process Kakao Pay payments.
1644
+ attr_reader :kakao_pay_payments
1645
+ # Allow the merchant to process Klarna payments.
1646
+ attr_reader :klarna_payments
1647
+ # Allow the merchant to process Konbini convenience store payments.
1648
+ attr_reader :konbini_payments
1649
+ # Allow the merchant to process Korean card payments.
1650
+ attr_reader :kr_card_payments
1651
+ # Allow the merchant to process Link payments.
1652
+ attr_reader :link_payments
1653
+ # Allow the merchant to process MobilePay payments.
1654
+ attr_reader :mobilepay_payments
1655
+ # Allow the merchant to process Multibanco payments.
1656
+ attr_reader :multibanco_payments
1657
+ # Allow the merchant to process Mexican bank transfer payments.
1658
+ attr_reader :mx_bank_transfer_payments
1659
+ # Allow the merchant to process Naver Pay payments.
1660
+ attr_reader :naver_pay_payments
1661
+ # Allow the merchant to process OXXO payments.
1662
+ attr_reader :oxxo_payments
1663
+ # Allow the merchant to process Przelewy24 (P24) payments.
1664
+ attr_reader :p24_payments
1665
+ # Allow the merchant to process Pay by Bank payments.
1666
+ attr_reader :pay_by_bank_payments
1667
+ # Allow the merchant to process PAYCO payments.
1668
+ attr_reader :payco_payments
1669
+ # Allow the merchant to process PayNow payments.
1670
+ attr_reader :paynow_payments
1671
+ # Allow the merchant to process PromptPay payments.
1672
+ attr_reader :promptpay_payments
1673
+ # Allow the merchant to process Revolut Pay payments.
1674
+ attr_reader :revolut_pay_payments
1675
+ # Allow the merchant to process Samsung Pay payments.
1676
+ attr_reader :samsung_pay_payments
1677
+ # Allow the merchant to process SEPA bank transfer payments.
1678
+ attr_reader :sepa_bank_transfer_payments
1679
+ # Allow the merchant to process SEPA Direct Debit payments.
1680
+ attr_reader :sepa_debit_payments
1681
+ # Capabilities that enable the merchant to manage their Stripe Balance (/v1/balance).
1682
+ attr_reader :stripe_balance
1683
+ # Allow the merchant to process Sunbit payments.
1684
+ attr_reader :sunbit_payments
1685
+ # Allow the merchant to process Swish payments.
1686
+ attr_reader :swish_payments
1687
+ # Allow the merchant to process TWINT payments.
1688
+ attr_reader :twint_payments
1689
+ # Allow the merchant to process US bank transfer payments.
1690
+ attr_reader :us_bank_transfer_payments
1691
+ # Allow the merchant to process Zip payments.
1692
+ attr_reader :zip_payments
1693
+
1694
+ def self.inner_class_types
1695
+ @inner_class_types = {
1696
+ ach_debit_payments: AchDebitPayments,
1697
+ acss_debit_payments: AcssDebitPayments,
1698
+ affirm_payments: AffirmPayments,
1699
+ afterpay_clearpay_payments: AfterpayClearpayPayments,
1700
+ alma_payments: AlmaPayments,
1701
+ amazon_pay_payments: AmazonPayPayments,
1702
+ au_becs_debit_payments: AuBecsDebitPayments,
1703
+ bacs_debit_payments: BacsDebitPayments,
1704
+ bancontact_payments: BancontactPayments,
1705
+ blik_payments: BlikPayments,
1706
+ boleto_payments: BoletoPayments,
1707
+ card_payments: CardPayments,
1708
+ cartes_bancaires_payments: CartesBancairesPayments,
1709
+ cashapp_payments: CashappPayments,
1710
+ eps_payments: EpsPayments,
1711
+ fpx_payments: FpxPayments,
1712
+ gb_bank_transfer_payments: GbBankTransferPayments,
1713
+ grabpay_payments: GrabpayPayments,
1714
+ ideal_payments: IdealPayments,
1715
+ jcb_payments: JcbPayments,
1716
+ jp_bank_transfer_payments: JpBankTransferPayments,
1717
+ kakao_pay_payments: KakaoPayPayments,
1718
+ klarna_payments: KlarnaPayments,
1719
+ konbini_payments: KonbiniPayments,
1720
+ kr_card_payments: KrCardPayments,
1721
+ link_payments: LinkPayments,
1722
+ mobilepay_payments: MobilepayPayments,
1723
+ multibanco_payments: MultibancoPayments,
1724
+ mx_bank_transfer_payments: MxBankTransferPayments,
1725
+ naver_pay_payments: NaverPayPayments,
1726
+ oxxo_payments: OxxoPayments,
1727
+ p24_payments: P24Payments,
1728
+ pay_by_bank_payments: PayByBankPayments,
1729
+ payco_payments: PaycoPayments,
1730
+ paynow_payments: PaynowPayments,
1731
+ promptpay_payments: PromptpayPayments,
1732
+ revolut_pay_payments: RevolutPayPayments,
1733
+ samsung_pay_payments: SamsungPayPayments,
1734
+ sepa_bank_transfer_payments: SepaBankTransferPayments,
1735
+ sepa_debit_payments: SepaDebitPayments,
1736
+ stripe_balance: StripeBalance,
1737
+ sunbit_payments: SunbitPayments,
1738
+ swish_payments: SwishPayments,
1739
+ twint_payments: TwintPayments,
1740
+ us_bank_transfer_payments: UsBankTransferPayments,
1741
+ zip_payments: ZipPayments,
1742
+ }
1743
+ end
1744
+
1745
+ def self.field_remappings
1746
+ @field_remappings = {}
1747
+ end
1748
+ end
1749
+
1750
+ class CardPayments < ::Stripe::StripeObject
1751
+ class DeclineOn < ::Stripe::StripeObject
1752
+ # Whether Stripe automatically declines charges with an incorrect ZIP or postal code. This setting only applies when a ZIP or postal code is provided and they fail bank verification.
1753
+ attr_reader :avs_failure
1754
+ # Whether Stripe automatically declines charges with an incorrect CVC. This setting only applies when a CVC is provided and it fails bank verification.
1755
+ attr_reader :cvc_failure
1756
+
1757
+ def self.inner_class_types
1758
+ @inner_class_types = {}
1759
+ end
1760
+
1761
+ def self.field_remappings
1762
+ @field_remappings = {}
1763
+ end
1764
+ end
1765
+ # Automatically declines certain charge types regardless of whether the card issuer accepted or declined the charge.
1766
+ attr_reader :decline_on
1767
+
1768
+ def self.inner_class_types
1769
+ @inner_class_types = { decline_on: DeclineOn }
1770
+ end
1771
+
1772
+ def self.field_remappings
1773
+ @field_remappings = {}
1774
+ end
1775
+ end
1776
+
1777
+ class KonbiniPayments < ::Stripe::StripeObject
1778
+ class Support < ::Stripe::StripeObject
1779
+ class Hours < ::Stripe::StripeObject
1780
+ # Support hours end time (JST time of day) for in `HH:MM` format.
1781
+ attr_reader :end_time
1782
+ # Support hours start time (JST time of day) for in `HH:MM` format.
1783
+ attr_reader :start_time
1784
+
1785
+ def self.inner_class_types
1786
+ @inner_class_types = {}
1787
+ end
1788
+
1789
+ def self.field_remappings
1790
+ @field_remappings = {}
1791
+ end
1792
+ end
1793
+ # Support email address for Konbini payments.
1794
+ attr_reader :email
1795
+ # Support hours for Konbini payments.
1796
+ attr_reader :hours
1797
+ # Support phone number for Konbini payments.
1798
+ attr_reader :phone
1799
+
1800
+ def self.inner_class_types
1801
+ @inner_class_types = { hours: Hours }
1802
+ end
1803
+
1804
+ def self.field_remappings
1805
+ @field_remappings = {}
1806
+ end
1807
+ end
1808
+ # Support for Konbini payments.
1809
+ attr_reader :support
1810
+
1811
+ def self.inner_class_types
1812
+ @inner_class_types = { support: Support }
1813
+ end
1814
+
1815
+ def self.field_remappings
1816
+ @field_remappings = {}
1817
+ end
1818
+ end
1819
+
1820
+ class ScriptStatementDescriptor < ::Stripe::StripeObject
1821
+ class Kana < ::Stripe::StripeObject
1822
+ # The default text that appears on statements for non-card charges outside of Japan. For card charges, if you don’t set a statement_descriptor_prefix, this text is also used as the statement descriptor prefix. In that case, if concatenating the statement descriptor suffix causes the combined statement descriptor to exceed 22 characters, we truncate the statement_descriptor text to limit the full descriptor to 22 characters. For more information about statement descriptors and their requirements, see the Merchant Configuration settings documentation.
1823
+ attr_reader :descriptor
1824
+ # Default text that appears on statements for card charges outside of Japan, prefixing any dynamic statement_descriptor_suffix specified on the charge. To maximize space for the dynamic part of the descriptor, keep this text short. If you don’t specify this value, statement_descriptor is used as the prefix. For more information about statement descriptors and their requirements, see the Merchant Configuration settings documentation.
1825
+ attr_reader :prefix
1826
+
1827
+ def self.inner_class_types
1828
+ @inner_class_types = {}
1829
+ end
1830
+
1831
+ def self.field_remappings
1832
+ @field_remappings = {}
1833
+ end
1834
+ end
1835
+
1836
+ class Kanji < ::Stripe::StripeObject
1837
+ # The default text that appears on statements for non-card charges outside of Japan. For card charges, if you don’t set a statement_descriptor_prefix, this text is also used as the statement descriptor prefix. In that case, if concatenating the statement descriptor suffix causes the combined statement descriptor to exceed 22 characters, we truncate the statement_descriptor text to limit the full descriptor to 22 characters. For more information about statement descriptors and their requirements, see the Merchant Configuration settings documentation.
1838
+ attr_reader :descriptor
1839
+ # Default text that appears on statements for card charges outside of Japan, prefixing any dynamic statement_descriptor_suffix specified on the charge. To maximize space for the dynamic part of the descriptor, keep this text short. If you don’t specify this value, statement_descriptor is used as the prefix. For more information about statement descriptors and their requirements, see the Merchant Configuration settings documentation.
1840
+ attr_reader :prefix
1841
+
1842
+ def self.inner_class_types
1843
+ @inner_class_types = {}
1844
+ end
1845
+
1846
+ def self.field_remappings
1847
+ @field_remappings = {}
1848
+ end
1849
+ end
1850
+ # The Kana variation of statement_descriptor used for charges in Japan. Japanese statement descriptors have [special requirements](https://docs.stripe.com/get-started/account/statement-descriptors#set-japanese-statement-descriptors).
1851
+ attr_reader :kana
1852
+ # The Kanji variation of statement_descriptor used for charges in Japan. Japanese statement descriptors have [special requirements](https://docs.stripe.com/get-started/account/statement-descriptors#set-japanese-statement-descriptors).
1853
+ attr_reader :kanji
1854
+
1855
+ def self.inner_class_types
1856
+ @inner_class_types = { kana: Kana, kanji: Kanji }
1857
+ end
1858
+
1859
+ def self.field_remappings
1860
+ @field_remappings = {}
1861
+ end
1862
+ end
1863
+
1864
+ class SepaDebitPayments < ::Stripe::StripeObject
1865
+ # Creditor ID for SEPA Direct Debit payments.
1866
+ attr_reader :creditor_id
1867
+
1868
+ def self.inner_class_types
1869
+ @inner_class_types = {}
1870
+ end
1871
+
1872
+ def self.field_remappings
1873
+ @field_remappings = {}
1874
+ end
1875
+ end
1876
+
1877
+ class StatementDescriptor < ::Stripe::StripeObject
1878
+ # The default text that appears on statements for non-card charges outside of Japan. For card charges, if you don’t set a statement_descriptor_prefix, this text is also used as the statement descriptor prefix. In that case, if concatenating the statement descriptor suffix causes the combined statement descriptor to exceed 22 characters, we truncate the statement_descriptor text to limit the full descriptor to 22 characters. For more information about statement descriptors and their requirements, see the Merchant Configuration settings documentation.
1879
+ attr_reader :descriptor
1880
+ # Default text that appears on statements for card charges outside of Japan, prefixing any dynamic statement_descriptor_suffix specified on the charge. To maximize space for the dynamic part of the descriptor, keep this text short. If you don’t specify this value, statement_descriptor is used as the prefix. For more information about statement descriptors and their requirements, see the Merchant Configuration settings documentation.
1881
+ attr_reader :prefix
1882
+
1883
+ def self.inner_class_types
1884
+ @inner_class_types = {}
1885
+ end
1886
+
1887
+ def self.field_remappings
1888
+ @field_remappings = {}
1889
+ end
1890
+ end
1891
+
1892
+ class Support < ::Stripe::StripeObject
1893
+ class Address < ::Stripe::StripeObject
1894
+ # City, district, suburb, town, or village.
1895
+ attr_reader :city
1896
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
1897
+ attr_reader :country
1898
+ # Address line 1 (e.g., street, PO Box, or company name).
1899
+ attr_reader :line1
1900
+ # Address line 2 (e.g., apartment, suite, unit, or building).
1901
+ attr_reader :line2
1902
+ # ZIP or postal code.
1903
+ attr_reader :postal_code
1904
+ # State, county, province, or region.
1905
+ attr_reader :state
1906
+ # Town or district.
1907
+ attr_reader :town
1908
+
1909
+ def self.inner_class_types
1910
+ @inner_class_types = {}
1911
+ end
1912
+
1913
+ def self.field_remappings
1914
+ @field_remappings = {}
1915
+ end
1916
+ end
1917
+ # A publicly available mailing address for sending support issues to.
1918
+ attr_reader :address
1919
+ # A publicly available email address for sending support issues to.
1920
+ attr_reader :email
1921
+ # A publicly available phone number to call with support issues.
1922
+ attr_reader :phone
1923
+ # A publicly available website for handling support issues.
1924
+ attr_reader :url
1925
+
1926
+ def self.inner_class_types
1927
+ @inner_class_types = { address: Address }
1928
+ end
1929
+
1930
+ def self.field_remappings
1931
+ @field_remappings = {}
1932
+ end
1933
+ end
1934
+ # Indicates whether the merchant configuration is active. You can deactivate or reactivate the merchant configuration by updating this property. Deactivating the configuration by setting this value to false doesn't delete the configuration's properties.
1935
+ attr_reader :applied
1936
+ # Settings for Bacs Direct Debit payments.
1937
+ attr_reader :bacs_debit_payments
1938
+ # Settings used to apply the merchant's branding to email receipts, invoices, Checkout, and other products.
1939
+ attr_reader :branding
1940
+ # Capabilities that have been requested on the Merchant Configuration.
1941
+ attr_reader :capabilities
1942
+ # Card payments settings.
1943
+ attr_reader :card_payments
1944
+ # Settings specific to Konbini payments on the account.
1945
+ attr_reader :konbini_payments
1946
+ # The Merchant Category Code (MCC) for the merchant. MCCs classify businesses based on the goods or services they provide.
1947
+ attr_reader :mcc
1948
+ # Settings for the default text that appears on statements for language variations.
1949
+ attr_reader :script_statement_descriptor
1950
+ # Settings for SEPA Direct Debit payments.
1951
+ attr_reader :sepa_debit_payments
1952
+ # Statement descriptor.
1953
+ attr_reader :statement_descriptor
1954
+ # Publicly available contact information for sending support issues to.
1955
+ attr_reader :support
1956
+
1957
+ def self.inner_class_types
1958
+ @inner_class_types = {
1959
+ bacs_debit_payments: BacsDebitPayments,
1960
+ branding: Branding,
1961
+ capabilities: Capabilities,
1962
+ card_payments: CardPayments,
1963
+ konbini_payments: KonbiniPayments,
1964
+ script_statement_descriptor: ScriptStatementDescriptor,
1965
+ sepa_debit_payments: SepaDebitPayments,
1966
+ statement_descriptor: StatementDescriptor,
1967
+ support: Support,
1968
+ }
1969
+ end
1970
+
1971
+ def self.field_remappings
1972
+ @field_remappings = {}
1973
+ end
1974
+ end
1975
+
1976
+ class Recipient < ::Stripe::StripeObject
1977
+ class Capabilities < ::Stripe::StripeObject
1978
+ class StripeBalance < ::Stripe::StripeObject
1979
+ class Payouts < ::Stripe::StripeObject
1980
+ class StatusDetail < ::Stripe::StripeObject
1981
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
1982
+ attr_reader :code
1983
+ # Machine-readable code explaining how to make the Capability active.
1984
+ attr_reader :resolution
1985
+
1986
+ def self.inner_class_types
1987
+ @inner_class_types = {}
1988
+ end
1989
+
1990
+ def self.field_remappings
1991
+ @field_remappings = {}
1992
+ end
1993
+ end
1994
+ # The status of the Capability.
1995
+ attr_reader :status
1996
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
1997
+ attr_reader :status_details
1998
+
1999
+ def self.inner_class_types
2000
+ @inner_class_types = { status_details: StatusDetail }
2001
+ end
2002
+
2003
+ def self.field_remappings
2004
+ @field_remappings = {}
2005
+ end
2006
+ end
2007
+
2008
+ class StripeTransfers < ::Stripe::StripeObject
2009
+ class StatusDetail < ::Stripe::StripeObject
2010
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
2011
+ attr_reader :code
2012
+ # Machine-readable code explaining how to make the Capability active.
2013
+ attr_reader :resolution
2014
+
2015
+ def self.inner_class_types
2016
+ @inner_class_types = {}
2017
+ end
2018
+
2019
+ def self.field_remappings
2020
+ @field_remappings = {}
2021
+ end
2022
+ end
2023
+ # The status of the Capability.
2024
+ attr_reader :status
2025
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
2026
+ attr_reader :status_details
2027
+
2028
+ def self.inner_class_types
2029
+ @inner_class_types = { status_details: StatusDetail }
2030
+ end
2031
+
2032
+ def self.field_remappings
2033
+ @field_remappings = {}
2034
+ end
2035
+ end
2036
+ # Enables this Account to complete payouts from their Stripe Balance (/v1/balance).
2037
+ attr_reader :payouts
2038
+ # Enables this Account to receive /v1/transfers into their Stripe Balance (/v1/balance).
2039
+ attr_reader :stripe_transfers
2040
+
2041
+ def self.inner_class_types
2042
+ @inner_class_types = { payouts: Payouts, stripe_transfers: StripeTransfers }
2043
+ end
2044
+
2045
+ def self.field_remappings
2046
+ @field_remappings = {}
2047
+ end
2048
+ end
2049
+ # Capabilities that enable the recipient to manage their Stripe Balance (/v1/balance).
2050
+ attr_reader :stripe_balance
2051
+
2052
+ def self.inner_class_types
2053
+ @inner_class_types = { stripe_balance: StripeBalance }
2054
+ end
2055
+
2056
+ def self.field_remappings
2057
+ @field_remappings = {}
2058
+ end
2059
+ end
2060
+ # Indicates whether the recipient configuration is active. You can deactivate or reactivate the recipient configuration by updating this property. Deactivating the configuration by setting this value to false unrequest all capabilities within the configuration. It will not delete any of the configuration's other properties.
2061
+ attr_reader :applied
2062
+ # Capabilities that have been requested on the Recipient Configuration.
2063
+ attr_reader :capabilities
2064
+
2065
+ def self.inner_class_types
2066
+ @inner_class_types = { capabilities: Capabilities }
2067
+ end
2068
+
2069
+ def self.field_remappings
2070
+ @field_remappings = {}
2071
+ end
2072
+ end
2073
+ # The Customer Configuration allows the Account to be used in inbound payment flows (i.e. customer-facing payment and billing flows).
2074
+ attr_reader :customer
2075
+ # Enables the Account to act as a connected account and collect payments facilitated by a Connect platform. You must onboard your platform to Connect before you can add this configuration to your connected accounts. Utilize this configuration when the Account will be the Merchant of Record, like with Direct charges or Destination Charges with on_behalf_of set.
2076
+ attr_reader :merchant
2077
+ # The Recipient Configuration allows the Account to receive funds. Utilize this configuration if the Account will not be the Merchant of Record, like with Separate Charges & Transfers, or Destination Charges without on_behalf_of set.
2078
+ attr_reader :recipient
2079
+
2080
+ def self.inner_class_types
2081
+ @inner_class_types = { customer: Customer, merchant: Merchant, recipient: Recipient }
2082
+ end
2083
+
2084
+ def self.field_remappings
2085
+ @field_remappings = {}
2086
+ end
2087
+ end
2088
+
2089
+ class Defaults < ::Stripe::StripeObject
2090
+ class Profile < ::Stripe::StripeObject
2091
+ # The business's publicly-available website.
2092
+ attr_reader :business_url
2093
+ # The customer-facing business name.
2094
+ attr_reader :doing_business_as
2095
+ # Internal-only description of the product sold or service provided by the business. It's used by Stripe for risk and underwriting purposes.
2096
+ attr_reader :product_description
2097
+
2098
+ def self.inner_class_types
2099
+ @inner_class_types = {}
2100
+ end
2101
+
2102
+ def self.field_remappings
2103
+ @field_remappings = {}
2104
+ end
2105
+ end
2106
+
2107
+ class Responsibilities < ::Stripe::StripeObject
2108
+ # Indicates whether the platform or connected account is responsible for paying Stripe fees for pricing-control-eligible products.
2109
+ attr_reader :fees_collector
2110
+ # A value indicating the responsibility for losses on this account.
2111
+ attr_reader :losses_collector
2112
+ # A value indicating responsibility for collecting requirements on this account.
2113
+ attr_reader :requirements_collector
2114
+
2115
+ def self.inner_class_types
2116
+ @inner_class_types = {}
2117
+ end
2118
+
2119
+ def self.field_remappings
2120
+ @field_remappings = {}
2121
+ end
2122
+ end
2123
+ # Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
2124
+ attr_reader :currency
2125
+ # The Account's preferred locales (languages), ordered by preference.
2126
+ attr_reader :locales
2127
+ # Account profile information.
2128
+ attr_reader :profile
2129
+ # Default responsibilities held by either Stripe or the platform.
2130
+ attr_reader :responsibilities
2131
+
2132
+ def self.inner_class_types
2133
+ @inner_class_types = { profile: Profile, responsibilities: Responsibilities }
2134
+ end
2135
+
2136
+ def self.field_remappings
2137
+ @field_remappings = {}
2138
+ end
2139
+ end
2140
+
2141
+ class FutureRequirements < ::Stripe::StripeObject
2142
+ class Entry < ::Stripe::StripeObject
2143
+ class Error < ::Stripe::StripeObject
2144
+ # Machine-readable code describing the error.
2145
+ attr_reader :code
2146
+ # Human-readable description of the error.
2147
+ attr_reader :description
2148
+
2149
+ def self.inner_class_types
2150
+ @inner_class_types = {}
2151
+ end
2152
+
2153
+ def self.field_remappings
2154
+ @field_remappings = {}
2155
+ end
2156
+ end
2157
+
2158
+ class Impact < ::Stripe::StripeObject
2159
+ class RestrictsCapability < ::Stripe::StripeObject
2160
+ class Deadline < ::Stripe::StripeObject
2161
+ # The current status of the requirement's impact.
2162
+ attr_reader :status
2163
+
2164
+ def self.inner_class_types
2165
+ @inner_class_types = {}
2166
+ end
2167
+
2168
+ def self.field_remappings
2169
+ @field_remappings = {}
2170
+ end
2171
+ end
2172
+ # The name of the Capability which will be restricted.
2173
+ attr_reader :capability
2174
+ # The configuration which specifies the Capability which will be restricted.
2175
+ attr_reader :configuration
2176
+ # Details about when in the account lifecycle the requirement must be collected by the avoid the Capability restriction.
2177
+ attr_reader :deadline
2178
+
2179
+ def self.inner_class_types
2180
+ @inner_class_types = { deadline: Deadline }
2181
+ end
2182
+
2183
+ def self.field_remappings
2184
+ @field_remappings = {}
2185
+ end
2186
+ end
2187
+ # The Capabilities that will be restricted if the requirement is not collected and satisfactory to Stripe.
2188
+ attr_reader :restricts_capabilities
2189
+
2190
+ def self.inner_class_types
2191
+ @inner_class_types = { restricts_capabilities: RestrictsCapability }
2192
+ end
2193
+
2194
+ def self.field_remappings
2195
+ @field_remappings = {}
2196
+ end
2197
+ end
2198
+
2199
+ class MinimumDeadline < ::Stripe::StripeObject
2200
+ # The current status of the requirement's impact.
2201
+ attr_reader :status
2202
+
2203
+ def self.inner_class_types
2204
+ @inner_class_types = {}
2205
+ end
2206
+
2207
+ def self.field_remappings
2208
+ @field_remappings = {}
2209
+ end
2210
+ end
2211
+
2212
+ class Reference < ::Stripe::StripeObject
2213
+ # If `inquiry` is the type, the inquiry token.
2214
+ attr_reader :inquiry
2215
+ # If `resource` is the type, the resource token.
2216
+ attr_reader :resource
2217
+ # The type of the reference. If the type is "inquiry", the inquiry token can be found in the "inquiry" field.
2218
+ # Otherwise the type is an API resource, the token for which can be found in the "resource" field.
2219
+ attr_reader :type
2220
+
2221
+ def self.inner_class_types
2222
+ @inner_class_types = {}
2223
+ end
2224
+
2225
+ def self.field_remappings
2226
+ @field_remappings = {}
2227
+ end
2228
+ end
2229
+
2230
+ class RequestedReason < ::Stripe::StripeObject
2231
+ # Machine-readable description of Stripe's reason for collecting the requirement.
2232
+ attr_reader :code
2233
+
2234
+ def self.inner_class_types
2235
+ @inner_class_types = {}
2236
+ end
2237
+
2238
+ def self.field_remappings
2239
+ @field_remappings = {}
2240
+ end
2241
+ end
2242
+ # Indicates whether the platform or Stripe is currently responsible for taking action on the requirement. Value can be `user` or `stripe`.
2243
+ attr_reader :awaiting_action_from
2244
+ # Machine-readable string describing the requirement.
2245
+ attr_reader :description
2246
+ # Descriptions of why the requirement must be collected, or why the collected information isn't satisfactory to Stripe.
2247
+ attr_reader :errors
2248
+ # A hash describing the impact of not collecting the requirement, or Stripe not being able to verify the collected information.
2249
+ attr_reader :impact
2250
+ # The soonest point when the account will be impacted by not providing the requirement.
2251
+ attr_reader :minimum_deadline
2252
+ # A reference to the location of the requirement.
2253
+ attr_reader :reference
2254
+ # A list of reasons why Stripe is collecting the requirement.
2255
+ attr_reader :requested_reasons
2256
+
2257
+ def self.inner_class_types
2258
+ @inner_class_types = {
2259
+ errors: Error,
2260
+ impact: Impact,
2261
+ minimum_deadline: MinimumDeadline,
2262
+ reference: Reference,
2263
+ requested_reasons: RequestedReason,
2264
+ }
2265
+ end
2266
+
2267
+ def self.field_remappings
2268
+ @field_remappings = {}
2269
+ end
2270
+ end
2271
+
2272
+ class Summary < ::Stripe::StripeObject
2273
+ class MinimumDeadline < ::Stripe::StripeObject
2274
+ # The current strictest status of all requirements on the Account.
2275
+ attr_reader :status
2276
+ # The soonest RFC3339 date & time UTC value a requirement can impact the Account.
2277
+ attr_reader :time
2278
+
2279
+ def self.inner_class_types
2280
+ @inner_class_types = {}
2281
+ end
2282
+
2283
+ def self.field_remappings
2284
+ @field_remappings = {}
2285
+ end
2286
+ end
2287
+ # The soonest date and time a requirement on the Account will become `past due`. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: `2022-09-18T13:22:18.123Z`.
2288
+ attr_reader :minimum_deadline
2289
+
2290
+ def self.inner_class_types
2291
+ @inner_class_types = { minimum_deadline: MinimumDeadline }
2292
+ end
2293
+
2294
+ def self.field_remappings
2295
+ @field_remappings = {}
2296
+ end
2297
+ end
2298
+ # A list of requirements for the Account.
2299
+ attr_reader :entries
2300
+ # The time at which the future requirements become effective.
2301
+ attr_reader :minimum_transition_date
2302
+ # An object containing an overview of requirements for the Account.
2303
+ attr_reader :summary
2304
+
2305
+ def self.inner_class_types
2306
+ @inner_class_types = { entries: Entry, summary: Summary }
2307
+ end
2308
+
2309
+ def self.field_remappings
2310
+ @field_remappings = {}
2311
+ end
2312
+ end
2313
+
2314
+ class Identity < ::Stripe::StripeObject
2315
+ class Attestations < ::Stripe::StripeObject
2316
+ class DirectorshipDeclaration < ::Stripe::StripeObject
2317
+ # The time marking when the director attestation was made. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2318
+ attr_reader :date
2319
+ # The IP address from which the director attestation was made.
2320
+ attr_reader :ip
2321
+ # The user agent of the browser from which the director attestation was made.
2322
+ attr_reader :user_agent
2323
+
2324
+ def self.inner_class_types
2325
+ @inner_class_types = {}
2326
+ end
2327
+
2328
+ def self.field_remappings
2329
+ @field_remappings = {}
2330
+ end
2331
+ end
2332
+
2333
+ class OwnershipDeclaration < ::Stripe::StripeObject
2334
+ # The time marking when the beneficial owner attestation was made. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2335
+ attr_reader :date
2336
+ # The IP address from which the beneficial owner attestation was made.
2337
+ attr_reader :ip
2338
+ # The user agent of the browser from which the beneficial owner attestation was made.
2339
+ attr_reader :user_agent
2340
+
2341
+ def self.inner_class_types
2342
+ @inner_class_types = {}
2343
+ end
2344
+
2345
+ def self.field_remappings
2346
+ @field_remappings = {}
2347
+ end
2348
+ end
2349
+
2350
+ class PersonsProvided < ::Stripe::StripeObject
2351
+ # Whether the company’s directors have been provided. Set this Boolean to true after creating all the company’s directors with the [Persons API](https://docs.stripe.com/api/v2/core/accounts/createperson).
2352
+ attr_reader :directors
2353
+ # Whether the company’s executives have been provided. Set this Boolean to true after creating all the company’s executives with the [Persons API](https://docs.stripe.com/api/v2/core/accounts/createperson).
2354
+ attr_reader :executives
2355
+ # Whether the company’s owners have been provided. Set this Boolean to true after creating all the company’s owners with the [Persons API](https://docs.stripe.com/api/v2/core/accounts/createperson).
2356
+ attr_reader :owners
2357
+ # Reason for why the company is exempt from providing ownership information.
2358
+ attr_reader :ownership_exemption_reason
2359
+
2360
+ def self.inner_class_types
2361
+ @inner_class_types = {}
2362
+ end
2363
+
2364
+ def self.field_remappings
2365
+ @field_remappings = {}
2366
+ end
2367
+ end
2368
+
2369
+ class RepresentativeDeclaration < ::Stripe::StripeObject
2370
+ # The time marking when the representative attestation was made. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2371
+ attr_reader :date
2372
+ # The IP address from which the representative attestation was made.
2373
+ attr_reader :ip
2374
+ # The user agent of the browser from which the representative attestation was made.
2375
+ attr_reader :user_agent
2376
+
2377
+ def self.inner_class_types
2378
+ @inner_class_types = {}
2379
+ end
2380
+
2381
+ def self.field_remappings
2382
+ @field_remappings = {}
2383
+ end
2384
+ end
2385
+
2386
+ class TermsOfService < ::Stripe::StripeObject
2387
+ class Account < ::Stripe::StripeObject
2388
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2389
+ attr_reader :date
2390
+ # The IP address from which the Account's representative accepted the terms of service.
2391
+ attr_reader :ip
2392
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2393
+ attr_reader :user_agent
2394
+
2395
+ def self.inner_class_types
2396
+ @inner_class_types = {}
2397
+ end
2398
+
2399
+ def self.field_remappings
2400
+ @field_remappings = {}
2401
+ end
2402
+ end
2403
+ # Details on the Account's acceptance of the [Stripe Services Agreement](https://docs.stripe.com/connect/updating-accounts#tos-acceptance).
2404
+ attr_reader :account
2405
+
2406
+ def self.inner_class_types
2407
+ @inner_class_types = { account: Account }
2408
+ end
2409
+
2410
+ def self.field_remappings
2411
+ @field_remappings = {}
2412
+ end
2413
+ end
2414
+ # This hash is used to attest that the directors information provided to Stripe is both current and correct.
2415
+ attr_reader :directorship_declaration
2416
+ # This hash is used to attest that the beneficial owner information provided to Stripe is both current and correct.
2417
+ attr_reader :ownership_declaration
2418
+ # Attestation that all Persons with a specific Relationship value have been provided.
2419
+ attr_reader :persons_provided
2420
+ # This hash is used to attest that the representative is authorized to act as the representative of their legal entity.
2421
+ attr_reader :representative_declaration
2422
+ # Attestations of accepted terms of service agreements.
2423
+ attr_reader :terms_of_service
2424
+
2425
+ def self.inner_class_types
2426
+ @inner_class_types = {
2427
+ directorship_declaration: DirectorshipDeclaration,
2428
+ ownership_declaration: OwnershipDeclaration,
2429
+ persons_provided: PersonsProvided,
2430
+ representative_declaration: RepresentativeDeclaration,
2431
+ terms_of_service: TermsOfService,
2432
+ }
2433
+ end
2434
+
2435
+ def self.field_remappings
2436
+ @field_remappings = {}
2437
+ end
2438
+ end
2439
+
2440
+ class BusinessDetails < ::Stripe::StripeObject
2441
+ class Address < ::Stripe::StripeObject
2442
+ # City, district, suburb, town, or village.
2443
+ attr_reader :city
2444
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2445
+ attr_reader :country
2446
+ # Address line 1 (e.g., street, PO Box, or company name).
2447
+ attr_reader :line1
2448
+ # Address line 2 (e.g., apartment, suite, unit, or building).
2449
+ attr_reader :line2
2450
+ # ZIP or postal code.
2451
+ attr_reader :postal_code
2452
+ # State, county, province, or region.
2453
+ attr_reader :state
2454
+ # Town or district.
2455
+ attr_reader :town
2456
+
2457
+ def self.inner_class_types
2458
+ @inner_class_types = {}
2459
+ end
2460
+
2461
+ def self.field_remappings
2462
+ @field_remappings = {}
2463
+ end
2464
+ end
2465
+
2466
+ class AnnualRevenue < ::Stripe::StripeObject
2467
+ # Annual revenue amount in minor currency units (for example, '123' for 1.23 USD).
2468
+ attr_reader :amount
2469
+ # The close-out date of the preceding fiscal year in ISO 8601 format. E.g. 2023-12-31 for the 31st of December, 2023.
2470
+ attr_reader :fiscal_year_end
2471
+
2472
+ def self.inner_class_types
2473
+ @inner_class_types = {}
2474
+ end
2475
+
2476
+ def self.field_remappings
2477
+ @field_remappings = {}
2478
+ end
2479
+ end
2480
+
2481
+ class Documents < ::Stripe::StripeObject
2482
+ class BankAccountOwnershipVerification < ::Stripe::StripeObject
2483
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2484
+ attr_reader :files
2485
+ # The format of the document. Currently supports `files` only.
2486
+ attr_reader :type
2487
+
2488
+ def self.inner_class_types
2489
+ @inner_class_types = {}
2490
+ end
2491
+
2492
+ def self.field_remappings
2493
+ @field_remappings = {}
2494
+ end
2495
+ end
2496
+
2497
+ class CompanyLicense < ::Stripe::StripeObject
2498
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2499
+ attr_reader :files
2500
+ # The format of the document. Currently supports `files` only.
2501
+ attr_reader :type
2502
+
2503
+ def self.inner_class_types
2504
+ @inner_class_types = {}
2505
+ end
2506
+
2507
+ def self.field_remappings
2508
+ @field_remappings = {}
2509
+ end
2510
+ end
2511
+
2512
+ class CompanyMemorandumOfAssociation < ::Stripe::StripeObject
2513
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2514
+ attr_reader :files
2515
+ # The format of the document. Currently supports `files` only.
2516
+ attr_reader :type
2517
+
2518
+ def self.inner_class_types
2519
+ @inner_class_types = {}
2520
+ end
2521
+
2522
+ def self.field_remappings
2523
+ @field_remappings = {}
2524
+ end
2525
+ end
2526
+
2527
+ class CompanyMinisterialDecree < ::Stripe::StripeObject
2528
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2529
+ attr_reader :files
2530
+ # The format of the document. Currently supports `files` only.
2531
+ attr_reader :type
2532
+
2533
+ def self.inner_class_types
2534
+ @inner_class_types = {}
2535
+ end
2536
+
2537
+ def self.field_remappings
2538
+ @field_remappings = {}
2539
+ end
2540
+ end
2541
+
2542
+ class CompanyRegistrationVerification < ::Stripe::StripeObject
2543
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2544
+ attr_reader :files
2545
+ # The format of the document. Currently supports `files` only.
2546
+ attr_reader :type
2547
+
2548
+ def self.inner_class_types
2549
+ @inner_class_types = {}
2550
+ end
2551
+
2552
+ def self.field_remappings
2553
+ @field_remappings = {}
2554
+ end
2555
+ end
2556
+
2557
+ class CompanyTaxIdVerification < ::Stripe::StripeObject
2558
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2559
+ attr_reader :files
2560
+ # The format of the document. Currently supports `files` only.
2561
+ attr_reader :type
2562
+
2563
+ def self.inner_class_types
2564
+ @inner_class_types = {}
2565
+ end
2566
+
2567
+ def self.field_remappings
2568
+ @field_remappings = {}
2569
+ end
2570
+ end
2571
+
2572
+ class PrimaryVerification < ::Stripe::StripeObject
2573
+ class FrontBack < ::Stripe::StripeObject
2574
+ # A [file upload](https://docs.stripe.com/api/persons/update#create_file) token representing the back of the verification document. The purpose of the uploaded file should be 'identity_document'. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
2575
+ attr_reader :back
2576
+ # A [file upload](https://docs.stripe.com/api/persons/update#create_file) token representing the front of the verification document. The purpose of the uploaded file should be 'identity_document'. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
2577
+ attr_reader :front
2578
+
2579
+ def self.inner_class_types
2580
+ @inner_class_types = {}
2581
+ end
2582
+
2583
+ def self.field_remappings
2584
+ @field_remappings = {}
2585
+ end
2586
+ end
2587
+ # The [file upload](https://docs.stripe.com/api/persons/update#create_file) tokens for the front and back of the verification document.
2588
+ attr_reader :front_back
2589
+ # The format of the verification document. Currently supports `front_back` only.
2590
+ attr_reader :type
2591
+
2592
+ def self.inner_class_types
2593
+ @inner_class_types = { front_back: FrontBack }
2594
+ end
2595
+
2596
+ def self.field_remappings
2597
+ @field_remappings = {}
2598
+ end
2599
+ end
2600
+
2601
+ class ProofOfAddress < ::Stripe::StripeObject
2602
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2603
+ attr_reader :files
2604
+ # The format of the document. Currently supports `files` only.
2605
+ attr_reader :type
2606
+
2607
+ def self.inner_class_types
2608
+ @inner_class_types = {}
2609
+ end
2610
+
2611
+ def self.field_remappings
2612
+ @field_remappings = {}
2613
+ end
2614
+ end
2615
+
2616
+ class ProofOfRegistration < ::Stripe::StripeObject
2617
+ class Signer < ::Stripe::StripeObject
2618
+ # Person signing the document.
2619
+ attr_reader :person
2620
+
2621
+ def self.inner_class_types
2622
+ @inner_class_types = {}
2623
+ end
2624
+
2625
+ def self.field_remappings
2626
+ @field_remappings = {}
2627
+ end
2628
+ end
2629
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2630
+ attr_reader :files
2631
+ # Person that is signing the document.
2632
+ attr_reader :signer
2633
+ # The format of the document. Currently supports `files` only.
2634
+ attr_reader :type
2635
+
2636
+ def self.inner_class_types
2637
+ @inner_class_types = { signer: Signer }
2638
+ end
2639
+
2640
+ def self.field_remappings
2641
+ @field_remappings = {}
2642
+ end
2643
+ end
2644
+
2645
+ class ProofOfUltimateBeneficialOwnership < ::Stripe::StripeObject
2646
+ class Signer < ::Stripe::StripeObject
2647
+ # Person signing the document.
2648
+ attr_reader :person
2649
+
2650
+ def self.inner_class_types
2651
+ @inner_class_types = {}
2652
+ end
2653
+
2654
+ def self.field_remappings
2655
+ @field_remappings = {}
2656
+ end
2657
+ end
2658
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
2659
+ attr_reader :files
2660
+ # Person that is signing the document.
2661
+ attr_reader :signer
2662
+ # The format of the document. Currently supports `files` only.
2663
+ attr_reader :type
2664
+
2665
+ def self.inner_class_types
2666
+ @inner_class_types = { signer: Signer }
2667
+ end
2668
+
2669
+ def self.field_remappings
2670
+ @field_remappings = {}
2671
+ end
2672
+ end
2673
+ # One or more documents that support the Bank account ownership verification requirement. Must be a document associated with the account’s primary active bank account that displays the last 4 digits of the account number, either a statement or a check.
2674
+ attr_reader :bank_account_ownership_verification
2675
+ # One or more documents that demonstrate proof of a company’s license to operate.
2676
+ attr_reader :company_license
2677
+ # One or more documents showing the company’s Memorandum of Association.
2678
+ attr_reader :company_memorandum_of_association
2679
+ # Certain countries only: One or more documents showing the ministerial decree legalizing the company’s establishment.
2680
+ attr_reader :company_ministerial_decree
2681
+ # One or more documents that demonstrate proof of a company’s registration with the appropriate local authorities.
2682
+ attr_reader :company_registration_verification
2683
+ # One or more documents that demonstrate proof of a company’s tax ID.
2684
+ attr_reader :company_tax_id_verification
2685
+ # A document verifying the business.
2686
+ attr_reader :primary_verification
2687
+ # One or more documents that demonstrate proof of address.
2688
+ attr_reader :proof_of_address
2689
+ # One or more documents showing the company’s proof of registration with the national business registry.
2690
+ attr_reader :proof_of_registration
2691
+ # One or more documents that demonstrate proof of ultimate beneficial ownership.
2692
+ attr_reader :proof_of_ultimate_beneficial_ownership
2693
+
2694
+ def self.inner_class_types
2695
+ @inner_class_types = {
2696
+ bank_account_ownership_verification: BankAccountOwnershipVerification,
2697
+ company_license: CompanyLicense,
2698
+ company_memorandum_of_association: CompanyMemorandumOfAssociation,
2699
+ company_ministerial_decree: CompanyMinisterialDecree,
2700
+ company_registration_verification: CompanyRegistrationVerification,
2701
+ company_tax_id_verification: CompanyTaxIdVerification,
2702
+ primary_verification: PrimaryVerification,
2703
+ proof_of_address: ProofOfAddress,
2704
+ proof_of_registration: ProofOfRegistration,
2705
+ proof_of_ultimate_beneficial_ownership: ProofOfUltimateBeneficialOwnership,
2706
+ }
2707
+ end
2708
+
2709
+ def self.field_remappings
2710
+ @field_remappings = {}
2711
+ end
2712
+ end
2713
+
2714
+ class IdNumber < ::Stripe::StripeObject
2715
+ # The registrar of the ID number (Only valid for DE ID number types).
2716
+ attr_reader :registrar
2717
+ # Open Enum. The ID number type of a business entity.
2718
+ attr_reader :type
2719
+
2720
+ def self.inner_class_types
2721
+ @inner_class_types = {}
2722
+ end
2723
+
2724
+ def self.field_remappings
2725
+ @field_remappings = {}
2726
+ end
2727
+ end
2728
+
2729
+ class MonthlyEstimatedRevenue < ::Stripe::StripeObject
2730
+ # Estimated monthly revenue amount in minor currency units (for example, '123' for 1.23 USD).
2731
+ attr_reader :amount
2732
+
2733
+ def self.inner_class_types
2734
+ @inner_class_types = {}
2735
+ end
2736
+
2737
+ def self.field_remappings
2738
+ @field_remappings = {}
2739
+ end
2740
+ end
2741
+
2742
+ class RegistrationDate < ::Stripe::StripeObject
2743
+ # The day of registration, between 1 and 31.
2744
+ attr_reader :day
2745
+ # The month of registration, between 1 and 12.
2746
+ attr_reader :month
2747
+ # The four-digit year of registration.
2748
+ attr_reader :year
2749
+
2750
+ def self.inner_class_types
2751
+ @inner_class_types = {}
2752
+ end
2753
+
2754
+ def self.field_remappings
2755
+ @field_remappings = {}
2756
+ end
2757
+ end
2758
+
2759
+ class ScriptAddresses < ::Stripe::StripeObject
2760
+ class Kana < ::Stripe::StripeObject
2761
+ # City, district, suburb, town, or village.
2762
+ attr_reader :city
2763
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2764
+ attr_reader :country
2765
+ # Address line 1 (e.g., street, PO Box, or company name).
2766
+ attr_reader :line1
2767
+ # Address line 2 (e.g., apartment, suite, unit, or building).
2768
+ attr_reader :line2
2769
+ # ZIP or postal code.
2770
+ attr_reader :postal_code
2771
+ # State, county, province, or region.
2772
+ attr_reader :state
2773
+ # Town or district.
2774
+ attr_reader :town
2775
+
2776
+ def self.inner_class_types
2777
+ @inner_class_types = {}
2778
+ end
2779
+
2780
+ def self.field_remappings
2781
+ @field_remappings = {}
2782
+ end
2783
+ end
2784
+
2785
+ class Kanji < ::Stripe::StripeObject
2786
+ # City, district, suburb, town, or village.
2787
+ attr_reader :city
2788
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2789
+ attr_reader :country
2790
+ # Address line 1 (e.g., street, PO Box, or company name).
2791
+ attr_reader :line1
2792
+ # Address line 2 (e.g., apartment, suite, unit, or building).
2793
+ attr_reader :line2
2794
+ # ZIP or postal code.
2795
+ attr_reader :postal_code
2796
+ # State, county, province, or region.
2797
+ attr_reader :state
2798
+ # Town or district.
2799
+ attr_reader :town
2800
+
2801
+ def self.inner_class_types
2802
+ @inner_class_types = {}
2803
+ end
2804
+
2805
+ def self.field_remappings
2806
+ @field_remappings = {}
2807
+ end
2808
+ end
2809
+ # Kana Address.
2810
+ attr_reader :kana
2811
+ # Kanji Address.
2812
+ attr_reader :kanji
2813
+
2814
+ def self.inner_class_types
2815
+ @inner_class_types = { kana: Kana, kanji: Kanji }
2816
+ end
2817
+
2818
+ def self.field_remappings
2819
+ @field_remappings = {}
2820
+ end
2821
+ end
2822
+
2823
+ class ScriptNames < ::Stripe::StripeObject
2824
+ class Kana < ::Stripe::StripeObject
2825
+ # Registered name of the business.
2826
+ attr_reader :registered_name
2827
+
2828
+ def self.inner_class_types
2829
+ @inner_class_types = {}
2830
+ end
2831
+
2832
+ def self.field_remappings
2833
+ @field_remappings = {}
2834
+ end
2835
+ end
2836
+
2837
+ class Kanji < ::Stripe::StripeObject
2838
+ # Registered name of the business.
2839
+ attr_reader :registered_name
2840
+
2841
+ def self.inner_class_types
2842
+ @inner_class_types = {}
2843
+ end
2844
+
2845
+ def self.field_remappings
2846
+ @field_remappings = {}
2847
+ end
2848
+ end
2849
+ # Kana name.
2850
+ attr_reader :kana
2851
+ # Kanji name.
2852
+ attr_reader :kanji
2853
+
2854
+ def self.inner_class_types
2855
+ @inner_class_types = { kana: Kana, kanji: Kanji }
2856
+ end
2857
+
2858
+ def self.field_remappings
2859
+ @field_remappings = {}
2860
+ end
2861
+ end
2862
+ # The company’s primary address.
2863
+ attr_reader :address
2864
+ # The business gross annual revenue for its preceding fiscal year.
2865
+ attr_reader :annual_revenue
2866
+ # Documents that may be submitted to satisfy various informational requests.
2867
+ attr_reader :documents
2868
+ # Estimated maximum number of workers currently engaged by the business (including employees, contractors, and vendors).
2869
+ attr_reader :estimated_worker_count
2870
+ # The provided ID numbers of a business entity.
2871
+ attr_reader :id_numbers
2872
+ # An estimate of the monthly revenue of the business. Only accepted for accounts in Brazil and India.
2873
+ attr_reader :monthly_estimated_revenue
2874
+ # The company’s phone number (used for verification).
2875
+ attr_reader :phone
2876
+ # The business legal name.
2877
+ attr_reader :registered_name
2878
+ # When the business was incorporated or registered.
2879
+ attr_reader :registration_date
2880
+ # The business registration address of the business entity in non latin script.
2881
+ attr_reader :script_addresses
2882
+ # The business legal name in non latin script.
2883
+ attr_reader :script_names
2884
+ # The category identifying the legal structure of the business.
2885
+ attr_reader :structure
2886
+
2887
+ def self.inner_class_types
2888
+ @inner_class_types = {
2889
+ address: Address,
2890
+ annual_revenue: AnnualRevenue,
2891
+ documents: Documents,
2892
+ id_numbers: IdNumber,
2893
+ monthly_estimated_revenue: MonthlyEstimatedRevenue,
2894
+ registration_date: RegistrationDate,
2895
+ script_addresses: ScriptAddresses,
2896
+ script_names: ScriptNames,
2897
+ }
2898
+ end
2899
+
2900
+ def self.field_remappings
2901
+ @field_remappings = {}
2902
+ end
2903
+ end
2904
+
2905
+ class Individual < ::Stripe::StripeObject
2906
+ class AdditionalAddress < ::Stripe::StripeObject
2907
+ # City, district, suburb, town, or village.
2908
+ attr_reader :city
2909
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2910
+ attr_reader :country
2911
+ # Address line 1 (e.g., street, PO Box, or company name).
2912
+ attr_reader :line1
2913
+ # Address line 2 (e.g., apartment, suite, unit, or building).
2914
+ attr_reader :line2
2915
+ # ZIP or postal code.
2916
+ attr_reader :postal_code
2917
+ # Purpose of additional address.
2918
+ attr_reader :purpose
2919
+ # State, county, province, or region.
2920
+ attr_reader :state
2921
+ # Town or district.
2922
+ attr_reader :town
2923
+
2924
+ def self.inner_class_types
2925
+ @inner_class_types = {}
2926
+ end
2927
+
2928
+ def self.field_remappings
2929
+ @field_remappings = {}
2930
+ end
2931
+ end
2932
+
2933
+ class AdditionalName < ::Stripe::StripeObject
2934
+ # The individual's full name.
2935
+ attr_reader :full_name
2936
+ # The individual's first or given name.
2937
+ attr_reader :given_name
2938
+ # The purpose or type of the additional name.
2939
+ attr_reader :purpose
2940
+ # The individual's last or family name.
2941
+ attr_reader :surname
2942
+
2943
+ def self.inner_class_types
2944
+ @inner_class_types = {}
2945
+ end
2946
+
2947
+ def self.field_remappings
2948
+ @field_remappings = {}
2949
+ end
2950
+ end
2951
+
2952
+ class AdditionalTermsOfService < ::Stripe::StripeObject
2953
+ class Account < ::Stripe::StripeObject
2954
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2955
+ attr_reader :date
2956
+ # The IP address from which the Account's representative accepted the terms of service.
2957
+ attr_reader :ip
2958
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2959
+ attr_reader :user_agent
2960
+
2961
+ def self.inner_class_types
2962
+ @inner_class_types = {}
2963
+ end
2964
+
2965
+ def self.field_remappings
2966
+ @field_remappings = {}
2967
+ end
2968
+ end
2969
+ # Stripe terms of service agreement.
2970
+ attr_reader :account
2971
+
2972
+ def self.inner_class_types
2973
+ @inner_class_types = { account: Account }
2974
+ end
2975
+
2976
+ def self.field_remappings
2977
+ @field_remappings = {}
2978
+ end
2979
+ end
2980
+
2981
+ class Address < ::Stripe::StripeObject
2982
+ # City, district, suburb, town, or village.
2983
+ attr_reader :city
2984
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
2985
+ attr_reader :country
2986
+ # Address line 1 (e.g., street, PO Box, or company name).
2987
+ attr_reader :line1
2988
+ # Address line 2 (e.g., apartment, suite, unit, or building).
2989
+ attr_reader :line2
2990
+ # ZIP or postal code.
2991
+ attr_reader :postal_code
2992
+ # State, county, province, or region.
2993
+ attr_reader :state
2994
+ # Town or district.
2995
+ attr_reader :town
2996
+
2997
+ def self.inner_class_types
2998
+ @inner_class_types = {}
2999
+ end
3000
+
3001
+ def self.field_remappings
3002
+ @field_remappings = {}
3003
+ end
3004
+ end
3005
+
3006
+ class DateOfBirth < ::Stripe::StripeObject
3007
+ # The day of birth, between 1 and 31.
3008
+ attr_reader :day
3009
+ # The month of birth, between 1 and 12.
3010
+ attr_reader :month
3011
+ # The four-digit year of birth.
3012
+ attr_reader :year
3013
+
3014
+ def self.inner_class_types
3015
+ @inner_class_types = {}
3016
+ end
3017
+
3018
+ def self.field_remappings
3019
+ @field_remappings = {}
3020
+ end
3021
+ end
3022
+
3023
+ class Documents < ::Stripe::StripeObject
3024
+ class CompanyAuthorization < ::Stripe::StripeObject
3025
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
3026
+ attr_reader :files
3027
+ # The format of the document. Currently supports `files` only.
3028
+ attr_reader :type
3029
+
3030
+ def self.inner_class_types
3031
+ @inner_class_types = {}
3032
+ end
3033
+
3034
+ def self.field_remappings
3035
+ @field_remappings = {}
3036
+ end
3037
+ end
3038
+
3039
+ class Passport < ::Stripe::StripeObject
3040
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
3041
+ attr_reader :files
3042
+ # The format of the document. Currently supports `files` only.
3043
+ attr_reader :type
3044
+
3045
+ def self.inner_class_types
3046
+ @inner_class_types = {}
3047
+ end
3048
+
3049
+ def self.field_remappings
3050
+ @field_remappings = {}
3051
+ end
3052
+ end
3053
+
3054
+ class PrimaryVerification < ::Stripe::StripeObject
3055
+ class FrontBack < ::Stripe::StripeObject
3056
+ # A [file upload](https://docs.stripe.com/api/persons/update#create_file) token representing the back of the verification document. The purpose of the uploaded file should be 'identity_document'. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
3057
+ attr_reader :back
3058
+ # A [file upload](https://docs.stripe.com/api/persons/update#create_file) token representing the front of the verification document. The purpose of the uploaded file should be 'identity_document'. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
3059
+ attr_reader :front
3060
+
3061
+ def self.inner_class_types
3062
+ @inner_class_types = {}
3063
+ end
3064
+
3065
+ def self.field_remappings
3066
+ @field_remappings = {}
3067
+ end
3068
+ end
3069
+ # The [file upload](https://docs.stripe.com/api/persons/update#create_file) tokens for the front and back of the verification document.
3070
+ attr_reader :front_back
3071
+ # The format of the verification document. Currently supports `front_back` only.
3072
+ attr_reader :type
3073
+
3074
+ def self.inner_class_types
3075
+ @inner_class_types = { front_back: FrontBack }
3076
+ end
3077
+
3078
+ def self.field_remappings
3079
+ @field_remappings = {}
3080
+ end
3081
+ end
3082
+
3083
+ class SecondaryVerification < ::Stripe::StripeObject
3084
+ class FrontBack < ::Stripe::StripeObject
3085
+ # A [file upload](https://docs.stripe.com/api/persons/update#create_file) token representing the back of the verification document. The purpose of the uploaded file should be 'identity_document'. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
3086
+ attr_reader :back
3087
+ # A [file upload](https://docs.stripe.com/api/persons/update#create_file) token representing the front of the verification document. The purpose of the uploaded file should be 'identity_document'. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
3088
+ attr_reader :front
3089
+
3090
+ def self.inner_class_types
3091
+ @inner_class_types = {}
3092
+ end
3093
+
3094
+ def self.field_remappings
3095
+ @field_remappings = {}
3096
+ end
3097
+ end
3098
+ # The [file upload](https://docs.stripe.com/api/persons/update#create_file) tokens for the front and back of the verification document.
3099
+ attr_reader :front_back
3100
+ # The format of the verification document. Currently supports `front_back` only.
3101
+ attr_reader :type
3102
+
3103
+ def self.inner_class_types
3104
+ @inner_class_types = { front_back: FrontBack }
3105
+ end
3106
+
3107
+ def self.field_remappings
3108
+ @field_remappings = {}
3109
+ end
3110
+ end
3111
+
3112
+ class Visa < ::Stripe::StripeObject
3113
+ # One or more document IDs returned by a [file upload](https://docs.stripe.com/api/persons/update#create_file) with a purpose value of `account_requirement`.
3114
+ attr_reader :files
3115
+ # The format of the document. Currently supports `files` only.
3116
+ attr_reader :type
3117
+
3118
+ def self.inner_class_types
3119
+ @inner_class_types = {}
3120
+ end
3121
+
3122
+ def self.field_remappings
3123
+ @field_remappings = {}
3124
+ end
3125
+ end
3126
+ # One or more documents that demonstrate proof that this person is authorized to represent the company.
3127
+ attr_reader :company_authorization
3128
+ # One or more documents showing the person’s passport page with photo and personal data.
3129
+ attr_reader :passport
3130
+ # An identifying document showing the person's name, either a passport or local ID card.
3131
+ attr_reader :primary_verification
3132
+ # A document showing address, either a passport, local ID card, or utility bill from a well-known utility company.
3133
+ attr_reader :secondary_verification
3134
+ # One or more documents showing the person’s visa required for living in the country where they are residing.
3135
+ attr_reader :visa
3136
+
3137
+ def self.inner_class_types
3138
+ @inner_class_types = {
3139
+ company_authorization: CompanyAuthorization,
3140
+ passport: Passport,
3141
+ primary_verification: PrimaryVerification,
3142
+ secondary_verification: SecondaryVerification,
3143
+ visa: Visa,
3144
+ }
3145
+ end
3146
+
3147
+ def self.field_remappings
3148
+ @field_remappings = {}
3149
+ end
3150
+ end
3151
+
3152
+ class IdNumber < ::Stripe::StripeObject
3153
+ # The ID number type of an individual.
3154
+ attr_reader :type
3155
+
3156
+ def self.inner_class_types
3157
+ @inner_class_types = {}
3158
+ end
3159
+
3160
+ def self.field_remappings
3161
+ @field_remappings = {}
3162
+ end
3163
+ end
3164
+
3165
+ class Relationship < ::Stripe::StripeObject
3166
+ # Whether the individual is an authorizer of the Account's identity.
3167
+ attr_reader :authorizer
3168
+ # Whether the individual is a director of the Account's identity. Directors are typically members of the governing board of the company or are responsible for making sure that the company meets its regulatory obligations.
3169
+ attr_reader :director
3170
+ # Whether the individual has significant responsibility to control, manage, or direct the organization.
3171
+ attr_reader :executive
3172
+ # Whether the individual is the legal guardian of the Account's representative.
3173
+ attr_reader :legal_guardian
3174
+ # Whether the individual is an owner of the Account's identity.
3175
+ attr_reader :owner
3176
+ # The percentage of the Account's identity that the individual owns.
3177
+ attr_reader :percent_ownership
3178
+ # Whether the individual is authorized as the primary representative of the Account. This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.
3179
+ attr_reader :representative
3180
+ # The individual's title (e.g., CEO, Support Engineer).
3181
+ attr_reader :title
3182
+
3183
+ def self.inner_class_types
3184
+ @inner_class_types = {}
3185
+ end
3186
+
3187
+ def self.field_remappings
3188
+ @field_remappings = {}
3189
+ end
3190
+
3191
+ def self.field_encodings
3192
+ @field_encodings = { percent_ownership: :decimal_string }
3193
+ end
3194
+ end
3195
+
3196
+ class ScriptAddresses < ::Stripe::StripeObject
3197
+ class Kana < ::Stripe::StripeObject
3198
+ # City, district, suburb, town, or village.
3199
+ attr_reader :city
3200
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
3201
+ attr_reader :country
3202
+ # Address line 1 (e.g., street, PO Box, or company name).
3203
+ attr_reader :line1
3204
+ # Address line 2 (e.g., apartment, suite, unit, or building).
3205
+ attr_reader :line2
3206
+ # ZIP or postal code.
3207
+ attr_reader :postal_code
3208
+ # State, county, province, or region.
3209
+ attr_reader :state
3210
+ # Town or district.
3211
+ attr_reader :town
3212
+
3213
+ def self.inner_class_types
3214
+ @inner_class_types = {}
3215
+ end
3216
+
3217
+ def self.field_remappings
3218
+ @field_remappings = {}
3219
+ end
3220
+ end
3221
+
3222
+ class Kanji < ::Stripe::StripeObject
3223
+ # City, district, suburb, town, or village.
3224
+ attr_reader :city
3225
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
3226
+ attr_reader :country
3227
+ # Address line 1 (e.g., street, PO Box, or company name).
3228
+ attr_reader :line1
3229
+ # Address line 2 (e.g., apartment, suite, unit, or building).
3230
+ attr_reader :line2
3231
+ # ZIP or postal code.
3232
+ attr_reader :postal_code
3233
+ # State, county, province, or region.
3234
+ attr_reader :state
3235
+ # Town or district.
3236
+ attr_reader :town
3237
+
3238
+ def self.inner_class_types
3239
+ @inner_class_types = {}
3240
+ end
3241
+
3242
+ def self.field_remappings
3243
+ @field_remappings = {}
3244
+ end
3245
+ end
3246
+ # Kana Address.
3247
+ attr_reader :kana
3248
+ # Kanji Address.
3249
+ attr_reader :kanji
3250
+
3251
+ def self.inner_class_types
3252
+ @inner_class_types = { kana: Kana, kanji: Kanji }
3253
+ end
3254
+
3255
+ def self.field_remappings
3256
+ @field_remappings = {}
3257
+ end
3258
+ end
3259
+
3260
+ class ScriptNames < ::Stripe::StripeObject
3261
+ class Kana < ::Stripe::StripeObject
3262
+ # The person's first or given name.
3263
+ attr_reader :given_name
3264
+ # The person's last or family name.
3265
+ attr_reader :surname
3266
+
3267
+ def self.inner_class_types
3268
+ @inner_class_types = {}
3269
+ end
3270
+
3271
+ def self.field_remappings
3272
+ @field_remappings = {}
3273
+ end
3274
+ end
3275
+
3276
+ class Kanji < ::Stripe::StripeObject
3277
+ # The person's first or given name.
3278
+ attr_reader :given_name
3279
+ # The person's last or family name.
3280
+ attr_reader :surname
3281
+
3282
+ def self.inner_class_types
3283
+ @inner_class_types = {}
3284
+ end
3285
+
3286
+ def self.field_remappings
3287
+ @field_remappings = {}
3288
+ end
3289
+ end
3290
+ # Persons name in kana script.
3291
+ attr_reader :kana
3292
+ # Persons name in kanji script.
3293
+ attr_reader :kanji
3294
+
3295
+ def self.inner_class_types
3296
+ @inner_class_types = { kana: Kana, kanji: Kanji }
3297
+ end
3298
+
3299
+ def self.field_remappings
3300
+ @field_remappings = {}
3301
+ end
3302
+ end
3303
+ # The account ID which the individual belongs to.
3304
+ attr_reader :account
3305
+ # Additional addresses associated with the individual.
3306
+ attr_reader :additional_addresses
3307
+ # Additional names (e.g. aliases) associated with the individual.
3308
+ attr_reader :additional_names
3309
+ # Terms of service acceptances.
3310
+ attr_reader :additional_terms_of_service
3311
+ # The individual's residential address.
3312
+ attr_reader :address
3313
+ # Time at which the object was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
3314
+ attr_reader :created
3315
+ # The individual's date of birth.
3316
+ attr_reader :date_of_birth
3317
+ # Documents that may be submitted to satisfy various informational requests.
3318
+ attr_reader :documents
3319
+ # The individual's email address. You can only set this field when the Account is configured as a `merchant` or `recipient`. Use `contact_email` as the primary contact email for this Account.
3320
+ attr_reader :email
3321
+ # The individual's first name.
3322
+ attr_reader :given_name
3323
+ # Unique identifier for the object.
3324
+ attr_reader :id
3325
+ # The identification numbers (e.g., SSN) associated with the individual.
3326
+ attr_reader :id_numbers
3327
+ # The individual's gender (International regulations require either "male” or "female").
3328
+ attr_reader :legal_gender
3329
+ # Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
3330
+ attr_reader :metadata
3331
+ # The countries where the individual is a national. Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
3332
+ attr_reader :nationalities
3333
+ # String representing the object's type. Objects of the same type share the same value.
3334
+ attr_reader :object
3335
+ # The individual's phone number.
3336
+ attr_reader :phone
3337
+ # Indicates if the individual or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction.
3338
+ attr_reader :political_exposure
3339
+ # The relationship that this individual has with the Account's identity.
3340
+ attr_reader :relationship
3341
+ # The script addresses (e.g., non-Latin characters) associated with the individual.
3342
+ attr_reader :script_addresses
3343
+ # The script names (e.g. non-Latin characters) associated with the individual.
3344
+ attr_reader :script_names
3345
+ # The individual's last name.
3346
+ attr_reader :surname
3347
+ # Time at which the object was last updated.
3348
+ attr_reader :updated
3349
+
3350
+ def self.inner_class_types
3351
+ @inner_class_types = {
3352
+ additional_addresses: AdditionalAddress,
3353
+ additional_names: AdditionalName,
3354
+ additional_terms_of_service: AdditionalTermsOfService,
3355
+ address: Address,
3356
+ date_of_birth: DateOfBirth,
3357
+ documents: Documents,
3358
+ id_numbers: IdNumber,
3359
+ relationship: Relationship,
3360
+ script_addresses: ScriptAddresses,
3361
+ script_names: ScriptNames,
3362
+ }
3363
+ end
3364
+
3365
+ def self.field_remappings
3366
+ @field_remappings = {}
3367
+ end
3368
+
3369
+ def self.field_encodings
3370
+ @field_encodings = {
3371
+ relationship: { kind: :object, fields: { percent_ownership: :decimal_string } },
3372
+ }
3373
+ end
3374
+ end
3375
+ # Attestations from the identity's key people, e.g. owners, executives, directors, representatives.
3376
+ attr_reader :attestations
3377
+ # Information about the company or business.
3378
+ attr_reader :business_details
3379
+ # The country in which the account holder resides, or in which the business is legally established. This should be an [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code.
3380
+ attr_reader :country
3381
+ # The entity type represented by the Account. Ensure this field is accurate before adding configurations that rely on identity information, as it determines which identity fields apply and how the Account is validated.
3382
+ attr_reader :entity_type
3383
+ # Information about the individual represented by the Account. This property is `null` unless `entity_type` is set to `individual`.
3384
+ attr_reader :individual
3385
+
3386
+ def self.inner_class_types
3387
+ @inner_class_types = {
3388
+ attestations: Attestations,
3389
+ business_details: BusinessDetails,
3390
+ individual: Individual,
3391
+ }
3392
+ end
3393
+
3394
+ def self.field_remappings
3395
+ @field_remappings = {}
3396
+ end
3397
+
3398
+ def self.field_encodings
3399
+ @field_encodings = {
3400
+ individual: {
3401
+ kind: :object,
3402
+ fields: {
3403
+ relationship: { kind: :object, fields: { percent_ownership: :decimal_string } },
3404
+ },
3405
+ },
3406
+ }
3407
+ end
3408
+ end
3409
+
3410
+ class Requirements < ::Stripe::StripeObject
3411
+ class Entry < ::Stripe::StripeObject
3412
+ class Error < ::Stripe::StripeObject
3413
+ # Machine-readable code describing the error.
3414
+ attr_reader :code
3415
+ # Human-readable description of the error.
3416
+ attr_reader :description
3417
+
3418
+ def self.inner_class_types
3419
+ @inner_class_types = {}
3420
+ end
3421
+
3422
+ def self.field_remappings
3423
+ @field_remappings = {}
3424
+ end
3425
+ end
3426
+
3427
+ class Impact < ::Stripe::StripeObject
3428
+ class RestrictsCapability < ::Stripe::StripeObject
3429
+ class Deadline < ::Stripe::StripeObject
3430
+ # The current status of the requirement's impact.
3431
+ attr_reader :status
3432
+
3433
+ def self.inner_class_types
3434
+ @inner_class_types = {}
3435
+ end
3436
+
3437
+ def self.field_remappings
3438
+ @field_remappings = {}
3439
+ end
3440
+ end
3441
+ # The name of the Capability which will be restricted.
3442
+ attr_reader :capability
3443
+ # The configuration which specifies the Capability which will be restricted.
3444
+ attr_reader :configuration
3445
+ # Details about when in the account lifecycle the requirement must be collected by the avoid the Capability restriction.
3446
+ attr_reader :deadline
3447
+
3448
+ def self.inner_class_types
3449
+ @inner_class_types = { deadline: Deadline }
3450
+ end
3451
+
3452
+ def self.field_remappings
3453
+ @field_remappings = {}
3454
+ end
3455
+ end
3456
+ # The Capabilities that will be restricted if the requirement is not collected and satisfactory to Stripe.
3457
+ attr_reader :restricts_capabilities
3458
+
3459
+ def self.inner_class_types
3460
+ @inner_class_types = { restricts_capabilities: RestrictsCapability }
3461
+ end
3462
+
3463
+ def self.field_remappings
3464
+ @field_remappings = {}
3465
+ end
3466
+ end
3467
+
3468
+ class MinimumDeadline < ::Stripe::StripeObject
3469
+ # The current status of the requirement's impact.
3470
+ attr_reader :status
3471
+
3472
+ def self.inner_class_types
3473
+ @inner_class_types = {}
3474
+ end
3475
+
3476
+ def self.field_remappings
3477
+ @field_remappings = {}
3478
+ end
3479
+ end
3480
+
3481
+ class Reference < ::Stripe::StripeObject
3482
+ # If `inquiry` is the type, the inquiry token.
3483
+ attr_reader :inquiry
3484
+ # If `resource` is the type, the resource token.
3485
+ attr_reader :resource
3486
+ # The type of the reference. If the type is "inquiry", the inquiry token can be found in the "inquiry" field.
3487
+ # Otherwise the type is an API resource, the token for which can be found in the "resource" field.
3488
+ attr_reader :type
3489
+
3490
+ def self.inner_class_types
3491
+ @inner_class_types = {}
3492
+ end
3493
+
3494
+ def self.field_remappings
3495
+ @field_remappings = {}
3496
+ end
3497
+ end
3498
+
3499
+ class RequestedReason < ::Stripe::StripeObject
3500
+ # Machine-readable description of Stripe's reason for collecting the requirement.
3501
+ attr_reader :code
3502
+
3503
+ def self.inner_class_types
3504
+ @inner_class_types = {}
3505
+ end
3506
+
3507
+ def self.field_remappings
3508
+ @field_remappings = {}
3509
+ end
3510
+ end
3511
+ # Indicates whether the platform or Stripe is currently responsible for taking action on the requirement. Value can be `user` or `stripe`.
3512
+ attr_reader :awaiting_action_from
3513
+ # Machine-readable string describing the requirement.
3514
+ attr_reader :description
3515
+ # Descriptions of why the requirement must be collected, or why the collected information isn't satisfactory to Stripe.
3516
+ attr_reader :errors
3517
+ # A hash describing the impact of not collecting the requirement, or Stripe not being able to verify the collected information.
3518
+ attr_reader :impact
3519
+ # The soonest point when the account will be impacted by not providing the requirement.
3520
+ attr_reader :minimum_deadline
3521
+ # A reference to the location of the requirement.
3522
+ attr_reader :reference
3523
+ # A list of reasons why Stripe is collecting the requirement.
3524
+ attr_reader :requested_reasons
3525
+
3526
+ def self.inner_class_types
3527
+ @inner_class_types = {
3528
+ errors: Error,
3529
+ impact: Impact,
3530
+ minimum_deadline: MinimumDeadline,
3531
+ reference: Reference,
3532
+ requested_reasons: RequestedReason,
3533
+ }
3534
+ end
3535
+
3536
+ def self.field_remappings
3537
+ @field_remappings = {}
3538
+ end
3539
+ end
3540
+
3541
+ class Summary < ::Stripe::StripeObject
3542
+ class MinimumDeadline < ::Stripe::StripeObject
3543
+ # The current strictest status of all requirements on the Account.
3544
+ attr_reader :status
3545
+ # The soonest RFC3339 date & time UTC value a requirement can impact the Account.
3546
+ attr_reader :time
3547
+
3548
+ def self.inner_class_types
3549
+ @inner_class_types = {}
3550
+ end
3551
+
3552
+ def self.field_remappings
3553
+ @field_remappings = {}
3554
+ end
3555
+ end
3556
+ # The soonest date and time a requirement on the Account will become `past due`. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: `2022-09-18T13:22:18.123Z`.
3557
+ attr_reader :minimum_deadline
3558
+
3559
+ def self.inner_class_types
3560
+ @inner_class_types = { minimum_deadline: MinimumDeadline }
3561
+ end
3562
+
3563
+ def self.field_remappings
3564
+ @field_remappings = {}
3565
+ end
3566
+ end
3567
+ # A list of requirements for the Account.
3568
+ attr_reader :entries
3569
+ # An object containing an overview of requirements for the Account.
3570
+ attr_reader :summary
3571
+
3572
+ def self.inner_class_types
3573
+ @inner_class_types = { entries: Entry, summary: Summary }
3574
+ end
3575
+
3576
+ def self.field_remappings
3577
+ @field_remappings = {}
3578
+ end
3579
+ end
3580
+ # The configurations that have been applied to this account.
3581
+ attr_reader :applied_configurations
3582
+ # Indicates whether the account has been closed.
3583
+ attr_reader :closed
3584
+ # An Account represents a company, individual, or other entity that a user interacts with. Accounts store identity information and one or more configurations that enable product-specific capabilities. You can assign configurations at creation or add them later.
3585
+ attr_reader :configuration
3586
+ # The primary contact email address for the Account.
3587
+ attr_reader :contact_email
3588
+ # The default contact phone for the Account.
3589
+ attr_reader :contact_phone
3590
+ # Time at which the object was created. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
3591
+ attr_reader :created
3592
+ # A value indicating the Stripe dashboard this Account has access to. This will depend on which configurations are enabled for this account.
3593
+ attr_reader :dashboard
3594
+ # Default values for settings shared across Account configurations.
3595
+ attr_reader :defaults
3596
+ # A descriptive name for the Account. This name will be surfaced in the Stripe Dashboard and on any invoices sent to the Account.
3597
+ attr_reader :display_name
3598
+ # Information about the future requirements for the Account that will eventually come into effect, including what information needs to be collected, and by when.
3599
+ attr_reader :future_requirements
3600
+ # Unique identifier for the Account.
3601
+ attr_reader :id
3602
+ # Information about the company, individual, and business represented by the Account.
3603
+ attr_reader :identity
3604
+ # Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
3605
+ attr_reader :livemode
3606
+ # Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
3607
+ attr_reader :metadata
3608
+ # String representing the object's type. Objects of the same type share the same value of the object field.
3609
+ attr_reader :object
3610
+ # Information about the active requirements for the Account, including what information needs to be collected, and by when.
3611
+ attr_reader :requirements
3612
+
3613
+ def self.inner_class_types
3614
+ @inner_class_types = {
3615
+ configuration: Configuration,
3616
+ defaults: Defaults,
3617
+ future_requirements: FutureRequirements,
3618
+ identity: Identity,
3619
+ requirements: Requirements,
3620
+ }
3621
+ end
3622
+
3623
+ def self.field_remappings
3624
+ @field_remappings = {}
3625
+ end
3626
+
3627
+ def self.field_encodings
3628
+ @field_encodings = {
3629
+ identity: {
3630
+ kind: :object,
3631
+ fields: {
3632
+ individual: {
3633
+ kind: :object,
3634
+ fields: {
3635
+ relationship: { kind: :object, fields: { percent_ownership: :decimal_string } },
3636
+ },
3637
+ },
3638
+ },
3639
+ },
3640
+ }
3641
+ end
3642
+ end
3643
+ end
3644
+ end
3645
+ end