stripe 1.27.2 → 5.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +942 -0
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +29 -4
- data/History.txt +1 -361
- data/README.md +349 -0
- data/Rakefile +33 -3
- data/VERSION +1 -1
- data/bin/stripe-console +14 -5
- data/lib/data/ca-certificates.crt +4016 -5138
- data/lib/stripe.rb +102 -320
- data/lib/stripe/api_operations/create.rb +5 -9
- data/lib/stripe/api_operations/delete.rb +32 -4
- data/lib/stripe/api_operations/list.rb +11 -9
- data/lib/stripe/api_operations/nested_resource.rb +73 -0
- data/lib/stripe/api_operations/request.rb +66 -11
- data/lib/stripe/api_operations/save.rb +97 -0
- data/lib/stripe/api_resource.rb +96 -12
- data/lib/stripe/connection_manager.rb +164 -0
- data/lib/stripe/error_object.rb +94 -0
- data/lib/stripe/errors.rb +177 -0
- data/lib/stripe/instrumentation.rb +82 -0
- data/lib/stripe/list_object.rb +118 -13
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +65 -0
- data/lib/stripe/object_types.rb +104 -0
- data/lib/stripe/resources.rb +87 -0
- data/lib/stripe/resources/account.rb +170 -0
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/resources/apple_pay_domain.rb +17 -0
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +30 -0
- data/lib/stripe/resources/balance.rb +8 -0
- data/lib/stripe/resources/balance_transaction.rb +10 -0
- data/lib/stripe/resources/bank_account.rb +43 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +14 -0
- data/lib/stripe/resources/billing_portal/session.rb +12 -0
- data/lib/stripe/resources/bitcoin_receiver.rb +24 -0
- data/lib/stripe/resources/bitcoin_transaction.rb +15 -0
- data/lib/stripe/resources/capability.rb +33 -0
- data/lib/stripe/resources/card.rb +38 -0
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +16 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/resources/coupon.rb +13 -0
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +7 -0
- data/lib/stripe/resources/customer.rb +41 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +30 -0
- data/lib/stripe/resources/discount.rb +7 -0
- data/lib/stripe/resources/dispute.rb +22 -0
- data/lib/stripe/resources/ephemeral_key.rb +20 -0
- data/lib/stripe/resources/event.rb +10 -0
- data/lib/stripe/resources/exchange_rate.rb +10 -0
- data/lib/stripe/resources/file.rb +36 -0
- data/lib/stripe/resources/file_link.rb +12 -0
- data/lib/stripe/resources/identity/verification_report.rb +12 -0
- data/lib/stripe/resources/identity/verification_session.rb +35 -0
- data/lib/stripe/resources/invoice.rb +74 -0
- data/lib/stripe/resources/invoice_item.rb +13 -0
- data/lib/stripe/resources/invoice_line_item.rb +7 -0
- data/lib/stripe/resources/issuing/authorization.rb +34 -0
- data/lib/stripe/resources/issuing/card.rb +25 -0
- data/lib/stripe/resources/issuing/card_details.rb +9 -0
- data/lib/stripe/resources/issuing/cardholder.rb +14 -0
- data/lib/stripe/resources/issuing/dispute.rb +25 -0
- data/lib/stripe/resources/issuing/transaction.rb +13 -0
- data/lib/stripe/resources/line_item.rb +7 -0
- data/lib/stripe/resources/login_link.rb +14 -0
- data/lib/stripe/resources/mandate.rb +8 -0
- data/lib/stripe/resources/order.rb +33 -0
- data/lib/stripe/resources/order_return.rb +10 -0
- data/lib/stripe/resources/payment_intent.rb +43 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/resources/person.rb +31 -0
- data/lib/stripe/resources/plan.rb +13 -0
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/resources/product.rb +13 -0
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +12 -0
- data/lib/stripe/resources/radar/value_list.rb +15 -0
- data/lib/stripe/resources/radar/value_list_item.rb +14 -0
- data/lib/stripe/resources/recipient.rb +14 -0
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/resources/refund.rb +12 -0
- data/lib/stripe/resources/reporting/report_run.rb +13 -0
- data/lib/stripe/resources/reporting/report_type.rb +13 -0
- data/lib/stripe/resources/reversal.rb +29 -0
- data/lib/stripe/resources/review.rb +21 -0
- data/lib/stripe/resources/setup_attempt.rb +10 -0
- data/lib/stripe/resources/setup_intent.rb +33 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/resources/sku.rb +13 -0
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +7 -0
- data/lib/stripe/resources/subscription.rb +26 -0
- data/lib/stripe/resources/subscription_item.rb +26 -0
- data/lib/stripe/resources/subscription_schedule.rb +33 -0
- data/lib/stripe/resources/tax_id.rb +26 -0
- data/lib/stripe/resources/tax_rate.rb +12 -0
- data/lib/stripe/resources/terminal/connection_token.rb +12 -0
- data/lib/stripe/resources/terminal/location.rb +15 -0
- data/lib/stripe/resources/terminal/reader.rb +15 -0
- data/lib/stripe/resources/three_d_secure.rb +14 -0
- data/lib/stripe/resources/token.rb +10 -0
- data/lib/stripe/resources/topup.rb +23 -0
- data/lib/stripe/resources/transfer.rb +27 -0
- data/lib/stripe/resources/usage_record.rb +7 -0
- data/lib/stripe/resources/usage_record_summary.rb +7 -0
- data/lib/stripe/resources/webhook_endpoint.rb +13 -0
- data/lib/stripe/singleton_api_resource.rb +13 -7
- data/lib/stripe/stripe_client.rb +989 -0
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +481 -148
- data/lib/stripe/stripe_response.rb +82 -0
- data/lib/stripe/util.rb +265 -70
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +121 -0
- data/stripe.gemspec +35 -21
- metadata +118 -198
- data/.gitignore +0 -4
- data/.travis.yml +0 -22
- data/README.rdoc +0 -43
- data/gemfiles/default-with-activesupport.gemfile +0 -10
- data/gemfiles/json.gemfile +0 -12
- data/gemfiles/yajl.gemfile +0 -12
- data/lib/stripe/account.rb +0 -39
- data/lib/stripe/api_operations/update.rb +0 -19
- data/lib/stripe/application_fee.rb +0 -20
- data/lib/stripe/application_fee_refund.rb +0 -14
- data/lib/stripe/balance.rb +0 -4
- data/lib/stripe/balance_transaction.rb +0 -9
- data/lib/stripe/bank_account.rb +0 -19
- data/lib/stripe/bitcoin_receiver.rb +0 -20
- data/lib/stripe/bitcoin_transaction.rb +0 -9
- data/lib/stripe/card.rb +0 -21
- data/lib/stripe/charge.rb +0 -62
- data/lib/stripe/coupon.rb +0 -8
- data/lib/stripe/customer.rb +0 -75
- data/lib/stripe/dispute.rb +0 -16
- data/lib/stripe/errors/api_connection_error.rb +0 -4
- data/lib/stripe/errors/api_error.rb +0 -4
- data/lib/stripe/errors/authentication_error.rb +0 -4
- data/lib/stripe/errors/card_error.rb +0 -12
- data/lib/stripe/errors/invalid_request_error.rb +0 -11
- data/lib/stripe/errors/rate_limit_error.rb +0 -4
- data/lib/stripe/errors/stripe_error.rb +0 -26
- data/lib/stripe/event.rb +0 -5
- data/lib/stripe/file_upload.rb +0 -22
- data/lib/stripe/invoice.rb +0 -27
- data/lib/stripe/invoice_item.rb +0 -8
- data/lib/stripe/order.rb +0 -19
- data/lib/stripe/plan.rb +0 -8
- data/lib/stripe/product.rb +0 -16
- data/lib/stripe/recipient.rb +0 -12
- data/lib/stripe/refund.rb +0 -7
- data/lib/stripe/reversal.rb +0 -14
- data/lib/stripe/sku.rb +0 -8
- data/lib/stripe/subscription.rb +0 -25
- data/lib/stripe/token.rb +0 -5
- data/lib/stripe/transfer.rb +0 -17
- data/test/stripe/account_test.rb +0 -118
- data/test/stripe/api_resource_test.rb +0 -632
- data/test/stripe/application_fee_refund_test.rb +0 -47
- data/test/stripe/application_fee_test.rb +0 -22
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bitcoin_receiver_test.rb +0 -61
- data/test/stripe/bitcoin_transaction_test.rb +0 -29
- data/test/stripe/charge_refund_test.rb +0 -55
- data/test/stripe/charge_test.rb +0 -118
- data/test/stripe/coupon_test.rb +0 -20
- data/test/stripe/customer_card_test.rb +0 -63
- data/test/stripe/customer_test.rb +0 -88
- data/test/stripe/dispute_test.rb +0 -45
- data/test/stripe/file_upload_test.rb +0 -28
- data/test/stripe/invoice_test.rb +0 -40
- data/test/stripe/list_object_test.rb +0 -16
- data/test/stripe/metadata_test.rb +0 -129
- data/test/stripe/order_test.rb +0 -52
- data/test/stripe/product_test.rb +0 -41
- data/test/stripe/recipient_card_test.rb +0 -57
- data/test/stripe/refund_test.rb +0 -55
- data/test/stripe/reversal_test.rb +0 -47
- data/test/stripe/sku_test.rb +0 -24
- data/test/stripe/stripe_object_test.rb +0 -28
- data/test/stripe/subscription_test.rb +0 -72
- data/test/stripe/transfer_test.rb +0 -25
- data/test/stripe/util_test.rb +0 -34
- data/test/test_data.rb +0 -666
- data/test/test_helper.rb +0 -41
@@ -0,0 +1,87 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "stripe/resources/account"
|
4
|
+
require "stripe/resources/account_link"
|
5
|
+
require "stripe/resources/alipay_account"
|
6
|
+
require "stripe/resources/apple_pay_domain"
|
7
|
+
require "stripe/resources/application_fee"
|
8
|
+
require "stripe/resources/application_fee_refund"
|
9
|
+
require "stripe/resources/balance"
|
10
|
+
require "stripe/resources/balance_transaction"
|
11
|
+
require "stripe/resources/bank_account"
|
12
|
+
require "stripe/resources/billing_portal/configuration"
|
13
|
+
require "stripe/resources/billing_portal/session"
|
14
|
+
require "stripe/resources/bitcoin_receiver"
|
15
|
+
require "stripe/resources/bitcoin_transaction"
|
16
|
+
require "stripe/resources/capability"
|
17
|
+
require "stripe/resources/card"
|
18
|
+
require "stripe/resources/charge"
|
19
|
+
require "stripe/resources/checkout/session"
|
20
|
+
require "stripe/resources/country_spec"
|
21
|
+
require "stripe/resources/coupon"
|
22
|
+
require "stripe/resources/credit_note"
|
23
|
+
require "stripe/resources/credit_note_line_item"
|
24
|
+
require "stripe/resources/customer"
|
25
|
+
require "stripe/resources/customer_balance_transaction"
|
26
|
+
require "stripe/resources/discount"
|
27
|
+
require "stripe/resources/dispute"
|
28
|
+
require "stripe/resources/ephemeral_key"
|
29
|
+
require "stripe/resources/event"
|
30
|
+
require "stripe/resources/exchange_rate"
|
31
|
+
require "stripe/resources/file"
|
32
|
+
require "stripe/resources/file_link"
|
33
|
+
require "stripe/resources/identity/verification_report"
|
34
|
+
require "stripe/resources/identity/verification_session"
|
35
|
+
require "stripe/resources/invoice"
|
36
|
+
require "stripe/resources/invoice_item"
|
37
|
+
require "stripe/resources/invoice_line_item"
|
38
|
+
require "stripe/resources/issuing/authorization"
|
39
|
+
require "stripe/resources/issuing/card"
|
40
|
+
require "stripe/resources/issuing/card_details"
|
41
|
+
require "stripe/resources/issuing/cardholder"
|
42
|
+
require "stripe/resources/issuing/dispute"
|
43
|
+
require "stripe/resources/issuing/transaction"
|
44
|
+
require "stripe/resources/line_item"
|
45
|
+
require "stripe/resources/login_link"
|
46
|
+
require "stripe/resources/mandate"
|
47
|
+
require "stripe/resources/order"
|
48
|
+
require "stripe/resources/order_return"
|
49
|
+
require "stripe/resources/payment_intent"
|
50
|
+
require "stripe/resources/payment_method"
|
51
|
+
require "stripe/resources/payout"
|
52
|
+
require "stripe/resources/person"
|
53
|
+
require "stripe/resources/plan"
|
54
|
+
require "stripe/resources/price"
|
55
|
+
require "stripe/resources/product"
|
56
|
+
require "stripe/resources/promotion_code"
|
57
|
+
require "stripe/resources/radar/early_fraud_warning"
|
58
|
+
require "stripe/resources/radar/value_list"
|
59
|
+
require "stripe/resources/radar/value_list_item"
|
60
|
+
require "stripe/resources/recipient"
|
61
|
+
require "stripe/resources/recipient_transfer"
|
62
|
+
require "stripe/resources/refund"
|
63
|
+
require "stripe/resources/reporting/report_run"
|
64
|
+
require "stripe/resources/reporting/report_type"
|
65
|
+
require "stripe/resources/reversal"
|
66
|
+
require "stripe/resources/review"
|
67
|
+
require "stripe/resources/setup_attempt"
|
68
|
+
require "stripe/resources/setup_intent"
|
69
|
+
require "stripe/resources/sigma/scheduled_query_run"
|
70
|
+
require "stripe/resources/sku"
|
71
|
+
require "stripe/resources/source"
|
72
|
+
require "stripe/resources/source_transaction"
|
73
|
+
require "stripe/resources/subscription"
|
74
|
+
require "stripe/resources/subscription_item"
|
75
|
+
require "stripe/resources/subscription_schedule"
|
76
|
+
require "stripe/resources/tax_id"
|
77
|
+
require "stripe/resources/tax_rate"
|
78
|
+
require "stripe/resources/terminal/connection_token"
|
79
|
+
require "stripe/resources/terminal/location"
|
80
|
+
require "stripe/resources/terminal/reader"
|
81
|
+
require "stripe/resources/three_d_secure"
|
82
|
+
require "stripe/resources/token"
|
83
|
+
require "stripe/resources/topup"
|
84
|
+
require "stripe/resources/transfer"
|
85
|
+
require "stripe/resources/usage_record"
|
86
|
+
require "stripe/resources/usage_record_summary"
|
87
|
+
require "stripe/resources/webhook_endpoint"
|
@@ -0,0 +1,170 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class Account < APIResource
|
6
|
+
extend Gem::Deprecate
|
7
|
+
extend Stripe::APIOperations::Create
|
8
|
+
include Stripe::APIOperations::Delete
|
9
|
+
extend Stripe::APIOperations::List
|
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
|
31
|
+
|
32
|
+
save_nested_resource :external_account
|
33
|
+
|
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]
|
38
|
+
|
39
|
+
def resource_url
|
40
|
+
if self["id"]
|
41
|
+
super
|
42
|
+
else
|
43
|
+
"/v1/account"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
# @override To make id optional
|
48
|
+
def self.retrieve(id = nil, opts = {})
|
49
|
+
Util.check_string_argument!(id) if id
|
50
|
+
|
51
|
+
# Account used to be a singleton, where this method's signature was
|
52
|
+
# `(opts={})`. For the sake of not breaking folks who pass in an OAuth
|
53
|
+
# key in opts, let's lurkily string match for it.
|
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.
|
57
|
+
opts = id
|
58
|
+
id = nil
|
59
|
+
end
|
60
|
+
super(id, opts)
|
61
|
+
end
|
62
|
+
|
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)
|
66
|
+
end
|
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
|
+
|
72
|
+
# Somewhat unfortunately, we attempt to do a special encoding trick when
|
73
|
+
# serializing `additional_owners` under an account: when updating a value,
|
74
|
+
# we actually send the update parameters up as an integer-indexed hash
|
75
|
+
# rather than an array. So instead of this:
|
76
|
+
#
|
77
|
+
# field[]=item1&field[]=item2&field[]=item3
|
78
|
+
#
|
79
|
+
# We send this:
|
80
|
+
#
|
81
|
+
# field[0]=item1&field[1]=item2&field[2]=item3
|
82
|
+
#
|
83
|
+
# There are two major problems with this technique:
|
84
|
+
#
|
85
|
+
# * Entities are addressed by array index, which is not stable and can
|
86
|
+
# easily result in unexpected results between two different requests.
|
87
|
+
#
|
88
|
+
# * A replacement of the array's contents is ambiguous with setting a
|
89
|
+
# subset of the array. Because of this, the only way to shorten an
|
90
|
+
# array is to unset it completely by making sure it goes into the
|
91
|
+
# server as an empty string, then setting its contents again.
|
92
|
+
#
|
93
|
+
# We're trying to get this overturned on the server side, but for now,
|
94
|
+
# patch in a special allowance.
|
95
|
+
def serialize_params(options = {})
|
96
|
+
serialize_params_account(self, super, options)
|
97
|
+
end
|
98
|
+
|
99
|
+
def serialize_params_account(_obj, update_hash, options = {})
|
100
|
+
if (entity = @values[:legal_entity])
|
101
|
+
if (owners = entity[:additional_owners])
|
102
|
+
entity_update = update_hash[:legal_entity] ||= {}
|
103
|
+
entity_update[:additional_owners] =
|
104
|
+
serialize_additional_owners(entity, owners)
|
105
|
+
end
|
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
|
112
|
+
update_hash
|
113
|
+
end
|
114
|
+
|
115
|
+
def self.protected_fields
|
116
|
+
[:legal_entity]
|
117
|
+
end
|
118
|
+
|
119
|
+
def legal_entity
|
120
|
+
self["legal_entity"]
|
121
|
+
end
|
122
|
+
|
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'`"
|
128
|
+
end
|
129
|
+
|
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)
|
137
|
+
end
|
138
|
+
|
139
|
+
private def serialize_additional_owners(legal_entity, additional_owners)
|
140
|
+
original_value =
|
141
|
+
legal_entity
|
142
|
+
.instance_variable_get(:@original_values)[:additional_owners]
|
143
|
+
if original_value && original_value.length > additional_owners.length
|
144
|
+
# url params provide no mechanism for deleting an item in an array,
|
145
|
+
# just overwriting the whole array or adding new items. So let's not
|
146
|
+
# allow deleting without a full overwrite until we have a solution.
|
147
|
+
raise ArgumentError,
|
148
|
+
"You cannot delete an item from an array, you must instead " \
|
149
|
+
"set a new array"
|
150
|
+
end
|
151
|
+
|
152
|
+
update_hash = {}
|
153
|
+
additional_owners.each_with_index do |v, i|
|
154
|
+
# We will almost always see a StripeObject except in the case of a Hash
|
155
|
+
# that's been appended to an array of `additional_owners`. We may be
|
156
|
+
# able to normalize that ugliness by using an array proxy object with
|
157
|
+
# StripeObjects that can detect appends and replace a hash with a
|
158
|
+
# StripeObject.
|
159
|
+
update = v.is_a?(StripeObject) ? v.serialize_params : v
|
160
|
+
|
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
|
166
|
+
end
|
167
|
+
update_hash
|
168
|
+
end
|
169
|
+
end
|
170
|
+
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
|
@@ -0,0 +1,17 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
# Domains registered for Apple Pay on the Web
|
6
|
+
class ApplePayDomain < APIResource
|
7
|
+
extend Stripe::APIOperations::Create
|
8
|
+
include Stripe::APIOperations::Delete
|
9
|
+
extend Stripe::APIOperations::List
|
10
|
+
|
11
|
+
OBJECT_NAME = "apple_pay_domain"
|
12
|
+
|
13
|
+
def self.resource_url
|
14
|
+
"/v1/apple_pay/domains"
|
15
|
+
end
|
16
|
+
end
|
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,30 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Stripe
|
4
|
+
class ApplicationFeeRefund < APIResource
|
5
|
+
include Stripe::APIOperations::Save
|
6
|
+
extend Stripe::APIOperations::List
|
7
|
+
|
8
|
+
OBJECT_NAME = "fee_refund"
|
9
|
+
|
10
|
+
def resource_url
|
11
|
+
"#{ApplicationFee.resource_url}/#{CGI.escape(fee)}/refunds" \
|
12
|
+
"/#{CGI.escape(id)}"
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.update(_id, _params = nil, _opts = nil)
|
16
|
+
raise NotImplementedError,
|
17
|
+
"Application fee refunds cannot be updated without an " \
|
18
|
+
"application fee ID. Update an application fee refund using " \
|
19
|
+
"`ApplicationFee.update_refund('fee_id', 'refund_id', " \
|
20
|
+
"update_params)`"
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.retrieve(_id, _api_key = nil)
|
24
|
+
raise NotImplementedError,
|
25
|
+
"Application fee refunds cannot be retrieved without an " \
|
26
|
+
"application fee ID. Retrieve an application fee refund using " \
|
27
|
+
"`ApplicationFee.retrieve_refund('fee_id', 'refund_id')`"
|
28
|
+
end
|
29
|
+
end
|
30
|
+
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
|