stripe 2.0.3 → 5.55.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (214) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1036 -0
  3. data/CODE_OF_CONDUCT.md +77 -0
  4. data/Gemfile +24 -23
  5. data/History.txt +1 -593
  6. data/Makefile +7 -0
  7. data/README.md +252 -53
  8. data/Rakefile +18 -24
  9. data/VERSION +1 -1
  10. data/bin/stripe-console +5 -3
  11. data/lib/stripe/api_operations/create.rb +4 -2
  12. data/lib/stripe/api_operations/delete.rb +31 -3
  13. data/lib/stripe/api_operations/list.rb +4 -13
  14. data/lib/stripe/api_operations/nested_resource.rb +73 -0
  15. data/lib/stripe/api_operations/request.rb +92 -10
  16. data/lib/stripe/api_operations/save.rb +25 -13
  17. data/lib/stripe/api_operations/search.rb +19 -0
  18. data/lib/stripe/api_resource.rb +55 -11
  19. data/lib/stripe/api_resource_test_helpers.rb +47 -0
  20. data/lib/stripe/connection_manager.rb +200 -0
  21. data/lib/stripe/error_object.rb +93 -0
  22. data/lib/stripe/errors.rb +98 -13
  23. data/lib/stripe/instrumentation.rb +84 -0
  24. data/lib/stripe/list_object.rb +55 -21
  25. data/lib/stripe/multipart_encoder.rb +131 -0
  26. data/lib/stripe/oauth.rb +65 -0
  27. data/lib/stripe/object_types.rb +119 -0
  28. data/lib/stripe/{account.rb → resources/account.rb} +75 -38
  29. data/lib/stripe/resources/account_link.rb +10 -0
  30. data/lib/stripe/resources/alipay_account.rb +34 -0
  31. data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +6 -1
  32. data/lib/stripe/resources/application_fee.rb +14 -0
  33. data/lib/stripe/resources/application_fee_refund.rb +31 -0
  34. data/lib/stripe/resources/balance.rb +8 -0
  35. data/lib/stripe/resources/balance_transaction.rb +10 -0
  36. data/lib/stripe/resources/bank_account.rb +43 -0
  37. data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
  38. data/lib/stripe/resources/billing_portal/session.rb +12 -0
  39. data/lib/stripe/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +8 -4
  40. data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
  41. data/lib/stripe/resources/capability.rb +34 -0
  42. data/lib/stripe/resources/card.rb +38 -0
  43. data/lib/stripe/resources/cash_balance.rb +22 -0
  44. data/lib/stripe/resources/charge.rb +32 -0
  45. data/lib/stripe/resources/checkout/session.rb +27 -0
  46. data/lib/stripe/resources/country_spec.rb +10 -0
  47. data/lib/stripe/{coupon.rb → resources/coupon.rb} +6 -1
  48. data/lib/stripe/resources/credit_note.rb +33 -0
  49. data/lib/stripe/resources/credit_note_line_item.rb +8 -0
  50. data/lib/stripe/resources/customer.rb +74 -0
  51. data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
  52. data/lib/stripe/resources/discount.rb +8 -0
  53. data/lib/stripe/resources/dispute.rb +22 -0
  54. data/lib/stripe/resources/ephemeral_key.rb +20 -0
  55. data/lib/stripe/resources/event.rb +10 -0
  56. data/lib/stripe/resources/exchange_rate.rb +10 -0
  57. data/lib/stripe/resources/file.rb +36 -0
  58. data/lib/stripe/resources/file_link.rb +12 -0
  59. data/lib/stripe/resources/financial_connections/account.rb +31 -0
  60. data/lib/stripe/resources/financial_connections/account_owner.rb +10 -0
  61. data/lib/stripe/resources/financial_connections/account_ownership.rb +10 -0
  62. data/lib/stripe/resources/financial_connections/session.rb +12 -0
  63. data/lib/stripe/resources/funding_instructions.rb +16 -0
  64. data/lib/stripe/resources/identity/verification_report.rb +12 -0
  65. data/lib/stripe/resources/identity/verification_session.rb +35 -0
  66. data/lib/stripe/resources/invoice.rb +83 -0
  67. data/lib/stripe/{invoice_item.rb → resources/invoice_item.rb} +6 -1
  68. data/lib/stripe/resources/invoice_line_item.rb +8 -0
  69. data/lib/stripe/resources/issuing/authorization.rb +34 -0
  70. data/lib/stripe/resources/issuing/card.rb +25 -0
  71. data/lib/stripe/resources/issuing/card_details.rb +10 -0
  72. data/lib/stripe/resources/issuing/cardholder.rb +14 -0
  73. data/lib/stripe/resources/issuing/dispute.rb +25 -0
  74. data/lib/stripe/resources/issuing/transaction.rb +13 -0
  75. data/lib/stripe/resources/line_item.rb +8 -0
  76. data/lib/stripe/resources/login_link.rb +15 -0
  77. data/lib/stripe/resources/mandate.rb +8 -0
  78. data/lib/stripe/resources/order.rb +33 -0
  79. data/lib/stripe/resources/order_return.rb +10 -0
  80. data/lib/stripe/resources/payment_intent.rb +82 -0
  81. data/lib/stripe/resources/payment_link.rb +23 -0
  82. data/lib/stripe/resources/payment_method.rb +33 -0
  83. data/lib/stripe/resources/payout.rb +33 -0
  84. data/lib/stripe/resources/person.rb +32 -0
  85. data/lib/stripe/{plan.rb → resources/plan.rb} +5 -0
  86. data/lib/stripe/resources/price.rb +21 -0
  87. data/lib/stripe/resources/product.rb +22 -0
  88. data/lib/stripe/resources/promotion_code.rb +12 -0
  89. data/lib/stripe/resources/quote.rb +105 -0
  90. data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
  91. data/lib/stripe/resources/radar/value_list.rb +15 -0
  92. data/lib/stripe/resources/radar/value_list_item.rb +14 -0
  93. data/lib/stripe/resources/recipient.rb +14 -0
  94. data/lib/stripe/resources/recipient_transfer.rb +7 -0
  95. data/lib/stripe/resources/refund.rb +42 -0
  96. data/lib/stripe/resources/reporting/report_run.rb +13 -0
  97. data/lib/stripe/resources/reporting/report_type.rb +13 -0
  98. data/lib/stripe/resources/reversal.rb +30 -0
  99. data/lib/stripe/resources/review.rb +21 -0
  100. data/lib/stripe/resources/setup_attempt.rb +10 -0
  101. data/lib/stripe/resources/setup_intent.rb +43 -0
  102. data/lib/stripe/resources/shipping_rate.rb +12 -0
  103. data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
  104. data/lib/stripe/{sku.rb → resources/sku.rb} +7 -2
  105. data/lib/stripe/resources/source.rb +47 -0
  106. data/lib/stripe/resources/source_transaction.rb +8 -0
  107. data/lib/stripe/resources/subscription.rb +35 -0
  108. data/lib/stripe/resources/subscription_item.rb +26 -0
  109. data/lib/stripe/resources/subscription_schedule.rb +33 -0
  110. data/lib/stripe/resources/tax_code.rb +10 -0
  111. data/lib/stripe/resources/tax_id.rb +27 -0
  112. data/lib/stripe/{product.rb → resources/tax_rate.rb} +7 -3
  113. data/lib/stripe/resources/terminal/configuration.rb +15 -0
  114. data/lib/stripe/resources/terminal/connection_token.rb +12 -0
  115. data/lib/stripe/resources/terminal/location.rb +15 -0
  116. data/lib/stripe/resources/terminal/reader.rb +75 -0
  117. data/lib/stripe/resources/test_helpers/test_clock.rb +25 -0
  118. data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +5 -0
  119. data/lib/stripe/resources/token.rb +10 -0
  120. data/lib/stripe/resources/topup.rb +23 -0
  121. data/lib/stripe/resources/transfer.rb +27 -0
  122. data/lib/stripe/resources/usage_record.rb +8 -0
  123. data/lib/stripe/resources/usage_record_summary.rb +8 -0
  124. data/lib/stripe/{recipient.rb → resources/webhook_endpoint.rb} +6 -5
  125. data/lib/stripe/resources.rb +100 -0
  126. data/lib/stripe/search_result_object.rb +86 -0
  127. data/lib/stripe/singleton_api_resource.rb +10 -4
  128. data/lib/stripe/stripe_client.rb +886 -223
  129. data/lib/stripe/stripe_configuration.rb +194 -0
  130. data/lib/stripe/stripe_object.rb +301 -132
  131. data/lib/stripe/stripe_response.rb +89 -27
  132. data/lib/stripe/util.rb +272 -122
  133. data/lib/stripe/version.rb +3 -1
  134. data/lib/stripe/webhook.rb +121 -0
  135. data/lib/stripe.rb +94 -116
  136. data/stripe.gemspec +35 -16
  137. metadata +127 -156
  138. data/.gitattributes +0 -4
  139. data/.github/ISSUE_TEMPLATE.md +0 -5
  140. data/.gitignore +0 -5
  141. data/.travis.yml +0 -15
  142. data/lib/stripe/alipay_account.rb +0 -20
  143. data/lib/stripe/application_fee.rb +0 -20
  144. data/lib/stripe/application_fee_refund.rb +0 -18
  145. data/lib/stripe/balance.rb +0 -4
  146. data/lib/stripe/balance_transaction.rb +0 -9
  147. data/lib/stripe/bank_account.rb +0 -28
  148. data/lib/stripe/bitcoin_transaction.rb +0 -9
  149. data/lib/stripe/card.rb +0 -25
  150. data/lib/stripe/charge.rb +0 -80
  151. data/lib/stripe/country_spec.rb +0 -9
  152. data/lib/stripe/customer.rb +0 -77
  153. data/lib/stripe/dispute.rb +0 -15
  154. data/lib/stripe/event.rb +0 -5
  155. data/lib/stripe/file_upload.rb +0 -31
  156. data/lib/stripe/invoice.rb +0 -27
  157. data/lib/stripe/order.rb +0 -27
  158. data/lib/stripe/order_return.rb +0 -9
  159. data/lib/stripe/refund.rb +0 -7
  160. data/lib/stripe/reversal.rb +0 -18
  161. data/lib/stripe/source.rb +0 -11
  162. data/lib/stripe/subscription.rb +0 -31
  163. data/lib/stripe/subscription_item.rb +0 -12
  164. data/lib/stripe/token.rb +0 -5
  165. data/lib/stripe/transfer.rb +0 -16
  166. data/openapi/fixtures.json +0 -1383
  167. data/openapi/fixtures.yaml +0 -1130
  168. data/openapi/spec.json +0 -19749
  169. data/openapi/spec.yaml +0 -15359
  170. data/test/api_fixtures.rb +0 -29
  171. data/test/api_stub_helpers.rb +0 -125
  172. data/test/stripe/account_test.rb +0 -204
  173. data/test/stripe/alipay_account_test.rb +0 -19
  174. data/test/stripe/api_operations_test.rb +0 -31
  175. data/test/stripe/api_resource_test.rb +0 -496
  176. data/test/stripe/apple_pay_domain_test.rb +0 -33
  177. data/test/stripe/application_fee_refund_test.rb +0 -38
  178. data/test/stripe/application_fee_test.rb +0 -14
  179. data/test/stripe/balance_test.rb +0 -11
  180. data/test/stripe/bank_account_test.rb +0 -41
  181. data/test/stripe/bitcoin_receiver_test.rb +0 -70
  182. data/test/stripe/bitcoin_transaction_test.rb +0 -21
  183. data/test/stripe/charge_test.rb +0 -59
  184. data/test/stripe/country_spec_test.rb +0 -20
  185. data/test/stripe/coupon_test.rb +0 -44
  186. data/test/stripe/customer_card_test.rb +0 -42
  187. data/test/stripe/customer_test.rb +0 -116
  188. data/test/stripe/dispute_test.rb +0 -42
  189. data/test/stripe/errors_test.rb +0 -18
  190. data/test/stripe/file_upload_test.rb +0 -66
  191. data/test/stripe/invoice_item_test.rb +0 -55
  192. data/test/stripe/invoice_test.rb +0 -66
  193. data/test/stripe/list_object_test.rb +0 -170
  194. data/test/stripe/order_return_test.rb +0 -21
  195. data/test/stripe/order_test.rb +0 -59
  196. data/test/stripe/plan_test.rb +0 -52
  197. data/test/stripe/product_test.rb +0 -47
  198. data/test/stripe/recipient_card_test.rb +0 -40
  199. data/test/stripe/recipient_test.rb +0 -50
  200. data/test/stripe/refund_test.rb +0 -39
  201. data/test/stripe/reversal_test.rb +0 -43
  202. data/test/stripe/sku_test.rb +0 -50
  203. data/test/stripe/source_test.rb +0 -43
  204. data/test/stripe/stripe_client_test.rb +0 -440
  205. data/test/stripe/stripe_object_test.rb +0 -361
  206. data/test/stripe/stripe_response_test.rb +0 -46
  207. data/test/stripe/subscription_item_test.rb +0 -54
  208. data/test/stripe/subscription_test.rb +0 -60
  209. data/test/stripe/three_d_secure_test.rb +0 -23
  210. data/test/stripe/transfer_test.rb +0 -50
  211. data/test/stripe/util_test.rb +0 -149
  212. data/test/stripe_test.rb +0 -41
  213. data/test/test_data.rb +0 -59
  214. data/test/test_helper.rb +0 -41
