stripe 10.1.0.pre.beta.2 → 10.1.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +44 -235
- data/OPENAPI_VERSION +1 -1
- data/README.md +0 -11
- data/VERSION +1 -1
- data/lib/stripe/api_operations/request.rb +0 -2
- data/lib/stripe/api_version.rb +0 -1
- data/lib/stripe/object_types.rb +0 -20
- data/lib/stripe/resources/exchange_rate.rb +25 -10
- data/lib/stripe/resources/financial_connections/account.rb +0 -39
- data/lib/stripe/resources/quote.rb +0 -94
- data/lib/stripe/resources/subscription_schedule.rb +0 -18
- data/lib/stripe/resources/terminal/reader.rb +0 -54
- data/lib/stripe/resources.rb +0 -19
- data/lib/stripe/stripe_client.rb +26 -60
- data/lib/stripe/stripe_configuration.rb +0 -2
- data/lib/stripe/util.rb +1 -8
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +0 -46
- metadata +4 -24
- data/lib/stripe/request_signing_authenticator.rb +0 -83
- data/lib/stripe/resources/account_notice.rb +0 -14
- data/lib/stripe/resources/capital/financing_offer.rb +0 -32
- data/lib/stripe/resources/capital/financing_summary.rb +0 -12
- data/lib/stripe/resources/capital/financing_transaction.rb +0 -13
- data/lib/stripe/resources/confirmation_token.rb +0 -11
- data/lib/stripe/resources/customer_session.rb +0 -12
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +0 -13
- data/lib/stripe/resources/financial_connections/transaction.rb +0 -13
- data/lib/stripe/resources/gift_cards/card.rb +0 -25
- data/lib/stripe/resources/gift_cards/transaction.rb +0 -56
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +0 -69
- data/lib/stripe/resources/issuing/personalization_design.rb +0 -77
- data/lib/stripe/resources/issuing/physical_bundle.rb +0 -13
- data/lib/stripe/resources/margin.rb +0 -14
- data/lib/stripe/resources/order.rb +0 -89
- data/lib/stripe/resources/quote_phase.rb +0 -29
- data/lib/stripe/resources/quote_preview_invoice.rb +0 -42
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +0 -10
- data/lib/stripe/resources/tax/form.rb +0 -39
data/lib/stripe.rb
CHANGED
@@ -13,7 +13,6 @@ require "set"
|
|
13
13
|
require "socket"
|
14
14
|
require "uri"
|
15
15
|
require "forwardable"
|
16
|
-
require "base64"
|
17
16
|
|
18
17
|
# Version
|
19
18
|
require "stripe/api_version"
|
@@ -45,7 +44,6 @@ require "stripe/api_resource_test_helpers"
|
|
45
44
|
require "stripe/singleton_api_resource"
|
46
45
|
require "stripe/webhook"
|
47
46
|
require "stripe/stripe_configuration"
|
48
|
-
require "stripe/request_signing_authenticator"
|
49
47
|
|
50
48
|
# Named API resources
|
51
49
|
require "stripe/resources"
|
@@ -72,7 +70,6 @@ module Stripe
|
|
72
70
|
|
73
71
|
# User configurable options
|
74
72
|
def_delegators :@config, :api_key, :api_key=
|
75
|
-
def_delegators :@config, :authenticator, :authenticator=
|
76
73
|
def_delegators :@config, :api_version, :api_version=
|
77
74
|
def_delegators :@config, :stripe_account, :stripe_account=
|
78
75
|
def_delegators :@config, :api_base, :api_base=
|
@@ -119,49 +116,6 @@ module Stripe
|
|
119
116
|
version: version,
|
120
117
|
}
|
121
118
|
end
|
122
|
-
|
123
|
-
class Preview
|
124
|
-
def self._get_default_opts(opts)
|
125
|
-
{ api_mode: :preview }.merge(opts)
|
126
|
-
end
|
127
|
-
|
128
|
-
def self.get(url, opts = {})
|
129
|
-
Stripe.raw_request(:get, url, {}, _get_default_opts(opts))
|
130
|
-
end
|
131
|
-
|
132
|
-
def self.post(url, params = {}, opts = {})
|
133
|
-
Stripe.raw_request(:post, url, params, _get_default_opts(opts))
|
134
|
-
end
|
135
|
-
|
136
|
-
def self.delete(url, opts = {})
|
137
|
-
Stripe.raw_request(:delete, url, {}, _get_default_opts(opts))
|
138
|
-
end
|
139
|
-
end
|
140
|
-
|
141
|
-
class RawRequest
|
142
|
-
include Stripe::APIOperations::Request
|
143
|
-
|
144
|
-
def initialize
|
145
|
-
@opts = {}
|
146
|
-
end
|
147
|
-
|
148
|
-
def execute(method, url, params = {}, opts = {})
|
149
|
-
resp, = execute_resource_request(method, url, params, opts)
|
150
|
-
|
151
|
-
resp
|
152
|
-
end
|
153
|
-
end
|
154
|
-
|
155
|
-
# Sends a request to Stripe REST API
|
156
|
-
def self.raw_request(method, url, params = {}, opts = {})
|
157
|
-
req = RawRequest.new
|
158
|
-
req.execute(method, url, params, opts)
|
159
|
-
end
|
160
|
-
|
161
|
-
def self.deserialize(data)
|
162
|
-
data = JSON.parse(data) if data.is_a?(String)
|
163
|
-
Util.convert_to_stripe_object(data, {})
|
164
|
-
end
|
165
119
|
end
|
166
120
|
|
167
121
|
Stripe.log_level = ENV["STRIPE_LOG"] unless ENV["STRIPE_LOG"].nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stripe
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 10.1.0
|
4
|
+
version: 10.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stripe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-11-02 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Stripe is the easiest way to accept payments online. See https://stripe.com
|
14
14
|
for details.
|
@@ -50,11 +50,9 @@ files:
|
|
50
50
|
- lib/stripe/multipart_encoder.rb
|
51
51
|
- lib/stripe/oauth.rb
|
52
52
|
- lib/stripe/object_types.rb
|
53
|
-
- lib/stripe/request_signing_authenticator.rb
|
54
53
|
- lib/stripe/resources.rb
|
55
54
|
- lib/stripe/resources/account.rb
|
56
55
|
- lib/stripe/resources/account_link.rb
|
57
|
-
- lib/stripe/resources/account_notice.rb
|
58
56
|
- lib/stripe/resources/account_session.rb
|
59
57
|
- lib/stripe/resources/alipay_account.rb
|
60
58
|
- lib/stripe/resources/apple_pay_domain.rb
|
@@ -67,14 +65,10 @@ files:
|
|
67
65
|
- lib/stripe/resources/billing_portal/configuration.rb
|
68
66
|
- lib/stripe/resources/billing_portal/session.rb
|
69
67
|
- lib/stripe/resources/capability.rb
|
70
|
-
- lib/stripe/resources/capital/financing_offer.rb
|
71
|
-
- lib/stripe/resources/capital/financing_summary.rb
|
72
|
-
- lib/stripe/resources/capital/financing_transaction.rb
|
73
68
|
- lib/stripe/resources/card.rb
|
74
69
|
- lib/stripe/resources/cash_balance.rb
|
75
70
|
- lib/stripe/resources/charge.rb
|
76
71
|
- lib/stripe/resources/checkout/session.rb
|
77
|
-
- lib/stripe/resources/confirmation_token.rb
|
78
72
|
- lib/stripe/resources/country_spec.rb
|
79
73
|
- lib/stripe/resources/coupon.rb
|
80
74
|
- lib/stripe/resources/credit_note.rb
|
@@ -82,7 +76,6 @@ files:
|
|
82
76
|
- lib/stripe/resources/customer.rb
|
83
77
|
- lib/stripe/resources/customer_balance_transaction.rb
|
84
78
|
- lib/stripe/resources/customer_cash_balance_transaction.rb
|
85
|
-
- lib/stripe/resources/customer_session.rb
|
86
79
|
- lib/stripe/resources/discount.rb
|
87
80
|
- lib/stripe/resources/dispute.rb
|
88
81
|
- lib/stripe/resources/ephemeral_key.rb
|
@@ -91,14 +84,10 @@ files:
|
|
91
84
|
- lib/stripe/resources/file.rb
|
92
85
|
- lib/stripe/resources/file_link.rb
|
93
86
|
- lib/stripe/resources/financial_connections/account.rb
|
94
|
-
- lib/stripe/resources/financial_connections/account_inferred_balance.rb
|
95
87
|
- lib/stripe/resources/financial_connections/account_owner.rb
|
96
88
|
- lib/stripe/resources/financial_connections/account_ownership.rb
|
97
89
|
- lib/stripe/resources/financial_connections/session.rb
|
98
|
-
- lib/stripe/resources/financial_connections/transaction.rb
|
99
90
|
- lib/stripe/resources/funding_instructions.rb
|
100
|
-
- lib/stripe/resources/gift_cards/card.rb
|
101
|
-
- lib/stripe/resources/gift_cards/transaction.rb
|
102
91
|
- lib/stripe/resources/identity/verification_report.rb
|
103
92
|
- lib/stripe/resources/identity/verification_session.rb
|
104
93
|
- lib/stripe/resources/invoice.rb
|
@@ -107,17 +96,12 @@ files:
|
|
107
96
|
- lib/stripe/resources/issuing/authorization.rb
|
108
97
|
- lib/stripe/resources/issuing/card.rb
|
109
98
|
- lib/stripe/resources/issuing/cardholder.rb
|
110
|
-
- lib/stripe/resources/issuing/credit_underwriting_record.rb
|
111
99
|
- lib/stripe/resources/issuing/dispute.rb
|
112
|
-
- lib/stripe/resources/issuing/personalization_design.rb
|
113
|
-
- lib/stripe/resources/issuing/physical_bundle.rb
|
114
100
|
- lib/stripe/resources/issuing/token.rb
|
115
101
|
- lib/stripe/resources/issuing/transaction.rb
|
116
102
|
- lib/stripe/resources/line_item.rb
|
117
103
|
- lib/stripe/resources/login_link.rb
|
118
104
|
- lib/stripe/resources/mandate.rb
|
119
|
-
- lib/stripe/resources/margin.rb
|
120
|
-
- lib/stripe/resources/order.rb
|
121
105
|
- lib/stripe/resources/payment_intent.rb
|
122
106
|
- lib/stripe/resources/payment_link.rb
|
123
107
|
- lib/stripe/resources/payment_method.rb
|
@@ -130,9 +114,6 @@ files:
|
|
130
114
|
- lib/stripe/resources/product.rb
|
131
115
|
- lib/stripe/resources/promotion_code.rb
|
132
116
|
- lib/stripe/resources/quote.rb
|
133
|
-
- lib/stripe/resources/quote_phase.rb
|
134
|
-
- lib/stripe/resources/quote_preview_invoice.rb
|
135
|
-
- lib/stripe/resources/quote_preview_subscription_schedule.rb
|
136
117
|
- lib/stripe/resources/radar/early_fraud_warning.rb
|
137
118
|
- lib/stripe/resources/radar/value_list.rb
|
138
119
|
- lib/stripe/resources/radar/value_list_item.rb
|
@@ -153,7 +134,6 @@ files:
|
|
153
134
|
- lib/stripe/resources/subscription_schedule.rb
|
154
135
|
- lib/stripe/resources/tax/calculation.rb
|
155
136
|
- lib/stripe/resources/tax/calculation_line_item.rb
|
156
|
-
- lib/stripe/resources/tax/form.rb
|
157
137
|
- lib/stripe/resources/tax/registration.rb
|
158
138
|
- lib/stripe/resources/tax/settings.rb
|
159
139
|
- lib/stripe/resources/tax/transaction.rb
|
@@ -214,9 +194,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
214
194
|
version: 2.3.0
|
215
195
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
216
196
|
requirements:
|
217
|
-
- - "
|
197
|
+
- - ">="
|
218
198
|
- !ruby/object:Gem::Version
|
219
|
-
version:
|
199
|
+
version: '0'
|
220
200
|
requirements: []
|
221
201
|
rubygems_version: 3.3.26
|
222
202
|
signing_key:
|
@@ -1,83 +0,0 @@
|
|
1
|
-
# frozen_string_literal: true
|
2
|
-
|
3
|
-
module Stripe
|
4
|
-
class RequestSigningAuthenticator
|
5
|
-
AUTHORIZATION_HEADER_NAME = "Authorization"
|
6
|
-
CONTENT_TYPE_HEADER_NAME = "Content-Type"
|
7
|
-
STRIPE_CONTEXT_HEADER_NAME = "Stripe-Context"
|
8
|
-
STRIPE_ACCOUNT_HEADER_NAME = "Stripe-Account"
|
9
|
-
CONTENT_DIGEST_HEADER_NAME = "Content-Digest"
|
10
|
-
SIGNATURE_INPUT_HEADER_NAME = "Signature-Input"
|
11
|
-
SIGNATURE_HEADER_NAME = "Signature"
|
12
|
-
|
13
|
-
attr_reader :auth_token, :sign_lambda
|
14
|
-
|
15
|
-
def initialize(auth_token, sign_lambda)
|
16
|
-
unless auth_token.is_a?(String)
|
17
|
-
raise ArgumentError, "auth_token must be a string"
|
18
|
-
end
|
19
|
-
unless sign_lambda.is_a?(Proc)
|
20
|
-
raise ArgumentError, "sign_lambda must be a lambda"
|
21
|
-
end
|
22
|
-
|
23
|
-
@auth_token = auth_token
|
24
|
-
@sign_lambda = sign_lambda
|
25
|
-
end
|
26
|
-
|
27
|
-
def authenticate(method, headers, body)
|
28
|
-
covered_headers = [CONTENT_TYPE_HEADER_NAME,
|
29
|
-
CONTENT_DIGEST_HEADER_NAME,
|
30
|
-
STRIPE_CONTEXT_HEADER_NAME,
|
31
|
-
STRIPE_ACCOUNT_HEADER_NAME,
|
32
|
-
AUTHORIZATION_HEADER_NAME,]
|
33
|
-
|
34
|
-
headers[AUTHORIZATION_HEADER_NAME] = "STRIPE-V2-SIG #{auth_token}"
|
35
|
-
|
36
|
-
if method == :get
|
37
|
-
covered_headers -= [CONTENT_TYPE_HEADER_NAME,
|
38
|
-
CONTENT_DIGEST_HEADER_NAME,]
|
39
|
-
else
|
40
|
-
content = body || ""
|
41
|
-
headers[CONTENT_DIGEST_HEADER_NAME] =
|
42
|
-
%(sha-256=:#{content_digest(content)}:)
|
43
|
-
end
|
44
|
-
|
45
|
-
covered_headers_formatted = covered_headers
|
46
|
-
.map { |string| %("#{string.downcase}") }
|
47
|
-
.join(" ")
|
48
|
-
|
49
|
-
signature_input = "(#{covered_headers_formatted});created=#{created_time}"
|
50
|
-
|
51
|
-
inputs = covered_headers
|
52
|
-
.map { |header| %("#{header.downcase}": #{headers[header]}) }
|
53
|
-
.join("\n")
|
54
|
-
|
55
|
-
signature_base = %(#{inputs}\n"@signature-params": #{signature_input})
|
56
|
-
.encode(Encoding::UTF_8)
|
57
|
-
|
58
|
-
headers[SIGNATURE_INPUT_HEADER_NAME] = "sig1=#{signature_input}"
|
59
|
-
|
60
|
-
headers[SIGNATURE_HEADER_NAME] =
|
61
|
-
"sig1=:#{encoded_signature(signature_base)}:"
|
62
|
-
end
|
63
|
-
|
64
|
-
private def sign(signature_base)
|
65
|
-
@sign_lambda.call(signature_base)
|
66
|
-
end
|
67
|
-
|
68
|
-
private def encoded_signature(signature_base)
|
69
|
-
Base64.strict_encode64(sign(signature_base))
|
70
|
-
rescue StandardError
|
71
|
-
raise AuthenticationError, "Encountered '#{e.message} (#{e.class})' "\
|
72
|
-
"when calculating request signature."
|
73
|
-
end
|
74
|
-
|
75
|
-
private def content_digest(content)
|
76
|
-
Base64.strict_encode64(OpenSSL::Digest.new("SHA256").digest(content))
|
77
|
-
end
|
78
|
-
|
79
|
-
private def created_time
|
80
|
-
Time.now.to_i
|
81
|
-
end
|
82
|
-
end
|
83
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# A notice to a Connected account. Notice can be sent by Stripe on your behalf or you can opt to send the notices yourself.
|
6
|
-
#
|
7
|
-
# See the [guide to send notices](https://stripe.com/docs/issuing/compliance-us/issuing-regulated-customer-notices) to your connected accounts.
|
8
|
-
class AccountNotice < APIResource
|
9
|
-
extend Stripe::APIOperations::List
|
10
|
-
include Stripe::APIOperations::Save
|
11
|
-
|
12
|
-
OBJECT_NAME = "account_notice"
|
13
|
-
end
|
14
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Capital
|
6
|
-
# This is an object representing an offer of financing from
|
7
|
-
# Stripe Capital to a Connect subaccount.
|
8
|
-
class FinancingOffer < APIResource
|
9
|
-
extend Stripe::APIOperations::List
|
10
|
-
|
11
|
-
OBJECT_NAME = "capital.financing_offer"
|
12
|
-
|
13
|
-
def mark_delivered(params = {}, opts = {})
|
14
|
-
request_stripe_object(
|
15
|
-
method: :post,
|
16
|
-
path: format("/v1/capital/financing_offers/%<financing_offer>s/mark_delivered", { financing_offer: CGI.escape(self["id"]) }),
|
17
|
-
params: params,
|
18
|
-
opts: opts
|
19
|
-
)
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.mark_delivered(financing_offer, params = {}, opts = {})
|
23
|
-
request_stripe_object(
|
24
|
-
method: :post,
|
25
|
-
path: format("/v1/capital/financing_offers/%<financing_offer>s/mark_delivered", { financing_offer: CGI.escape(financing_offer) }),
|
26
|
-
params: params,
|
27
|
-
opts: opts
|
28
|
-
)
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Capital
|
6
|
-
# A financing object describes an account's current financing state. Used by Connect
|
7
|
-
# platforms to read the state of Capital offered to their connected accounts.
|
8
|
-
class FinancingSummary < SingletonAPIResource
|
9
|
-
OBJECT_NAME = "capital.financing_summary"
|
10
|
-
end
|
11
|
-
end
|
12
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Capital
|
6
|
-
# This is an object representing the details of a transaction on a Capital financing object.
|
7
|
-
class FinancingTransaction < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "capital.financing_transaction"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# ConfirmationTokens help transport client side data collected by Stripe JS over
|
6
|
-
# to your server for confirming a PaymentIntent or SetupIntent. If the confirmation
|
7
|
-
# is successful, values present on the ConfirmationToken are written onto the Intent.
|
8
|
-
class ConfirmationToken < APIResource
|
9
|
-
OBJECT_NAME = "confirmation_token"
|
10
|
-
end
|
11
|
-
end
|
@@ -1,12 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# A customer session allows you to grant client access to Stripe's frontend SDKs (like StripeJs)
|
6
|
-
# control over a customer.
|
7
|
-
class CustomerSession < APIResource
|
8
|
-
extend Stripe::APIOperations::Create
|
9
|
-
|
10
|
-
OBJECT_NAME = "customer_session"
|
11
|
-
end
|
12
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module FinancialConnections
|
6
|
-
# A historical balance for the account on a particular day. It may be sourced from a balance snapshot provided by a financial institution, or inferred using transactions data.
|
7
|
-
class AccountInferredBalance < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "financial_connections.account_inferred_balance"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module FinancialConnections
|
6
|
-
# A Transaction represents a real transaction that affects a Financial Connections Account balance.
|
7
|
-
class Transaction < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "financial_connections.transaction"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module GiftCards
|
6
|
-
# A gift card represents a single gift card owned by a customer, including the
|
7
|
-
# remaining balance, gift card code, and whether or not it is active.
|
8
|
-
class Card < APIResource
|
9
|
-
extend Stripe::APIOperations::Create
|
10
|
-
extend Stripe::APIOperations::List
|
11
|
-
include Stripe::APIOperations::Save
|
12
|
-
|
13
|
-
OBJECT_NAME = "gift_cards.card"
|
14
|
-
|
15
|
-
def self.validate(params = {}, opts = {})
|
16
|
-
request_stripe_object(
|
17
|
-
method: :post,
|
18
|
-
path: "/v1/gift_cards/cards/validate",
|
19
|
-
params: params,
|
20
|
-
opts: opts
|
21
|
-
)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module GiftCards
|
6
|
-
# A gift card transaction represents a single transaction on a referenced gift card.
|
7
|
-
# A transaction is in one of three states, `confirmed`, `held` or `canceled`. A `confirmed`
|
8
|
-
# transaction is one that has added/deducted funds. A `held` transaction has created a
|
9
|
-
# temporary hold on funds, which can then be cancelled or confirmed. A `held` transaction
|
10
|
-
# can be confirmed into a `confirmed` transaction, or canceled into a `canceled` transaction.
|
11
|
-
# A `canceled` transaction has no effect on a gift card's balance.
|
12
|
-
class Transaction < APIResource
|
13
|
-
extend Stripe::APIOperations::Create
|
14
|
-
extend Stripe::APIOperations::List
|
15
|
-
include Stripe::APIOperations::Save
|
16
|
-
|
17
|
-
OBJECT_NAME = "gift_cards.transaction"
|
18
|
-
|
19
|
-
def cancel(params = {}, opts = {})
|
20
|
-
request_stripe_object(
|
21
|
-
method: :post,
|
22
|
-
path: format("/v1/gift_cards/transactions/%<id>s/cancel", { id: CGI.escape(self["id"]) }),
|
23
|
-
params: params,
|
24
|
-
opts: opts
|
25
|
-
)
|
26
|
-
end
|
27
|
-
|
28
|
-
def confirm(params = {}, opts = {})
|
29
|
-
request_stripe_object(
|
30
|
-
method: :post,
|
31
|
-
path: format("/v1/gift_cards/transactions/%<id>s/confirm", { id: CGI.escape(self["id"]) }),
|
32
|
-
params: params,
|
33
|
-
opts: opts
|
34
|
-
)
|
35
|
-
end
|
36
|
-
|
37
|
-
def self.cancel(id, params = {}, opts = {})
|
38
|
-
request_stripe_object(
|
39
|
-
method: :post,
|
40
|
-
path: format("/v1/gift_cards/transactions/%<id>s/cancel", { id: CGI.escape(id) }),
|
41
|
-
params: params,
|
42
|
-
opts: opts
|
43
|
-
)
|
44
|
-
end
|
45
|
-
|
46
|
-
def self.confirm(id, params = {}, opts = {})
|
47
|
-
request_stripe_object(
|
48
|
-
method: :post,
|
49
|
-
path: format("/v1/gift_cards/transactions/%<id>s/confirm", { id: CGI.escape(id) }),
|
50
|
-
params: params,
|
51
|
-
opts: opts
|
52
|
-
)
|
53
|
-
end
|
54
|
-
end
|
55
|
-
end
|
56
|
-
end
|
@@ -1,69 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Issuing
|
6
|
-
# Every time an applicant submits an application for a Charge Card product your platform offers, or every time your platform takes a proactive credit decision on an existing account, you must record the decision by creating a new `CreditUnderwritingRecord` object on a connected account.
|
7
|
-
#
|
8
|
-
# [Follow the guide](https://stripe.com/docs/issuing/credit/report-credit-decisions-and-manage-aans) to learn about your requirements as a platform.
|
9
|
-
class CreditUnderwritingRecord < APIResource
|
10
|
-
extend Stripe::APIOperations::List
|
11
|
-
|
12
|
-
OBJECT_NAME = "issuing.credit_underwriting_record"
|
13
|
-
|
14
|
-
def correct(params = {}, opts = {})
|
15
|
-
request_stripe_object(
|
16
|
-
method: :post,
|
17
|
-
path: format("/v1/issuing/credit_underwriting_records/%<credit_underwriting_record>s/correct", { credit_underwriting_record: CGI.escape(self["id"]) }),
|
18
|
-
params: params,
|
19
|
-
opts: opts
|
20
|
-
)
|
21
|
-
end
|
22
|
-
|
23
|
-
def report_decision(params = {}, opts = {})
|
24
|
-
request_stripe_object(
|
25
|
-
method: :post,
|
26
|
-
path: format("/v1/issuing/credit_underwriting_records/%<credit_underwriting_record>s/report_decision", { credit_underwriting_record: CGI.escape(self["id"]) }),
|
27
|
-
params: params,
|
28
|
-
opts: opts
|
29
|
-
)
|
30
|
-
end
|
31
|
-
|
32
|
-
def self.correct(credit_underwriting_record, params = {}, opts = {})
|
33
|
-
request_stripe_object(
|
34
|
-
method: :post,
|
35
|
-
path: format("/v1/issuing/credit_underwriting_records/%<credit_underwriting_record>s/correct", { credit_underwriting_record: CGI.escape(credit_underwriting_record) }),
|
36
|
-
params: params,
|
37
|
-
opts: opts
|
38
|
-
)
|
39
|
-
end
|
40
|
-
|
41
|
-
def self.create_from_application(params = {}, opts = {})
|
42
|
-
request_stripe_object(
|
43
|
-
method: :post,
|
44
|
-
path: "/v1/issuing/credit_underwriting_records/create_from_application",
|
45
|
-
params: params,
|
46
|
-
opts: opts
|
47
|
-
)
|
48
|
-
end
|
49
|
-
|
50
|
-
def self.create_from_proactive_review(params = {}, opts = {})
|
51
|
-
request_stripe_object(
|
52
|
-
method: :post,
|
53
|
-
path: "/v1/issuing/credit_underwriting_records/create_from_proactive_review",
|
54
|
-
params: params,
|
55
|
-
opts: opts
|
56
|
-
)
|
57
|
-
end
|
58
|
-
|
59
|
-
def self.report_decision(credit_underwriting_record, params = {}, opts = {})
|
60
|
-
request_stripe_object(
|
61
|
-
method: :post,
|
62
|
-
path: format("/v1/issuing/credit_underwriting_records/%<credit_underwriting_record>s/report_decision", { credit_underwriting_record: CGI.escape(credit_underwriting_record) }),
|
63
|
-
params: params,
|
64
|
-
opts: opts
|
65
|
-
)
|
66
|
-
end
|
67
|
-
end
|
68
|
-
end
|
69
|
-
end
|
@@ -1,77 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Issuing
|
6
|
-
# A Personalization Design is a logical grouping of a Physical Bundle, card logo, and carrier text that represents a product line.
|
7
|
-
class PersonalizationDesign < APIResource
|
8
|
-
extend Stripe::APIOperations::Create
|
9
|
-
extend Stripe::APIOperations::List
|
10
|
-
include Stripe::APIOperations::Save
|
11
|
-
|
12
|
-
OBJECT_NAME = "issuing.personalization_design"
|
13
|
-
|
14
|
-
def test_helpers
|
15
|
-
TestHelpers.new(self)
|
16
|
-
end
|
17
|
-
|
18
|
-
class TestHelpers < APIResourceTestHelpers
|
19
|
-
RESOURCE_CLASS = PersonalizationDesign
|
20
|
-
|
21
|
-
def self.activate(personalization_design, params = {}, opts = {})
|
22
|
-
request_stripe_object(
|
23
|
-
method: :post,
|
24
|
-
path: format("/v1/test_helpers/issuing/personalization_designs/%<personalization_design>s/activate", { personalization_design: CGI.escape(personalization_design) }),
|
25
|
-
params: params,
|
26
|
-
opts: opts
|
27
|
-
)
|
28
|
-
end
|
29
|
-
|
30
|
-
def self.deactivate(personalization_design, params = {}, opts = {})
|
31
|
-
request_stripe_object(
|
32
|
-
method: :post,
|
33
|
-
path: format("/v1/test_helpers/issuing/personalization_designs/%<personalization_design>s/deactivate", { personalization_design: CGI.escape(personalization_design) }),
|
34
|
-
params: params,
|
35
|
-
opts: opts
|
36
|
-
)
|
37
|
-
end
|
38
|
-
|
39
|
-
def self.reject(personalization_design, params = {}, opts = {})
|
40
|
-
request_stripe_object(
|
41
|
-
method: :post,
|
42
|
-
path: format("/v1/test_helpers/issuing/personalization_designs/%<personalization_design>s/reject", { personalization_design: CGI.escape(personalization_design) }),
|
43
|
-
params: params,
|
44
|
-
opts: opts
|
45
|
-
)
|
46
|
-
end
|
47
|
-
|
48
|
-
def activate(params = {}, opts = {})
|
49
|
-
@resource.request_stripe_object(
|
50
|
-
method: :post,
|
51
|
-
path: format("/v1/test_helpers/issuing/personalization_designs/%<personalization_design>s/activate", { personalization_design: CGI.escape(@resource["id"]) }),
|
52
|
-
params: params,
|
53
|
-
opts: opts
|
54
|
-
)
|
55
|
-
end
|
56
|
-
|
57
|
-
def deactivate(params = {}, opts = {})
|
58
|
-
@resource.request_stripe_object(
|
59
|
-
method: :post,
|
60
|
-
path: format("/v1/test_helpers/issuing/personalization_designs/%<personalization_design>s/deactivate", { personalization_design: CGI.escape(@resource["id"]) }),
|
61
|
-
params: params,
|
62
|
-
opts: opts
|
63
|
-
)
|
64
|
-
end
|
65
|
-
|
66
|
-
def reject(params = {}, opts = {})
|
67
|
-
@resource.request_stripe_object(
|
68
|
-
method: :post,
|
69
|
-
path: format("/v1/test_helpers/issuing/personalization_designs/%<personalization_design>s/reject", { personalization_design: CGI.escape(@resource["id"]) }),
|
70
|
-
params: params,
|
71
|
-
opts: opts
|
72
|
-
)
|
73
|
-
end
|
74
|
-
end
|
75
|
-
end
|
76
|
-
end
|
77
|
-
end
|
@@ -1,13 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
module Issuing
|
6
|
-
# A Physical Bundle represents the bundle of physical items - card stock, carrier letter, and envelope - that is shipped to a cardholder when you create a physical card.
|
7
|
-
class PhysicalBundle < APIResource
|
8
|
-
extend Stripe::APIOperations::List
|
9
|
-
|
10
|
-
OBJECT_NAME = "issuing.physical_bundle"
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
# File generated from our OpenAPI spec
|
2
|
-
# frozen_string_literal: true
|
3
|
-
|
4
|
-
module Stripe
|
5
|
-
# A (partner) margin represents a specific discount distributed in partner reseller programs to business partners who
|
6
|
-
# resell products and services and earn a discount (margin) for doing so.
|
7
|
-
class Margin < APIResource
|
8
|
-
extend Stripe::APIOperations::Create
|
9
|
-
extend Stripe::APIOperations::List
|
10
|
-
include Stripe::APIOperations::Save
|
11
|
-
|
12
|
-
OBJECT_NAME = "margin"
|
13
|
-
end
|
14
|
-
end
|