stripe 3.8.2 → 5.45.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 +424 -1
- data/CODE_OF_CONDUCT.md +77 -0
- data/Gemfile +15 -20
- data/README.md +201 -58
- data/Rakefile +12 -9
- data/VERSION +1 -1
- data/bin/stripe-console +3 -1
- data/lib/stripe/api_operations/create.rb +3 -1
- data/lib/stripe/api_operations/delete.rb +30 -2
- data/lib/stripe/api_operations/list.rb +3 -12
- data/lib/stripe/api_operations/nested_resource.rb +40 -28
- data/lib/stripe/api_operations/request.rb +83 -9
- data/lib/stripe/api_operations/save.rb +19 -7
- data/lib/stripe/api_resource.rb +65 -4
- data/lib/stripe/connection_manager.rb +200 -0
- data/lib/stripe/error_object.rb +93 -0
- data/lib/stripe/errors.rb +47 -19
- data/lib/stripe/instrumentation.rb +84 -0
- data/lib/stripe/list_object.rb +43 -7
- data/lib/stripe/multipart_encoder.rb +131 -0
- data/lib/stripe/oauth.rb +14 -7
- data/lib/stripe/object_types.rb +110 -0
- data/lib/stripe/{account.rb → resources/account.rb} +60 -28
- data/lib/stripe/resources/account_link.rb +10 -0
- data/lib/stripe/resources/alipay_account.rb +34 -0
- data/lib/stripe/{apple_pay_domain.rb → resources/apple_pay_domain.rb} +4 -1
- data/lib/stripe/resources/application_fee.rb +14 -0
- data/lib/stripe/resources/application_fee_refund.rb +31 -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/{bitcoin_receiver.rb → resources/bitcoin_receiver.rb} +6 -6
- data/lib/stripe/resources/bitcoin_transaction.rb +16 -0
- data/lib/stripe/resources/capability.rb +34 -0
- data/lib/stripe/{card.rb → resources/card.rb} +15 -4
- data/lib/stripe/resources/charge.rb +23 -0
- data/lib/stripe/resources/checkout/session.rb +27 -0
- data/lib/stripe/resources/country_spec.rb +10 -0
- data/lib/stripe/{coupon.rb → resources/coupon.rb} +5 -2
- data/lib/stripe/resources/credit_note.rb +33 -0
- data/lib/stripe/resources/credit_note_line_item.rb +8 -0
- data/lib/stripe/resources/customer.rb +52 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +31 -0
- data/lib/stripe/resources/discount.rb +8 -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/{invoice_item.rb → resources/invoice_item.rb} +5 -2
- data/lib/stripe/resources/invoice_line_item.rb +8 -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 +10 -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 +8 -0
- data/lib/stripe/resources/login_link.rb +15 -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 +53 -0
- data/lib/stripe/resources/payment_link.rb +23 -0
- data/lib/stripe/resources/payment_method.rb +33 -0
- data/lib/stripe/resources/payout.rb +33 -0
- data/lib/stripe/resources/person.rb +32 -0
- data/lib/stripe/{plan.rb → resources/plan.rb} +4 -1
- data/lib/stripe/resources/price.rb +12 -0
- data/lib/stripe/{product.rb → resources/product.rb} +6 -3
- data/lib/stripe/resources/promotion_code.rb +12 -0
- data/lib/stripe/resources/quote.rb +105 -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/{recipient.rb → resources/recipient.rb} +5 -6
- data/lib/stripe/resources/recipient_transfer.rb +7 -0
- data/lib/stripe/{refund.rb → resources/refund.rb} +4 -1
- 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 +30 -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 +43 -0
- data/lib/stripe/resources/shipping_rate.rb +12 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/{sku.rb → resources/sku.rb} +6 -3
- data/lib/stripe/resources/source.rb +47 -0
- data/lib/stripe/resources/source_transaction.rb +8 -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_code.rb +10 -0
- data/lib/stripe/resources/tax_id.rb +27 -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/test_helpers/test_clock.rb +25 -0
- data/lib/stripe/{three_d_secure.rb → resources/three_d_secure.rb} +4 -1
- 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 +8 -0
- data/lib/stripe/resources/usage_record_summary.rb +8 -0
- data/lib/stripe/resources/webhook_endpoint.rb +13 -0
- data/lib/stripe/resources.rb +93 -0
- data/lib/stripe/singleton_api_resource.rb +8 -2
- data/lib/stripe/stripe_client.rb +712 -233
- data/lib/stripe/stripe_configuration.rb +194 -0
- data/lib/stripe/stripe_object.rb +180 -67
- data/lib/stripe/stripe_response.rb +89 -27
- data/lib/stripe/util.rb +87 -168
- data/lib/stripe/version.rb +3 -1
- data/lib/stripe/webhook.rb +45 -10
- data/lib/stripe.rb +47 -160
- data/stripe.gemspec +27 -8
- metadata +112 -178
- data/.gitattributes +0 -4
- data/.github/ISSUE_TEMPLATE.md +0 -5
- data/.gitignore +0 -6
- data/.rubocop.yml +0 -20
- data/.rubocop_todo.yml +0 -60
- data/.travis.yml +0 -38
- data/lib/stripe/alipay_account.rb +0 -25
- data/lib/stripe/application_fee.rb +0 -25
- data/lib/stripe/application_fee_refund.rb +0 -20
- data/lib/stripe/balance.rb +0 -5
- data/lib/stripe/balance_transaction.rb +0 -11
- data/lib/stripe/bank_account.rb +0 -30
- data/lib/stripe/bitcoin_transaction.rb +0 -13
- data/lib/stripe/charge.rb +0 -82
- data/lib/stripe/country_spec.rb +0 -11
- data/lib/stripe/customer.rb +0 -88
- data/lib/stripe/dispute.rb +0 -17
- data/lib/stripe/ephemeral_key.rb +0 -18
- data/lib/stripe/event.rb +0 -7
- data/lib/stripe/exchange_rate.rb +0 -11
- data/lib/stripe/file_upload.rb +0 -35
- data/lib/stripe/invoice.rb +0 -30
- data/lib/stripe/invoice_line_item.rb +0 -5
- data/lib/stripe/login_link.rb +0 -9
- data/lib/stripe/order.rb +0 -35
- data/lib/stripe/order_return.rb +0 -11
- data/lib/stripe/payout.rb +0 -18
- data/lib/stripe/recipient_transfer.rb +0 -5
- data/lib/stripe/reversal.rb +0 -20
- data/lib/stripe/source.rb +0 -36
- data/lib/stripe/source_transaction.rb +0 -5
- data/lib/stripe/subscription.rb +0 -43
- data/lib/stripe/subscription_item.rb +0 -14
- data/lib/stripe/token.rb +0 -7
- data/lib/stripe/transfer.rb +0 -21
- data/test/api_stub_helpers.rb +0 -0
- data/test/stripe/account_external_accounts_operations_test.rb +0 -66
- data/test/stripe/account_login_links_operations_test.rb +0 -19
- data/test/stripe/account_test.rb +0 -190
- data/test/stripe/alipay_account_test.rb +0 -35
- data/test/stripe/api_operations_test.rb +0 -76
- data/test/stripe/api_resource_test.rb +0 -522
- data/test/stripe/apple_pay_domain_test.rb +0 -31
- data/test/stripe/application_fee_refund_test.rb +0 -35
- data/test/stripe/application_fee_refunds_operations_test.rb +0 -54
- data/test/stripe/application_fee_test.rb +0 -12
- data/test/stripe/balance_test.rb +0 -11
- data/test/stripe/bank_account_test.rb +0 -34
- data/test/stripe/charge_test.rb +0 -57
- data/test/stripe/country_spec_test.rb +0 -18
- data/test/stripe/coupon_test.rb +0 -42
- data/test/stripe/customer_card_test.rb +0 -42
- data/test/stripe/customer_sources_operations_test.rb +0 -66
- data/test/stripe/customer_test.rb +0 -113
- data/test/stripe/dispute_test.rb +0 -40
- data/test/stripe/ephemeral_key_test.rb +0 -84
- data/test/stripe/errors_test.rb +0 -18
- data/test/stripe/exchange_rate_test.rb +0 -18
- data/test/stripe/file_upload_test.rb +0 -83
- data/test/stripe/invoice_item_test.rb +0 -53
- data/test/stripe/invoice_line_item_test.rb +0 -6
- data/test/stripe/invoice_test.rb +0 -111
- data/test/stripe/list_object_test.rb +0 -154
- data/test/stripe/login_link_test.rb +0 -35
- data/test/stripe/oauth_test.rb +0 -77
- data/test/stripe/order_return_test.rb +0 -19
- data/test/stripe/order_test.rb +0 -57
- data/test/stripe/payout_test.rb +0 -48
- data/test/stripe/plan_test.rb +0 -50
- data/test/stripe/product_test.rb +0 -45
- data/test/stripe/recipient_test.rb +0 -47
- data/test/stripe/refund_test.rb +0 -37
- data/test/stripe/reversal_test.rb +0 -41
- data/test/stripe/sku_test.rb +0 -48
- data/test/stripe/source_test.rb +0 -84
- data/test/stripe/source_transaction_test.rb +0 -28
- data/test/stripe/stripe_client_test.rb +0 -728
- data/test/stripe/stripe_object_test.rb +0 -448
- data/test/stripe/stripe_response_test.rb +0 -47
- data/test/stripe/subscription_item_test.rb +0 -52
- data/test/stripe/subscription_test.rb +0 -104
- data/test/stripe/three_d_secure_test.rb +0 -21
- data/test/stripe/transfer_reversals_operations_test.rb +0 -55
- data/test/stripe/transfer_test.rb +0 -41
- data/test/stripe/util_test.rb +0 -432
- data/test/stripe/webhook_test.rb +0 -94
- data/test/stripe_test.rb +0 -59
- data/test/test_data.rb +0 -59
- data/test/test_helper.rb +0 -60
@@ -1,22 +1,40 @@
|
|
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
|
8
11
|
extend Stripe::APIOperations::NestedResource
|
9
12
|
|
10
|
-
OBJECT_NAME = "account"
|
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
|
11
31
|
|
12
32
|
save_nested_resource :external_account
|
33
|
+
|
13
34
|
nested_resource_class_methods :external_account,
|
14
35
|
operations: %i[create retrieve update delete list]
|
15
|
-
nested_resource_class_methods :login_link, operations: %i[create]
|
16
36
|
|
17
|
-
|
18
|
-
save_nested_resource :bank_account
|
19
|
-
deprecate :bank_account=, "#external_account=", 2017, 8
|
37
|
+
nested_resource_class_methods :login_link, operations: %i[create]
|
20
38
|
|
21
39
|
def resource_url
|
22
40
|
if self["id"]
|
@@ -27,26 +45,30 @@ module Stripe
|
|
27
45
|
end
|
28
46
|
|
29
47
|
# @override To make id optional
|
30
|
-
def self.retrieve(id =
|
31
|
-
|
48
|
+
def self.retrieve(id = nil, opts = {})
|
49
|
+
Util.check_string_argument!(id) if id
|
32
50
|
|
33
51
|
# Account used to be a singleton, where this method's signature was
|
34
52
|
# `(opts={})`. For the sake of not breaking folks who pass in an OAuth
|
35
53
|
# key in opts, let's lurkily string match for it.
|
36
54
|
if opts == {} && id.is_a?(String) && id.start_with?("sk_")
|
37
|
-
# `super` properly assumes a String opts is the apiKey and normalizes
|
55
|
+
# `super` properly assumes a String opts is the apiKey and normalizes
|
56
|
+
# as expected.
|
38
57
|
opts = id
|
39
58
|
id = nil
|
40
59
|
end
|
41
60
|
super(id, opts)
|
42
61
|
end
|
43
62
|
|
44
|
-
def
|
45
|
-
opts =
|
46
|
-
resp, opts
|
47
|
-
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)
|
48
66
|
end
|
49
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
|
+
|
50
72
|
# Somewhat unfortunately, we attempt to do a special encoding trick when
|
51
73
|
# serializing `additional_owners` under an account: when updating a value,
|
52
74
|
# we actually send the update parameters up as an integer-indexed hash
|
@@ -71,10 +93,10 @@ module Stripe
|
|
71
93
|
# We're trying to get this overturned on the server side, but for now,
|
72
94
|
# patch in a special allowance.
|
73
95
|
def serialize_params(options = {})
|
74
|
-
serialize_params_account(self, super)
|
96
|
+
serialize_params_account(self, super, options)
|
75
97
|
end
|
76
98
|
|
77
|
-
def serialize_params_account(_obj, update_hash)
|
99
|
+
def serialize_params_account(_obj, update_hash, options = {})
|
78
100
|
if (entity = @values[:legal_entity])
|
79
101
|
if (owners = entity[:additional_owners])
|
80
102
|
entity_update = update_hash[:legal_entity] ||= {}
|
@@ -82,6 +104,11 @@ module Stripe
|
|
82
104
|
serialize_additional_owners(entity, owners)
|
83
105
|
end
|
84
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
|
85
112
|
update_hash
|
86
113
|
end
|
87
114
|
|
@@ -93,8 +120,11 @@ module Stripe
|
|
93
120
|
self["legal_entity"]
|
94
121
|
end
|
95
122
|
|
96
|
-
def legal_entity=(
|
97
|
-
raise NoMethodError,
|
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'`"
|
98
128
|
end
|
99
129
|
|
100
130
|
def deauthorize(client_id = nil, opts = {})
|
@@ -102,20 +132,21 @@ module Stripe
|
|
102
132
|
client_id: client_id,
|
103
133
|
stripe_user_id: id,
|
104
134
|
}
|
135
|
+
opts = @opts.merge(Util.normalize_opts(opts))
|
105
136
|
OAuth.deauthorize(params, opts)
|
106
137
|
end
|
107
138
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
def serialize_additional_owners(legal_entity, additional_owners)
|
113
|
-
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]
|
114
143
|
if original_value && original_value.length > additional_owners.length
|
115
144
|
# url params provide no mechanism for deleting an item in an array,
|
116
145
|
# just overwriting the whole array or adding new items. So let's not
|
117
146
|
# allow deleting without a full overwrite until we have a solution.
|
118
|
-
raise ArgumentError,
|
147
|
+
raise ArgumentError,
|
148
|
+
"You cannot delete an item from an array, you must instead " \
|
149
|
+
"set a new array"
|
119
150
|
end
|
120
151
|
|
121
152
|
update_hash = {}
|
@@ -127,10 +158,11 @@ module Stripe
|
|
127
158
|
# StripeObject.
|
128
159
|
update = v.is_a?(StripeObject) ? v.serialize_params : v
|
129
160
|
|
130
|
-
|
131
|
-
update != legal_entity.serialize_params_value(original_value[i], nil,
|
132
|
-
|
133
|
-
|
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
|
134
166
|
end
|
135
167
|
update_hash
|
136
168
|
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,7 +8,7 @@ module Stripe
|
|
5
8
|
include Stripe::APIOperations::Delete
|
6
9
|
extend Stripe::APIOperations::List
|
7
10
|
|
8
|
-
OBJECT_NAME = "apple_pay_domain"
|
11
|
+
OBJECT_NAME = "apple_pay_domain"
|
9
12
|
|
10
13
|
def self.resource_url
|
11
14
|
"/v1/apple_pay/domains"
|
@@ -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,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
|
@@ -1,13 +1,13 @@
|
|
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
|
-
# Directly creating or retrieving BitcoinReceivers is deprecated. Please use
|
4
|
-
# the Sources API instead: https://stripe.com/docs/sources/bitcoin
|
5
|
-
extend Stripe::APIOperations::Create
|
6
|
-
include Stripe::APIOperations::Save
|
7
|
-
include Stripe::APIOperations::Delete
|
8
8
|
extend Stripe::APIOperations::List
|
9
9
|
|
10
|
-
OBJECT_NAME = "bitcoin_receiver"
|
10
|
+
OBJECT_NAME = "bitcoin_receiver"
|
11
11
|
|
12
12
|
def self.resource_url
|
13
13
|
"/v1/bitcoin/receivers"
|
@@ -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
|
@@ -1,10 +1,13 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
1
4
|
module Stripe
|
2
5
|
class Card < APIResource
|
3
|
-
include Stripe::APIOperations::Save
|
4
6
|
include Stripe::APIOperations::Delete
|
5
7
|
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
6
9
|
|
7
|
-
OBJECT_NAME = "card"
|
10
|
+
OBJECT_NAME = "card"
|
8
11
|
|
9
12
|
def resource_url
|
10
13
|
if respond_to?(:recipient) && !recipient.nil? && !recipient.empty?
|
@@ -17,11 +20,19 @@ module Stripe
|
|
17
20
|
end
|
18
21
|
|
19
22
|
def self.update(_id, _params = nil, _opts = nil)
|
20
|
-
raise NotImplementedError,
|
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)`"
|
21
28
|
end
|
22
29
|
|
23
30
|
def self.retrieve(_id, _opts = nil)
|
24
|
-
raise NotImplementedError,
|
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')`"
|
25
36
|
end
|
26
37
|
end
|
27
38
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class Charge < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
9
|
+
|
10
|
+
OBJECT_NAME = "charge"
|
11
|
+
|
12
|
+
custom_method :capture, http_verb: :post
|
13
|
+
|
14
|
+
def capture(params = {}, opts = {})
|
15
|
+
request_stripe_object(
|
16
|
+
method: :post,
|
17
|
+
path: resource_url + "/capture",
|
18
|
+
params: params,
|
19
|
+
opts: opts
|
20
|
+
)
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
module Checkout
|
6
|
+
class Session < APIResource
|
7
|
+
extend Stripe::APIOperations::Create
|
8
|
+
extend Stripe::APIOperations::List
|
9
|
+
extend Stripe::APIOperations::NestedResource
|
10
|
+
|
11
|
+
OBJECT_NAME = "checkout.session"
|
12
|
+
|
13
|
+
custom_method :expire, http_verb: :post
|
14
|
+
|
15
|
+
nested_resource_class_methods :line_item, operations: %i[list]
|
16
|
+
|
17
|
+
def expire(params = {}, opts = {})
|
18
|
+
request_stripe_object(
|
19
|
+
method: :post,
|
20
|
+
path: resource_url + "/expire",
|
21
|
+
params: params,
|
22
|
+
opts: opts
|
23
|
+
)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -1,10 +1,13 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
1
4
|
module Stripe
|
2
5
|
class Coupon < APIResource
|
3
6
|
extend Stripe::APIOperations::Create
|
4
|
-
include Stripe::APIOperations::Save
|
5
7
|
include Stripe::APIOperations::Delete
|
6
8
|
extend Stripe::APIOperations::List
|
9
|
+
include Stripe::APIOperations::Save
|
7
10
|
|
8
|
-
OBJECT_NAME = "coupon"
|
11
|
+
OBJECT_NAME = "coupon"
|
9
12
|
end
|
10
13
|
end
|
@@ -0,0 +1,33 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class CreditNote < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
extend Stripe::APIOperations::List
|
8
|
+
include Stripe::APIOperations::Save
|
9
|
+
|
10
|
+
OBJECT_NAME = "credit_note"
|
11
|
+
|
12
|
+
custom_method :void_credit_note, http_verb: :post, http_path: "void"
|
13
|
+
|
14
|
+
def void_credit_note(params = {}, opts = {})
|
15
|
+
request_stripe_object(
|
16
|
+
method: :post,
|
17
|
+
path: resource_url + "/void",
|
18
|
+
params: params,
|
19
|
+
opts: opts
|
20
|
+
)
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.preview(params, opts = {})
|
24
|
+
resp, opts = execute_resource_request(:get, resource_url + "/preview", params, opts)
|
25
|
+
Util.convert_to_stripe_object(resp.data, opts)
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.list_preview_line_items(params, opts = {})
|
29
|
+
resp, opts = execute_resource_request(:get, resource_url + "/preview/lines", params, opts)
|
30
|
+
Util.convert_to_stripe_object(resp.data, opts)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
module Stripe
|
5
|
+
class Customer < APIResource
|
6
|
+
extend Stripe::APIOperations::Create
|
7
|
+
include Stripe::APIOperations::Delete
|
8
|
+
extend Stripe::APIOperations::List
|
9
|
+
include Stripe::APIOperations::Save
|
10
|
+
extend Stripe::APIOperations::NestedResource
|
11
|
+
|
12
|
+
OBJECT_NAME = "customer"
|
13
|
+
|
14
|
+
custom_method :list_payment_methods, http_verb: :get, http_path: "payment_methods"
|
15
|
+
|
16
|
+
nested_resource_class_methods :balance_transaction,
|
17
|
+
operations: %i[create retrieve update list]
|
18
|
+
nested_resource_class_methods :tax_id,
|
19
|
+
operations: %i[create retrieve delete list]
|
20
|
+
|
21
|
+
def list_payment_methods(params = {}, opts = {})
|
22
|
+
request_stripe_object(
|
23
|
+
method: :get,
|
24
|
+
path: resource_url + "/payment_methods",
|
25
|
+
params: params,
|
26
|
+
opts: opts
|
27
|
+
)
|
28
|
+
end
|
29
|
+
|
30
|
+
custom_method :delete_discount, http_verb: :delete, http_path: "discount"
|
31
|
+
|
32
|
+
save_nested_resource :source
|
33
|
+
nested_resource_class_methods :source,
|
34
|
+
operations: %i[create retrieve update delete list]
|
35
|
+
|
36
|
+
# The API request for deleting a card or bank account and for detaching a
|
37
|
+
# source object are the same.
|
38
|
+
class << self
|
39
|
+
alias detach_source delete_source
|
40
|
+
end
|
41
|
+
|
42
|
+
# Deletes a discount associated with the customer.
|
43
|
+
#
|
44
|
+
# Returns the deleted discount. The customer object is not updated,
|
45
|
+
# so you must call `refresh` on it to get a new version with the
|
46
|
+
# discount removed.
|
47
|
+
def delete_discount
|
48
|
+
resp, opts = execute_resource_request(:delete, resource_url + "/discount")
|
49
|
+
Util.convert_to_stripe_object(resp.data, opts)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|