@@ -0,0 +1,119 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ # rubocop:disable Metrics/MethodLength
5
+
6
+ module Stripe
7
+ module ObjectTypes
8
+ def self.object_names_to_classes
9
+ {
10
+ # data structures
11
+ ListObject::OBJECT_NAME => ListObject,
12
+ SearchResultObject::OBJECT_NAME => SearchResultObject,
13
+
14
+ # business objects
15
+ Account::OBJECT_NAME => Account,
16
+ AccountLink::OBJECT_NAME => AccountLink,
17
+ AlipayAccount::OBJECT_NAME => AlipayAccount,
18
+ ApplePayDomain::OBJECT_NAME => ApplePayDomain,
19
+ ApplicationFee::OBJECT_NAME => ApplicationFee,
20
+ ApplicationFeeRefund::OBJECT_NAME => ApplicationFeeRefund,
21
+ Balance::OBJECT_NAME => Balance,
22
+ BalanceTransaction::OBJECT_NAME => BalanceTransaction,
23
+ BankAccount::OBJECT_NAME => BankAccount,
24
+ BillingPortal::Configuration::OBJECT_NAME => BillingPortal::Configuration,
25
+ BillingPortal::Session::OBJECT_NAME => BillingPortal::Session,
26
+ BitcoinReceiver::OBJECT_NAME => BitcoinReceiver,
27
+ BitcoinTransaction::OBJECT_NAME => BitcoinTransaction,
28
+ Capability::OBJECT_NAME => Capability,
29
+ Card::OBJECT_NAME => Card,
30
+ CashBalance::OBJECT_NAME => CashBalance,
31
+ Charge::OBJECT_NAME => Charge,
32
+ Checkout::Session::OBJECT_NAME => Checkout::Session,
33
+ CountrySpec::OBJECT_NAME => CountrySpec,
34
+ Coupon::OBJECT_NAME => Coupon,
35
+ CreditNote::OBJECT_NAME => CreditNote,
36
+ CreditNoteLineItem::OBJECT_NAME => CreditNoteLineItem,
37
+ Customer::OBJECT_NAME => Customer,
38
+ CustomerBalanceTransaction::OBJECT_NAME => CustomerBalanceTransaction,
39
+ Discount::OBJECT_NAME => Discount,
40
+ Dispute::OBJECT_NAME => Dispute,
41
+ EphemeralKey::OBJECT_NAME => EphemeralKey,
42
+ Event::OBJECT_NAME => Event,
43
+ ExchangeRate::OBJECT_NAME => ExchangeRate,
44
+ File::OBJECT_NAME => File,
45
+ File::OBJECT_NAME_ALT => File,
46
+ FileLink::OBJECT_NAME => FileLink,
47
+ FinancialConnections::Account::OBJECT_NAME => FinancialConnections::Account,
48
+ FinancialConnections::AccountOwner::OBJECT_NAME => FinancialConnections::AccountOwner,
49
+ FinancialConnections::AccountOwnership::OBJECT_NAME =>
50
+ FinancialConnections::AccountOwnership,
51
+ FinancialConnections::Session::OBJECT_NAME => FinancialConnections::Session,
52
+ FundingInstructions::OBJECT_NAME => FundingInstructions,
53
+ Identity::VerificationReport::OBJECT_NAME => Identity::VerificationReport,
54
+ Identity::VerificationSession::OBJECT_NAME => Identity::VerificationSession,
55
+ Invoice::OBJECT_NAME => Invoice,
56
+ InvoiceItem::OBJECT_NAME => InvoiceItem,
57
+ InvoiceLineItem::OBJECT_NAME => InvoiceLineItem,
58
+ Issuing::Authorization::OBJECT_NAME => Issuing::Authorization,
59
+ Issuing::Card::OBJECT_NAME => Issuing::Card,
60
+ Issuing::CardDetails::OBJECT_NAME => Issuing::CardDetails,
61
+ Issuing::Cardholder::OBJECT_NAME => Issuing::Cardholder,
62
+ Issuing::Dispute::OBJECT_NAME => Issuing::Dispute,
63
+ Issuing::Transaction::OBJECT_NAME => Issuing::Transaction,
64
+ LineItem::OBJECT_NAME => LineItem,
65
+ LoginLink::OBJECT_NAME => LoginLink,
66
+ Mandate::OBJECT_NAME => Mandate,
67
+ Order::OBJECT_NAME => Order,
68
+ OrderReturn::OBJECT_NAME => OrderReturn,
69
+ PaymentIntent::OBJECT_NAME => PaymentIntent,
70
+ PaymentLink::OBJECT_NAME => PaymentLink,
71
+ PaymentMethod::OBJECT_NAME => PaymentMethod,
72
+ Payout::OBJECT_NAME => Payout,
73
+ Person::OBJECT_NAME => Person,
74
+ Plan::OBJECT_NAME => Plan,
75
+ Price::OBJECT_NAME => Price,
76
+ Product::OBJECT_NAME => Product,
77
+ PromotionCode::OBJECT_NAME => PromotionCode,
78
+ Quote::OBJECT_NAME => Quote,
79
+ Radar::EarlyFraudWarning::OBJECT_NAME => Radar::EarlyFraudWarning,
80
+ Radar::ValueList::OBJECT_NAME => Radar::ValueList,
81
+ Radar::ValueListItem::OBJECT_NAME => Radar::ValueListItem,
82
+ Recipient::OBJECT_NAME => Recipient,
83
+ RecipientTransfer::OBJECT_NAME => RecipientTransfer,
84
+ Refund::OBJECT_NAME => Refund,
85
+ Reporting::ReportRun::OBJECT_NAME => Reporting::ReportRun,
86
+ Reporting::ReportType::OBJECT_NAME => Reporting::ReportType,
87
+ Reversal::OBJECT_NAME => Reversal,
88
+ Review::OBJECT_NAME => Review,
89
+ SetupAttempt::OBJECT_NAME => SetupAttempt,
90
+ SetupIntent::OBJECT_NAME => SetupIntent,
91
+ ShippingRate::OBJECT_NAME => ShippingRate,
92
+ Sigma::ScheduledQueryRun::OBJECT_NAME => Sigma::ScheduledQueryRun,
93
+ SKU::OBJECT_NAME => SKU,
94
+ Source::OBJECT_NAME => Source,
95
+ SourceTransaction::OBJECT_NAME => SourceTransaction,
96
+ Subscription::OBJECT_NAME => Subscription,
97
+ SubscriptionItem::OBJECT_NAME => SubscriptionItem,
98
+ SubscriptionSchedule::OBJECT_NAME => SubscriptionSchedule,
99
+ TaxCode::OBJECT_NAME => TaxCode,
100
+ TaxId::OBJECT_NAME => TaxId,
101
+ TaxRate::OBJECT_NAME => TaxRate,
102
+ Terminal::Configuration::OBJECT_NAME => Terminal::Configuration,
103
+ Terminal::ConnectionToken::OBJECT_NAME => Terminal::ConnectionToken,
104
+ Terminal::Location::OBJECT_NAME => Terminal::Location,
105
+ Terminal::Reader::OBJECT_NAME => Terminal::Reader,
106
+ TestHelpers::TestClock::OBJECT_NAME => TestHelpers::TestClock,
107
+ ThreeDSecure::OBJECT_NAME => ThreeDSecure,
108
+ Token::OBJECT_NAME => Token,
109
+ Topup::OBJECT_NAME => Topup,
110
+ Transfer::OBJECT_NAME => Transfer,
111
+ UsageRecord::OBJECT_NAME => UsageRecord,
112
+ UsageRecordSummary::OBJECT_NAME => UsageRecordSummary,
113
+ WebhookEndpoint::OBJECT_NAME => WebhookEndpoint,
114
+ }
115
+ end
116
+ end
117
+ end
118
+
119
+ # rubocop:enable Metrics/MethodLength
@@ -1,19 +1,43 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
1
4
  module Stripe
2
5
  class Account < APIResource
3
6
  extend Gem::Deprecate
4
7
  extend Stripe::APIOperations::Create
5
- extend Stripe::APIOperations::List
6
8
  include Stripe::APIOperations::Delete
9
+ extend Stripe::APIOperations::List
7
10
  include Stripe::APIOperations::Save
11
+ extend Stripe::APIOperations::NestedResource
12
+
13
+ OBJECT_NAME = "account"
14
+
15
+ custom_method :reject, http_verb: :post
16
+
17
+ nested_resource_class_methods :capability,
18
+ operations: %i[retrieve update list],
19
+ resource_plural: "capabilities"
20
+ nested_resource_class_methods :person,
21
+ operations: %i[create retrieve update delete list]
22
+
23
+ def reject(params = {}, opts = {})
24
+ request_stripe_object(
25
+ method: :post,
26
+ path: resource_url + "/reject",
27
+ params: params,
28
+ opts: opts
29
+ )
30
+ end
8
31
 
9
32
  save_nested_resource :external_account
10
33
 
11
- # This method is deprecated. Please use `#external_account=` instead.
12
- save_nested_resource :bank_account
13
- deprecate :bank_account=, "#external_account=", 2017, 8
34
+ nested_resource_class_methods :external_account,
35
+ operations: %i[create retrieve update delete list]
36
+
37
+ nested_resource_class_methods :login_link, operations: %i[create]
14
38
 
15
39
  def resource_url
16
- if self['id']
40
+ if self["id"]
17
41
  super
18
42
  else
19
43
  "/v1/account"
@@ -21,26 +45,30 @@ module Stripe
21
45
  end
22
46
 
23
47
  # @override To make id optional
24
- def self.retrieve(id=ARGUMENT_NOT_PROVIDED, opts={})
25
- id = id.equal?(ARGUMENT_NOT_PROVIDED) ? nil : Util.check_string_argument!(id)
48
+ def self.retrieve(id = nil, opts = {})
49
+ Util.check_string_argument!(id) if id
26
50
 
27
51
  # Account used to be a singleton, where this method's signature was
28
52
  # `(opts={})`. For the sake of not breaking folks who pass in an OAuth
29
53
  # key in opts, let's lurkily string match for it.
30
- if opts == {} && id.is_a?(String) && id.start_with?('sk_')
31
- # `super` properly assumes a String opts is the apiKey and normalizes as expected.
54
+ if opts == {} && id.is_a?(String) && id.start_with?("sk_")
55
+ # `super` properly assumes a String opts is the apiKey and normalizes
56
+ # as expected.
32
57
  opts = id
33
58
  id = nil
34
59
  end
35
60
  super(id, opts)
36
61
  end
37
62
 
38
- def reject(params={}, opts={})
39
- opts = Util.normalize_opts(opts)
40
- resp, opts = request(:post, resource_url + '/reject', params, opts)
41
- initialize_from(resp.data, opts)
63
+ def persons(params = {}, opts = {})
64
+ resp, opts = execute_resource_request(:get, resource_url + "/persons", params, opts)
65
+ Util.convert_to_stripe_object(resp.data, opts)
42
66
  end
43
67
 
68
+ # We are not adding a helper for capabilities here as the Account object
69
+ # already has a capabilities property which is a hash and not the sub-list
70
+ # of capabilities.
71
+
44
72
  # Somewhat unfortunately, we attempt to do a special encoding trick when
45
73
  # serializing `additional_owners` under an account: when updating a value,
46
74
  # we actually send the update parameters up as an integer-indexed hash
@@ -65,17 +93,22 @@ module Stripe
65
93
  # We're trying to get this overturned on the server side, but for now,
66
94
  # patch in a special allowance.
67
95
  def serialize_params(options = {})
68
- serialize_params_account(self, super)
96
+ serialize_params_account(self, super, options)
69
97
  end
70
98
 
71
- def serialize_params_account(obj, update_hash)
72
- if entity = @values[:legal_entity]
73
- if owners = entity[:additional_owners]
99
+ def serialize_params_account(_obj, update_hash, options = {})
100
+ if (entity = @values[:legal_entity])
101
+ if (owners = entity[:additional_owners])
74
102
  entity_update = update_hash[:legal_entity] ||= {}
75
103
  entity_update[:additional_owners] =
76
104
  serialize_additional_owners(entity, owners)
77
105
  end
78
106
  end
107
+ if (individual = @values[:individual])
108
+ if individual.is_a?(Person) && !update_hash.key?(:individual)
109
+ update_hash[:individual] = individual.serialize_params(options)
110
+ end
111
+ end
79
112
  update_hash
80
113
  end
81
114
 
@@ -84,33 +117,36 @@ module Stripe
84
117
  end
85
118
 
86
119
  def legal_entity
87
- self['legal_entity']
120
+ self["legal_entity"]
88
121
  end
89
122
 
90
- def legal_entity=(_)
91
- raise NoMethodError.new('Overridding legal_entity can cause serious issues. Instead, set the individual fields of legal_entity like blah.legal_entity.first_name = \'Blah\'')
123
+ def legal_entity=(_legal_entity)
124
+ raise NoMethodError,
125
+ "Overriding legal_entity can cause serious issues. Instead, set " \
126
+ "the individual fields of legal_entity like " \
127
+ "`account.legal_entity.first_name = 'Blah'`"
92
128
  end
93
129
 
94
- def deauthorize(client_id, opts={})
95
- opts = {:api_base => Stripe.connect_base}.merge(Util.normalize_opts(opts))
96
- resp, opts = request(:post, '/oauth/deauthorize', { 'client_id' => client_id, 'stripe_user_id' => self.id }, opts)
97
- opts.delete(:api_base) # the api_base here is a one-off, don't persist it
98
- Util.convert_to_stripe_object(resp.data, opts)
130
+ def deauthorize(client_id = nil, opts = {})
131
+ params = {
132
+ client_id: client_id,
133
+ stripe_user_id: id,
134
+ }
135
+ opts = @opts.merge(Util.normalize_opts(opts))
136
+ OAuth.deauthorize(params, opts)
99
137
  end
100
138
 
101
- ARGUMENT_NOT_PROVIDED = Object.new
102
-
103
- private
104
-
105
- def serialize_additional_owners(legal_entity, additional_owners)
106
- original_value = legal_entity.instance_variable_get(:@original_values)[:additional_owners]
139
+ private def serialize_additional_owners(legal_entity, additional_owners)
140
+ original_value =
141
+ legal_entity
142
+ .instance_variable_get(:@original_values)[:additional_owners]
107
143
  if original_value && original_value.length > additional_owners.length
108
144
  # url params provide no mechanism for deleting an item in an array,
109
145
  # just overwriting the whole array or adding new items. So let's not
110
146
  # allow deleting without a full overwrite until we have a solution.
111
- raise ArgumentError.new(
112
- "You cannot delete an item from an array, you must instead set a new array"
113
- )
147
+ raise ArgumentError,
148
+ "You cannot delete an item from an array, you must instead " \
149
+ "set a new array"
114
150
  end
115
151
 
116
152
  update_hash = {}
@@ -122,10 +158,11 @@ module Stripe
122
158
  # StripeObject.
123
159
  update = v.is_a?(StripeObject) ? v.serialize_params : v
124
160
 
125
- if update != {} && (!original_value ||
126
- update != legal_entity.serialize_params_value(original_value[i], nil, false, true))
127
- update_hash[i.to_s] = update
128
- end
161
+ next unless update != {} && (!original_value ||
162
+ update != legal_entity.serialize_params_value(original_value[i], nil,
163
+ false, true))
164
+
165
+ update_hash[i.to_s] = update
129
166
  end
130
167
  update_hash
131
168
  end
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class AccountLink < APIResource
6
+ extend Stripe::APIOperations::Create
7
+
8
+ OBJECT_NAME = "account_link"
9
+ end
10
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Stripe
4
+ class AlipayAccount < APIResource
5
+ include Stripe::APIOperations::Save
6
+ include Stripe::APIOperations::Delete
7
+
8
+ OBJECT_NAME = "alipay_account"
9
+
10
+ def resource_url
11
+ if !respond_to?(:customer) || customer.nil?
12
+ raise NotImplementedError,
13
+ "Alipay accounts cannot be accessed without a customer ID."
14
+ end
15
+
16
+ "#{Customer.resource_url}/#{CGI.escape(customer)}/sources" \
17
+ "/#{CGI.escape(id)}"
18
+ end
19
+
20
+ def self.update(_id, _params = nil, _opts = nil)
21
+ raise NotImplementedError,
22
+ "Alipay accounts cannot be updated without a customer ID. " \
23
+ "Update an Alipay account using `Customer.update_source(" \
24
+ "'customer_id', 'alipay_account_id', update_params)`"
25
+ end
26
+
27
+ def self.retrieve(_id, _opts = nil)
28
+ raise NotImplementedError,
29
+ "Alipay accounts cannot be retrieved without a customer ID. " \
30
+ "Retrieve an Alipay account using `Customer.retrieve_source(" \
31
+ "'customer_id', 'alipay_account_id')`"
32
+ end
33
+ end
34
+ end
@@ -1,3 +1,6 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
1
4
  module Stripe
2
5
  # Domains registered for Apple Pay on the Web
3
6
  class ApplePayDomain < APIResource
@@ -5,8 +8,10 @@ module Stripe
5
8
  include Stripe::APIOperations::Delete
6
9
  extend Stripe::APIOperations::List
7
10
 
11
+ OBJECT_NAME = "apple_pay_domain"
12
+
8
13
  def self.resource_url
9
- '/v1/apple_pay/domains'
14
+ "/v1/apple_pay/domains"
10
15
  end
11
16
  end
12
17
  end
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class ApplicationFee < APIResource
6
+ extend Stripe::APIOperations::List
7
+ extend Stripe::APIOperations::NestedResource
8
+
9
+ OBJECT_NAME = "application_fee"
10
+
11
+ nested_resource_class_methods :refund,
12
+ operations: %i[create retrieve update list]
13
+ end
14
+ end
@@ -0,0 +1,31 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class ApplicationFeeRefund < APIResource
6
+ extend Stripe::APIOperations::List
7
+ include Stripe::APIOperations::Save
8
+
9
+ OBJECT_NAME = "fee_refund"
10
+
11
+ def resource_url
12
+ "#{ApplicationFee.resource_url}/#{CGI.escape(fee)}/refunds" \
13
+ "/#{CGI.escape(id)}"
14
+ end
15
+
16
+ def self.update(_id, _params = nil, _opts = nil)
17
+ raise NotImplementedError,
18
+ "Application fee refunds cannot be updated without an " \
19
+ "application fee ID. Update an application fee refund using " \
20
+ "`ApplicationFee.update_refund('fee_id', 'refund_id', " \
21
+ "update_params)`"
22
+ end
23
+
24
+ def self.retrieve(_id, _api_key = nil)
25
+ raise NotImplementedError,
26
+ "Application fee refunds cannot be retrieved without an " \
27
+ "application fee ID. Retrieve an application fee refund using " \
28
+ "`ApplicationFee.retrieve_refund('fee_id', 'refund_id')`"
29
+ end
30
+ end
31
+ end
@@ -0,0 +1,8 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class Balance < SingletonAPIResource
6
+ OBJECT_NAME = "balance"
7
+ end
8
+ end
@@ -0,0 +1,10 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class BalanceTransaction < APIResource
6
+ extend Stripe::APIOperations::List
7
+
8
+ OBJECT_NAME = "balance_transaction"
9
+ end
10
+ end
@@ -0,0 +1,43 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class BankAccount < APIResource
6
+ include Stripe::APIOperations::Delete
7
+ extend Stripe::APIOperations::List
8
+ include Stripe::APIOperations::Save
9
+
10
+ OBJECT_NAME = "bank_account"
11
+
12
+ def verify(params = {}, opts = {})
13
+ resp, opts = execute_resource_request(:post, resource_url + "/verify", params, opts)
14
+ initialize_from(resp.data, opts)
15
+ end
16
+
17
+ def resource_url
18
+ if respond_to?(:customer)
19
+ "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
20
+ elsif respond_to?(:account)
21
+ "#{Account.resource_url}/#{CGI.escape(account)}/external_accounts/#{CGI.escape(id)}"
22
+ end
23
+ end
24
+
25
+ def self.update(_id, _params = nil, _opts = nil)
26
+ raise NotImplementedError,
27
+ "Bank accounts cannot be updated without a customer ID or an " \
28
+ " account ID. Update a bank account using " \
29
+ "`Customer.update_source('customer_id', 'bank_account_id', " \
30
+ "update_params)` or `Account.update_external_account(" \
31
+ "'account_id', 'bank_account_id', update_params)`"
32
+ end
33
+
34
+ def self.retrieve(_id, _opts = nil)
35
+ raise NotImplementedError,
36
+ "Bank accounts cannot be retrieve without a customer ID or an " \
37
+ "account ID. Retrieve a bank account using " \
38
+ "`Customer.retrieve_source('customer_id', 'bank_account_id')` " \
39
+ "or `Account.retrieve_external_account('account_id', " \
40
+ "'bank_account_id')`"
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,14 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ module BillingPortal
6
+ class Configuration < APIResource
7
+ extend Stripe::APIOperations::Create
8
+ extend Stripe::APIOperations::List
9
+ include Stripe::APIOperations::Save
10
+
11
+ OBJECT_NAME = "billing_portal.configuration"
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,12 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ module BillingPortal
6
+ class Session < APIResource
7
+ extend Stripe::APIOperations::Create
8
+
9
+ OBJECT_NAME = "billing_portal.session"
10
+ end
11
+ end
12
+ end
@@ -1,16 +1,20 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
1
4
  module Stripe
5
+ # Directly creating or retrieving BitcoinReceivers is deprecated. Please use
6
+ # the Sources API instead: https://stripe.com/docs/sources/bitcoin
2
7
  class BitcoinReceiver < APIResource
3
- extend Stripe::APIOperations::Create
4
- include Stripe::APIOperations::Save
5
- include Stripe::APIOperations::Delete
6
8
  extend Stripe::APIOperations::List
7
9
 
10
+ OBJECT_NAME = "bitcoin_receiver"
11
+
8
12
  def self.resource_url
9
13
  "/v1/bitcoin/receivers"
10
14
  end
11
15
 
12
16
  def resource_url
13
- if respond_to?(:customer) && !self.customer.nil? && self.customer != ""
17
+ if respond_to?(:customer) && !customer.nil? && customer != ""
14
18
  "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
15
19
  else
16
20
  "#{self.class.resource_url}/#{CGI.escape(id)}"
@@ -0,0 +1,16 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ # Directly retrieving BitcoinTransactions is deprecated. Please use
6
+ # the Sources API instead: https://stripe.com/docs/sources/bitcoin
7
+ class BitcoinTransaction < APIResource
8
+ extend Stripe::APIOperations::List
9
+
10
+ OBJECT_NAME = "bitcoin_transaction"
11
+
12
+ def self.resource_url
13
+ "/v1/bitcoin/transactions"
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,34 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class Capability < APIResource
6
+ extend Stripe::APIOperations::List
7
+ include Stripe::APIOperations::Save
8
+
9
+ OBJECT_NAME = "capability"
10
+
11
+ def resource_url
12
+ if !respond_to?(:account) || account.nil?
13
+ raise NotImplementedError,
14
+ "Capabilities cannot be accessed without an account ID."
15
+ end
16
+ "#{Account.resource_url}/#{CGI.escape(account)}/capabilities" \
17
+ "/#{CGI.escape(id)}"
18
+ end
19
+
20
+ def self.retrieve(_id, _opts = {})
21
+ raise NotImplementedError,
22
+ "Capabilities cannot be retrieve without an account ID. " \
23
+ "Retrieve a capability using Account.retrieve_capability(" \
24
+ "'account_id', 'capability_id')`"
25
+ end
26
+
27
+ def self.update(_id, _params = nil, _opts = nil)
28
+ raise NotImplementedError,
29
+ "Capabilities cannot be updated without an account ID. Update a " \
30
+ "capability using `Account.update_capability('account_id', " \
31
+ "'capability_id', update_params)`"
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,38 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class Card < APIResource
6
+ include Stripe::APIOperations::Delete
7
+ extend Stripe::APIOperations::List
8
+ include Stripe::APIOperations::Save
9
+
10
+ OBJECT_NAME = "card"
11
+
12
+ def resource_url
13
+ if respond_to?(:recipient) && !recipient.nil? && !recipient.empty?
14
+ "#{Recipient.resource_url}/#{CGI.escape(recipient)}/cards/#{CGI.escape(id)}"
15
+ elsif respond_to?(:customer) && !customer.nil? && !customer.empty?
16
+ "#{Customer.resource_url}/#{CGI.escape(customer)}/sources/#{CGI.escape(id)}"
17
+ elsif respond_to?(:account) && !account.nil? && !account.empty?
18
+ "#{Account.resource_url}/#{CGI.escape(account)}/external_accounts/#{CGI.escape(id)}"
19
+ end
20
+ end
21
+
22
+ def self.update(_id, _params = nil, _opts = nil)
23
+ raise NotImplementedError,
24
+ "Card cannot be updated without a customer ID or an account ID. " \
25
+ "Update a card using `Customer.update_source('customer_id', " \
26
+ "'card_id', update_params)` or `Account.update_external_account(" \
27
+ "'account_id', 'card_id', update_params)`"
28
+ end
29
+
30
+ def self.retrieve(_id, _opts = nil)
31
+ raise NotImplementedError,
32
+ "Card cannot be retrieved without a customer ID or an account " \
33
+ "ID. Retrieve a card using `Customer.retrieve_source(" \
34
+ "'customer_id', 'card_id')` or " \
35
+ "`Account.retrieve_external_account('account_id', 'card_id')`"
36
+ end
37
+ end
38
+ end
@@ -0,0 +1,22 @@
1
+ # File generated from our OpenAPI spec
2
+ # frozen_string_literal: true
3
+
4
+ module Stripe
5
+ class CashBalance < APIResource
6
+ OBJECT_NAME = "cash_balance"
7
+
8
+ def resource_url
9
+ if !respond_to?(:customer) || customer.nil?
10
+ raise NotImplementedError,
11
+ "Customer Cash Balance cannot be accessed without a customer ID."
12
+ end
13
+ "#{Customer.resource_url}/#{CGI.escape(customer)}/cash_balance"
14
+ end
15
+
16
+ def self.retrieve(_id, _opts = {})
17
+ raise NotImplementedError,
18
+ "Customer Cash Balance cannot be retrieved without a customer ID. " \
19
+ "Retrieve a Customer Cash Balance using `Customer.retrieve_cash_balance('cus_123')`"
20
+ end
21
+ end
22
+ end