stripe 15.6.0.pre.alpha.1 → 15.6.0.pre.alpha.2
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/API_VERSION +1 -1
- data/CHANGELOG.md +6 -0
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/stripe/resources/account.rb +443 -0
- data/lib/stripe/resources/account_link.rb +8 -0
- data/lib/stripe/resources/account_notice.rb +24 -0
- data/lib/stripe/resources/account_session.rb +435 -10
- data/lib/stripe/resources/apple_pay_domain.rb +8 -0
- data/lib/stripe/resources/application.rb +8 -0
- data/lib/stripe/resources/application_fee.rb +16 -0
- data/lib/stripe/resources/application_fee_refund.rb +8 -0
- data/lib/stripe/resources/apps/secret.rb +16 -0
- data/lib/stripe/resources/balance.rb +159 -0
- data/lib/stripe/resources/balance_settings.rb +40 -0
- data/lib/stripe/resources/balance_transaction.rb +16 -0
- data/lib/stripe/resources/bank_account.rb +40 -0
- data/lib/stripe/resources/billing/alert.rb +75 -0
- data/lib/stripe/resources/billing/alert_triggered.rb +8 -0
- data/lib/stripe/resources/billing/credit_balance_summary.rb +80 -0
- data/lib/stripe/resources/billing/credit_balance_transaction.rb +107 -0
- data/lib/stripe/resources/billing/credit_grant.rb +72 -0
- data/lib/stripe/resources/billing/meter.rb +45 -0
- data/lib/stripe/resources/billing/meter_event.rb +8 -0
- data/lib/stripe/resources/billing/meter_event_adjustment.rb +16 -0
- data/lib/stripe/resources/billing/meter_event_summary.rb +8 -0
- data/lib/stripe/resources/billing/meter_usage.rb +8 -0
- data/lib/stripe/resources/billing/meter_usage_row.rb +8 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +122 -0
- data/lib/stripe/resources/billing_portal/session.rb +101 -0
- data/lib/stripe/resources/capability.rb +56 -0
- data/lib/stripe/resources/capital/financing_offer.rb +24 -0
- data/lib/stripe/resources/capital/financing_summary.rb +24 -0
- data/lib/stripe/resources/capital/financing_transaction.rb +24 -0
- data/lib/stripe/resources/card.rb +16 -0
- data/lib/stripe/resources/cash_balance.rb +16 -0
- data/lib/stripe/resources/charge.rb +1052 -16
- data/lib/stripe/resources/checkout/session.rb +950 -0
- data/lib/stripe/resources/climate/order.rb +32 -0
- data/lib/stripe/resources/climate/product.rb +16 -0
- data/lib/stripe/resources/climate/supplier.rb +16 -0
- data/lib/stripe/resources/confirmation_token.rb +960 -38
- data/lib/stripe/resources/connect_collection_transfer.rb +8 -0
- data/lib/stripe/resources/country_spec.rb +32 -0
- data/lib/stripe/resources/coupon.rb +36 -0
- data/lib/stripe/resources/credit_note.rb +70 -0
- data/lib/stripe/resources/credit_note_line_item.rb +53 -0
- data/lib/stripe/resources/customer.rb +77 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +8 -0
- data/lib/stripe/resources/customer_cash_balance_transaction.rb +108 -0
- data/lib/stripe/resources/customer_session.rb +52 -0
- data/lib/stripe/resources/discount.rb +8 -0
- data/lib/stripe/resources/dispute.rb +166 -0
- data/lib/stripe/resources/entitlements/active_entitlement.rb +8 -0
- data/lib/stripe/resources/entitlements/active_entitlement_summary.rb +8 -0
- data/lib/stripe/resources/entitlements/feature.rb +8 -0
- data/lib/stripe/resources/ephemeral_key.rb +8 -0
- data/lib/stripe/resources/event.rb +56 -0
- data/lib/stripe/resources/exchange_rate.rb +8 -0
- data/lib/stripe/resources/file.rb +8 -0
- data/lib/stripe/resources/file_link.rb +8 -0
- data/lib/stripe/resources/financial_connections/account.rb +79 -0
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +8 -0
- data/lib/stripe/resources/financial_connections/account_owner.rb +8 -0
- data/lib/stripe/resources/financial_connections/account_ownership.rb +8 -0
- data/lib/stripe/resources/financial_connections/institution.rb +53 -0
- data/lib/stripe/resources/financial_connections/session.rb +63 -1
- data/lib/stripe/resources/financial_connections/transaction.rb +16 -0
- data/lib/stripe/resources/forwarding/request.rb +52 -0
- data/lib/stripe/resources/funding_instructions.rb +193 -0
- data/lib/stripe/resources/fx_quote.rb +48 -0
- data/lib/stripe/resources/identity/verification_report.rb +166 -1
- data/lib/stripe/resources/identity/verification_session.rb +126 -1
- data/lib/stripe/resources/invoice.rb +441 -3
- data/lib/stripe/resources/invoice_item.rb +88 -0
- data/lib/stripe/resources/invoice_line_item.rb +186 -0
- data/lib/stripe/resources/invoice_payment.rb +24 -0
- data/lib/stripe/resources/invoice_rendering_template.rb +8 -0
- data/lib/stripe/resources/issuing/authorization.rb +177 -0
- data/lib/stripe/resources/issuing/card.rb +96 -0
- data/lib/stripe/resources/issuing/cardholder.rb +110 -0
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +82 -0
- data/lib/stripe/resources/issuing/dispute.rb +97 -0
- data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +16 -0
- data/lib/stripe/resources/issuing/fraud_liability_debit.rb +8 -0
- data/lib/stripe/resources/issuing/personalization_design.rb +36 -0
- data/lib/stripe/resources/issuing/physical_bundle.rb +16 -0
- data/lib/stripe/resources/issuing/settlement.rb +8 -0
- data/lib/stripe/resources/issuing/token.rb +61 -0
- data/lib/stripe/resources/issuing/transaction.rb +151 -0
- data/lib/stripe/resources/line_item.rb +54 -0
- data/lib/stripe/resources/login_link.rb +8 -0
- data/lib/stripe/resources/mandate.rb +242 -11
- data/lib/stripe/resources/margin.rb +8 -0
- data/lib/stripe/resources/order.rb +348 -0
- data/lib/stripe/resources/payment_attempt_record.rb +890 -11
- data/lib/stripe/resources/payment_intent.rb +1405 -3
- data/lib/stripe/resources/payment_intent_amount_details_line_item.rb +56 -0
- data/lib/stripe/resources/payment_link.rb +337 -0
- data/lib/stripe/resources/payment_method.rb +884 -38
- data/lib/stripe/resources/payment_method_configuration.rb +961 -0
- data/lib/stripe/resources/payment_method_domain.rb +111 -0
- data/lib/stripe/resources/payment_record.rb +890 -11
- data/lib/stripe/resources/payout.rb +16 -0
- data/lib/stripe/resources/person.rb +180 -0
- data/lib/stripe/resources/plan.rb +24 -0
- data/lib/stripe/resources/price.rb +79 -0
- data/lib/stripe/resources/privacy/redaction_job.rb +16 -0
- data/lib/stripe/resources/privacy/redaction_job_validation_error.rb +16 -0
- data/lib/stripe/resources/product.rb +27 -0
- data/lib/stripe/resources/product_feature.rb +8 -0
- data/lib/stripe/resources/promotion_code.rb +24 -0
- data/lib/stripe/resources/quote.rb +432 -0
- data/lib/stripe/resources/quote_line.rb +247 -0
- data/lib/stripe/resources/quote_preview_invoice.rb +450 -3
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +323 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +8 -0
- data/lib/stripe/resources/radar/value_list.rb +8 -0
- data/lib/stripe/resources/radar/value_list_item.rb +8 -0
- data/lib/stripe/resources/refund.rb +380 -19
- data/lib/stripe/resources/reporting/report_run.rb +16 -0
- data/lib/stripe/resources/reporting/report_type.rb +8 -0
- data/lib/stripe/resources/reserve_transaction.rb +8 -0
- data/lib/stripe/resources/reversal.rb +8 -0
- data/lib/stripe/resources/review.rb +24 -0
- data/lib/stripe/resources/setup_attempt.rb +331 -20
- data/lib/stripe/resources/setup_intent.rb +293 -2
- data/lib/stripe/resources/shipping_rate.rb +48 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +16 -0
- data/lib/stripe/resources/source.rb +274 -0
- data/lib/stripe/resources/source_mandate_notification.rb +32 -0
- data/lib/stripe/resources/source_transaction.rb +54 -0
- data/lib/stripe/resources/subscription.rb +318 -3
- data/lib/stripe/resources/subscription_item.rb +24 -0
- data/lib/stripe/resources/subscription_schedule.rb +314 -0
- data/lib/stripe/resources/tax/association.rb +32 -0
- data/lib/stripe/resources/tax/calculation.rb +109 -0
- data/lib/stripe/resources/tax/calculation_line_item.rb +32 -0
- data/lib/stripe/resources/tax/form.rb +107 -0
- data/lib/stripe/resources/tax/registration.rb +1232 -0
- data/lib/stripe/resources/tax/settings.rb +61 -1
- data/lib/stripe/resources/tax/transaction.rb +93 -0
- data/lib/stripe/resources/tax/transaction_line_item.rb +16 -0
- data/lib/stripe/resources/tax_code.rb +8 -0
- data/lib/stripe/resources/tax_deducted_at_source.rb +8 -0
- data/lib/stripe/resources/tax_id.rb +24 -0
- data/lib/stripe/resources/tax_rate.rb +16 -0
- data/lib/stripe/resources/terminal/configuration.rb +299 -0
- data/lib/stripe/resources/terminal/connection_token.rb +8 -0
- data/lib/stripe/resources/terminal/location.rb +16 -0
- data/lib/stripe/resources/terminal/onboarding_link.rb +24 -0
- data/lib/stripe/resources/terminal/reader.rb +241 -0
- data/lib/stripe/resources/terminal/reader_collected_data.rb +16 -0
- data/lib/stripe/resources/test_helpers/test_clock.rb +24 -0
- data/lib/stripe/resources/token.rb +8 -0
- data/lib/stripe/resources/topup.rb +8 -0
- data/lib/stripe/resources/transfer.rb +8 -0
- data/lib/stripe/resources/treasury/credit_reversal.rb +16 -0
- data/lib/stripe/resources/treasury/debit_reversal.rb +24 -0
- data/lib/stripe/resources/treasury/financial_account.rb +61 -0
- data/lib/stripe/resources/treasury/financial_account_features.rb +192 -0
- data/lib/stripe/resources/treasury/inbound_transfer.rb +69 -0
- data/lib/stripe/resources/treasury/outbound_payment.rb +106 -0
- data/lib/stripe/resources/treasury/outbound_transfer.rb +114 -0
- data/lib/stripe/resources/treasury/received_credit.rb +97 -0
- data/lib/stripe/resources/treasury/received_debit.rb +89 -0
- data/lib/stripe/resources/treasury/transaction.rb +36 -0
- data/lib/stripe/resources/treasury/transaction_entry.rb +24 -0
- data/lib/stripe/resources/v2/billing/bill_setting.rb +40 -0
- data/lib/stripe/resources/v2/billing/bill_setting_version.rb +40 -0
- data/lib/stripe/resources/v2/billing/cadence.rb +141 -0
- data/lib/stripe/resources/v2/billing/collection_setting.rb +150 -2
- data/lib/stripe/resources/v2/billing/collection_setting_version.rb +150 -2
- data/lib/stripe/resources/v2/billing/custom_pricing_unit.rb +8 -0
- data/lib/stripe/resources/v2/billing/intent.rb +27 -0
- data/lib/stripe/resources/v2/billing/intent_action.rb +195 -0
- data/lib/stripe/resources/v2/billing/license_fee.rb +24 -0
- data/lib/stripe/resources/v2/billing/license_fee_subscription.rb +8 -0
- data/lib/stripe/resources/v2/billing/license_fee_version.rb +24 -0
- data/lib/stripe/resources/v2/billing/licensed_item.rb +16 -0
- data/lib/stripe/resources/v2/billing/meter_event.rb +8 -0
- data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +16 -0
- data/lib/stripe/resources/v2/billing/meter_event_session.rb +8 -0
- data/lib/stripe/resources/v2/billing/metered_item.rb +27 -0
- data/lib/stripe/resources/v2/billing/pricing_plan.rb +8 -0
- data/lib/stripe/resources/v2/billing/pricing_plan_component.rb +36 -0
- data/lib/stripe/resources/v2/billing/pricing_plan_subscription.rb +27 -0
- data/lib/stripe/resources/v2/billing/pricing_plan_version.rb +8 -0
- data/lib/stripe/resources/v2/billing/profile.rb +8 -0
- data/lib/stripe/resources/v2/billing/rate_card.rb +8 -0
- data/lib/stripe/resources/v2/billing/rate_card_rate.rb +36 -0
- data/lib/stripe/resources/v2/billing/rate_card_subscription.rb +27 -0
- data/lib/stripe/resources/v2/billing/rate_card_version.rb +8 -0
- data/lib/stripe/resources/v2/billing/service_action.rb +115 -0
- data/lib/stripe/resources/v2/core/account.rb +1900 -0
- data/lib/stripe/resources/v2/core/account_link.rb +51 -0
- data/lib/stripe/resources/v2/core/claimable_sandbox.rb +24 -0
- data/lib/stripe/resources/v2/core/person.rb +201 -0
- data/lib/stripe/resources/v2/core/vault/gb_bank_account.rb +40 -0
- data/lib/stripe/resources/v2/core/vault/us_bank_account.rb +8 -0
- data/lib/stripe/resources/v2/event.rb +24 -0
- data/lib/stripe/resources/v2/event_destination.rb +44 -0
- data/lib/stripe/resources/v2/financial_address_credit_simulation.rb +8 -0
- data/lib/stripe/resources/v2/financial_address_generated_microdeposits.rb +8 -0
- data/lib/stripe/resources/v2/money_management/adjustment.rb +16 -0
- data/lib/stripe/resources/v2/money_management/financial_account.rb +61 -0
- data/lib/stripe/resources/v2/money_management/financial_address.rb +32 -0
- data/lib/stripe/resources/v2/money_management/inbound_transfer.rb +90 -3
- data/lib/stripe/resources/v2/money_management/outbound_payment.rb +88 -0
- data/lib/stripe/resources/v2/money_management/outbound_payment_quote.rb +62 -0
- data/lib/stripe/resources/v2/money_management/outbound_setup_intent.rb +24 -0
- data/lib/stripe/resources/v2/money_management/outbound_transfer.rb +79 -0
- data/lib/stripe/resources/v2/money_management/payout_method.rb +32 -0
- data/lib/stripe/resources/v2/money_management/payout_methods_bank_account_spec.rb +32 -0
- data/lib/stripe/resources/v2/money_management/received_credit.rb +77 -0
- data/lib/stripe/resources/v2/money_management/received_debit.rb +52 -0
- data/lib/stripe/resources/v2/money_management/transaction.rb +36 -0
- data/lib/stripe/resources/v2/money_management/transaction_entry.rb +35 -0
- data/lib/stripe/resources/v2/payments/off_session_payment.rb +24 -0
- data/lib/stripe/resources/v2/reporting/report.rb +52 -0
- data/lib/stripe/resources/v2/reporting/report_run.rb +69 -0
- data/lib/stripe/resources/v2/tax/automatic_rule.rb +8 -0
- data/lib/stripe/resources/webhook_endpoint.rb +8 -0
- data/lib/stripe/stripe_object.rb +25 -1
- data/lib/stripe/util.rb +9 -5
- data/lib/stripe/version.rb +1 -1
- data/rbi/stripe.rbi +280174 -0
- metadata +3 -2
@@ -19,16 +19,40 @@ module Stripe
|
|
19
19
|
class BbposWiseposE < Stripe::StripeObject
|
20
20
|
# A File ID representing an image to display on the reader
|
21
21
|
attr_reader :splashscreen
|
22
|
+
|
23
|
+
def self.inner_class_types
|
24
|
+
@inner_class_types = {}
|
25
|
+
end
|
26
|
+
|
27
|
+
def self.field_remappings
|
28
|
+
@field_remappings = {}
|
29
|
+
end
|
22
30
|
end
|
23
31
|
|
24
32
|
class Offline < Stripe::StripeObject
|
25
33
|
# Determines whether to allow transactions to be collected while reader is offline. Defaults to false.
|
26
34
|
attr_reader :enabled
|
35
|
+
|
36
|
+
def self.inner_class_types
|
37
|
+
@inner_class_types = {}
|
38
|
+
end
|
39
|
+
|
40
|
+
def self.field_remappings
|
41
|
+
@field_remappings = {}
|
42
|
+
end
|
27
43
|
end
|
28
44
|
|
29
45
|
class ReaderSecurity < Stripe::StripeObject
|
30
46
|
# Passcode used to access a reader's admin menu.
|
31
47
|
attr_reader :admin_menu_passcode
|
48
|
+
|
49
|
+
def self.inner_class_types
|
50
|
+
@inner_class_types = {}
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.field_remappings
|
54
|
+
@field_remappings = {}
|
55
|
+
end
|
32
56
|
end
|
33
57
|
|
34
58
|
class RebootWindow < Stripe::StripeObject
|
@@ -36,11 +60,27 @@ module Stripe
|
|
36
60
|
attr_reader :end_hour
|
37
61
|
# Integer between 0 to 23 that represents the start hour of the reboot time window.
|
38
62
|
attr_reader :start_hour
|
63
|
+
|
64
|
+
def self.inner_class_types
|
65
|
+
@inner_class_types = {}
|
66
|
+
end
|
67
|
+
|
68
|
+
def self.field_remappings
|
69
|
+
@field_remappings = {}
|
70
|
+
end
|
39
71
|
end
|
40
72
|
|
41
73
|
class StripeS700 < Stripe::StripeObject
|
42
74
|
# A File ID representing an image to display on the reader
|
43
75
|
attr_reader :splashscreen
|
76
|
+
|
77
|
+
def self.inner_class_types
|
78
|
+
@inner_class_types = {}
|
79
|
+
end
|
80
|
+
|
81
|
+
def self.field_remappings
|
82
|
+
@field_remappings = {}
|
83
|
+
end
|
44
84
|
end
|
45
85
|
|
46
86
|
class Tipping < Stripe::StripeObject
|
@@ -51,6 +91,14 @@ module Stripe
|
|
51
91
|
attr_reader :percentages
|
52
92
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
53
93
|
attr_reader :smart_tip_threshold
|
94
|
+
|
95
|
+
def self.inner_class_types
|
96
|
+
@inner_class_types = {}
|
97
|
+
end
|
98
|
+
|
99
|
+
def self.field_remappings
|
100
|
+
@field_remappings = {}
|
101
|
+
end
|
54
102
|
end
|
55
103
|
|
56
104
|
class Aud < Stripe::StripeObject
|
@@ -60,6 +108,14 @@ module Stripe
|
|
60
108
|
attr_reader :percentages
|
61
109
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
62
110
|
attr_reader :smart_tip_threshold
|
111
|
+
|
112
|
+
def self.inner_class_types
|
113
|
+
@inner_class_types = {}
|
114
|
+
end
|
115
|
+
|
116
|
+
def self.field_remappings
|
117
|
+
@field_remappings = {}
|
118
|
+
end
|
63
119
|
end
|
64
120
|
|
65
121
|
class Bgn < Stripe::StripeObject
|
@@ -69,6 +125,14 @@ module Stripe
|
|
69
125
|
attr_reader :percentages
|
70
126
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
71
127
|
attr_reader :smart_tip_threshold
|
128
|
+
|
129
|
+
def self.inner_class_types
|
130
|
+
@inner_class_types = {}
|
131
|
+
end
|
132
|
+
|
133
|
+
def self.field_remappings
|
134
|
+
@field_remappings = {}
|
135
|
+
end
|
72
136
|
end
|
73
137
|
|
74
138
|
class Cad < Stripe::StripeObject
|
@@ -78,6 +142,14 @@ module Stripe
|
|
78
142
|
attr_reader :percentages
|
79
143
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
80
144
|
attr_reader :smart_tip_threshold
|
145
|
+
|
146
|
+
def self.inner_class_types
|
147
|
+
@inner_class_types = {}
|
148
|
+
end
|
149
|
+
|
150
|
+
def self.field_remappings
|
151
|
+
@field_remappings = {}
|
152
|
+
end
|
81
153
|
end
|
82
154
|
|
83
155
|
class Chf < Stripe::StripeObject
|
@@ -87,6 +159,14 @@ module Stripe
|
|
87
159
|
attr_reader :percentages
|
88
160
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
89
161
|
attr_reader :smart_tip_threshold
|
162
|
+
|
163
|
+
def self.inner_class_types
|
164
|
+
@inner_class_types = {}
|
165
|
+
end
|
166
|
+
|
167
|
+
def self.field_remappings
|
168
|
+
@field_remappings = {}
|
169
|
+
end
|
90
170
|
end
|
91
171
|
|
92
172
|
class Czk < Stripe::StripeObject
|
@@ -96,6 +176,14 @@ module Stripe
|
|
96
176
|
attr_reader :percentages
|
97
177
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
98
178
|
attr_reader :smart_tip_threshold
|
179
|
+
|
180
|
+
def self.inner_class_types
|
181
|
+
@inner_class_types = {}
|
182
|
+
end
|
183
|
+
|
184
|
+
def self.field_remappings
|
185
|
+
@field_remappings = {}
|
186
|
+
end
|
99
187
|
end
|
100
188
|
|
101
189
|
class Dkk < Stripe::StripeObject
|
@@ -105,6 +193,14 @@ module Stripe
|
|
105
193
|
attr_reader :percentages
|
106
194
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
107
195
|
attr_reader :smart_tip_threshold
|
196
|
+
|
197
|
+
def self.inner_class_types
|
198
|
+
@inner_class_types = {}
|
199
|
+
end
|
200
|
+
|
201
|
+
def self.field_remappings
|
202
|
+
@field_remappings = {}
|
203
|
+
end
|
108
204
|
end
|
109
205
|
|
110
206
|
class Eur < Stripe::StripeObject
|
@@ -114,6 +210,14 @@ module Stripe
|
|
114
210
|
attr_reader :percentages
|
115
211
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
116
212
|
attr_reader :smart_tip_threshold
|
213
|
+
|
214
|
+
def self.inner_class_types
|
215
|
+
@inner_class_types = {}
|
216
|
+
end
|
217
|
+
|
218
|
+
def self.field_remappings
|
219
|
+
@field_remappings = {}
|
220
|
+
end
|
117
221
|
end
|
118
222
|
|
119
223
|
class Gbp < Stripe::StripeObject
|
@@ -123,6 +227,14 @@ module Stripe
|
|
123
227
|
attr_reader :percentages
|
124
228
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
125
229
|
attr_reader :smart_tip_threshold
|
230
|
+
|
231
|
+
def self.inner_class_types
|
232
|
+
@inner_class_types = {}
|
233
|
+
end
|
234
|
+
|
235
|
+
def self.field_remappings
|
236
|
+
@field_remappings = {}
|
237
|
+
end
|
126
238
|
end
|
127
239
|
|
128
240
|
class Hkd < Stripe::StripeObject
|
@@ -132,6 +244,14 @@ module Stripe
|
|
132
244
|
attr_reader :percentages
|
133
245
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
134
246
|
attr_reader :smart_tip_threshold
|
247
|
+
|
248
|
+
def self.inner_class_types
|
249
|
+
@inner_class_types = {}
|
250
|
+
end
|
251
|
+
|
252
|
+
def self.field_remappings
|
253
|
+
@field_remappings = {}
|
254
|
+
end
|
135
255
|
end
|
136
256
|
|
137
257
|
class Huf < Stripe::StripeObject
|
@@ -141,6 +261,14 @@ module Stripe
|
|
141
261
|
attr_reader :percentages
|
142
262
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
143
263
|
attr_reader :smart_tip_threshold
|
264
|
+
|
265
|
+
def self.inner_class_types
|
266
|
+
@inner_class_types = {}
|
267
|
+
end
|
268
|
+
|
269
|
+
def self.field_remappings
|
270
|
+
@field_remappings = {}
|
271
|
+
end
|
144
272
|
end
|
145
273
|
|
146
274
|
class Jpy < Stripe::StripeObject
|
@@ -150,6 +278,14 @@ module Stripe
|
|
150
278
|
attr_reader :percentages
|
151
279
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
152
280
|
attr_reader :smart_tip_threshold
|
281
|
+
|
282
|
+
def self.inner_class_types
|
283
|
+
@inner_class_types = {}
|
284
|
+
end
|
285
|
+
|
286
|
+
def self.field_remappings
|
287
|
+
@field_remappings = {}
|
288
|
+
end
|
153
289
|
end
|
154
290
|
|
155
291
|
class Mxn < Stripe::StripeObject
|
@@ -159,6 +295,14 @@ module Stripe
|
|
159
295
|
attr_reader :percentages
|
160
296
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
161
297
|
attr_reader :smart_tip_threshold
|
298
|
+
|
299
|
+
def self.inner_class_types
|
300
|
+
@inner_class_types = {}
|
301
|
+
end
|
302
|
+
|
303
|
+
def self.field_remappings
|
304
|
+
@field_remappings = {}
|
305
|
+
end
|
162
306
|
end
|
163
307
|
|
164
308
|
class Myr < Stripe::StripeObject
|
@@ -168,6 +312,14 @@ module Stripe
|
|
168
312
|
attr_reader :percentages
|
169
313
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
170
314
|
attr_reader :smart_tip_threshold
|
315
|
+
|
316
|
+
def self.inner_class_types
|
317
|
+
@inner_class_types = {}
|
318
|
+
end
|
319
|
+
|
320
|
+
def self.field_remappings
|
321
|
+
@field_remappings = {}
|
322
|
+
end
|
171
323
|
end
|
172
324
|
|
173
325
|
class Nok < Stripe::StripeObject
|
@@ -177,6 +329,14 @@ module Stripe
|
|
177
329
|
attr_reader :percentages
|
178
330
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
179
331
|
attr_reader :smart_tip_threshold
|
332
|
+
|
333
|
+
def self.inner_class_types
|
334
|
+
@inner_class_types = {}
|
335
|
+
end
|
336
|
+
|
337
|
+
def self.field_remappings
|
338
|
+
@field_remappings = {}
|
339
|
+
end
|
180
340
|
end
|
181
341
|
|
182
342
|
class Nzd < Stripe::StripeObject
|
@@ -186,6 +346,14 @@ module Stripe
|
|
186
346
|
attr_reader :percentages
|
187
347
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
188
348
|
attr_reader :smart_tip_threshold
|
349
|
+
|
350
|
+
def self.inner_class_types
|
351
|
+
@inner_class_types = {}
|
352
|
+
end
|
353
|
+
|
354
|
+
def self.field_remappings
|
355
|
+
@field_remappings = {}
|
356
|
+
end
|
189
357
|
end
|
190
358
|
|
191
359
|
class Pln < Stripe::StripeObject
|
@@ -195,6 +363,14 @@ module Stripe
|
|
195
363
|
attr_reader :percentages
|
196
364
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
197
365
|
attr_reader :smart_tip_threshold
|
366
|
+
|
367
|
+
def self.inner_class_types
|
368
|
+
@inner_class_types = {}
|
369
|
+
end
|
370
|
+
|
371
|
+
def self.field_remappings
|
372
|
+
@field_remappings = {}
|
373
|
+
end
|
198
374
|
end
|
199
375
|
|
200
376
|
class Ron < Stripe::StripeObject
|
@@ -204,6 +380,14 @@ module Stripe
|
|
204
380
|
attr_reader :percentages
|
205
381
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
206
382
|
attr_reader :smart_tip_threshold
|
383
|
+
|
384
|
+
def self.inner_class_types
|
385
|
+
@inner_class_types = {}
|
386
|
+
end
|
387
|
+
|
388
|
+
def self.field_remappings
|
389
|
+
@field_remappings = {}
|
390
|
+
end
|
207
391
|
end
|
208
392
|
|
209
393
|
class Sek < Stripe::StripeObject
|
@@ -213,6 +397,14 @@ module Stripe
|
|
213
397
|
attr_reader :percentages
|
214
398
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
215
399
|
attr_reader :smart_tip_threshold
|
400
|
+
|
401
|
+
def self.inner_class_types
|
402
|
+
@inner_class_types = {}
|
403
|
+
end
|
404
|
+
|
405
|
+
def self.field_remappings
|
406
|
+
@field_remappings = {}
|
407
|
+
end
|
216
408
|
end
|
217
409
|
|
218
410
|
class Sgd < Stripe::StripeObject
|
@@ -222,6 +414,14 @@ module Stripe
|
|
222
414
|
attr_reader :percentages
|
223
415
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
224
416
|
attr_reader :smart_tip_threshold
|
417
|
+
|
418
|
+
def self.inner_class_types
|
419
|
+
@inner_class_types = {}
|
420
|
+
end
|
421
|
+
|
422
|
+
def self.field_remappings
|
423
|
+
@field_remappings = {}
|
424
|
+
end
|
225
425
|
end
|
226
426
|
|
227
427
|
class Usd < Stripe::StripeObject
|
@@ -231,6 +431,14 @@ module Stripe
|
|
231
431
|
attr_reader :percentages
|
232
432
|
# Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
|
233
433
|
attr_reader :smart_tip_threshold
|
434
|
+
|
435
|
+
def self.inner_class_types
|
436
|
+
@inner_class_types = {}
|
437
|
+
end
|
438
|
+
|
439
|
+
def self.field_remappings
|
440
|
+
@field_remappings = {}
|
441
|
+
end
|
234
442
|
end
|
235
443
|
# Attribute for field aed
|
236
444
|
attr_reader :aed
|
@@ -274,11 +482,49 @@ module Stripe
|
|
274
482
|
attr_reader :sgd
|
275
483
|
# Attribute for field usd
|
276
484
|
attr_reader :usd
|
485
|
+
|
486
|
+
def self.inner_class_types
|
487
|
+
@inner_class_types = {
|
488
|
+
aed: Aed,
|
489
|
+
aud: Aud,
|
490
|
+
bgn: Bgn,
|
491
|
+
cad: Cad,
|
492
|
+
chf: Chf,
|
493
|
+
czk: Czk,
|
494
|
+
dkk: Dkk,
|
495
|
+
eur: Eur,
|
496
|
+
gbp: Gbp,
|
497
|
+
hkd: Hkd,
|
498
|
+
huf: Huf,
|
499
|
+
jpy: Jpy,
|
500
|
+
mxn: Mxn,
|
501
|
+
myr: Myr,
|
502
|
+
nok: Nok,
|
503
|
+
nzd: Nzd,
|
504
|
+
pln: Pln,
|
505
|
+
ron: Ron,
|
506
|
+
sek: Sek,
|
507
|
+
sgd: Sgd,
|
508
|
+
usd: Usd,
|
509
|
+
}
|
510
|
+
end
|
511
|
+
|
512
|
+
def self.field_remappings
|
513
|
+
@field_remappings = {}
|
514
|
+
end
|
277
515
|
end
|
278
516
|
|
279
517
|
class VerifoneP400 < Stripe::StripeObject
|
280
518
|
# A File ID representing an image to display on the reader
|
281
519
|
attr_reader :splashscreen
|
520
|
+
|
521
|
+
def self.inner_class_types
|
522
|
+
@inner_class_types = {}
|
523
|
+
end
|
524
|
+
|
525
|
+
def self.field_remappings
|
526
|
+
@field_remappings = {}
|
527
|
+
end
|
282
528
|
end
|
283
529
|
|
284
530
|
class Wifi < Stripe::StripeObject
|
@@ -291,6 +537,14 @@ module Stripe
|
|
291
537
|
attr_reader :ssid
|
292
538
|
# Username for connecting to the WiFi network
|
293
539
|
attr_reader :username
|
540
|
+
|
541
|
+
def self.inner_class_types
|
542
|
+
@inner_class_types = {}
|
543
|
+
end
|
544
|
+
|
545
|
+
def self.field_remappings
|
546
|
+
@field_remappings = {}
|
547
|
+
end
|
294
548
|
end
|
295
549
|
|
296
550
|
class EnterpriseEapTls < Stripe::StripeObject
|
@@ -304,6 +558,14 @@ module Stripe
|
|
304
558
|
attr_reader :private_key_file_password
|
305
559
|
# Name of the WiFi network
|
306
560
|
attr_reader :ssid
|
561
|
+
|
562
|
+
def self.inner_class_types
|
563
|
+
@inner_class_types = {}
|
564
|
+
end
|
565
|
+
|
566
|
+
def self.field_remappings
|
567
|
+
@field_remappings = {}
|
568
|
+
end
|
307
569
|
end
|
308
570
|
|
309
571
|
class PersonalPsk < Stripe::StripeObject
|
@@ -311,6 +573,14 @@ module Stripe
|
|
311
573
|
attr_reader :password
|
312
574
|
# Name of the WiFi network
|
313
575
|
attr_reader :ssid
|
576
|
+
|
577
|
+
def self.inner_class_types
|
578
|
+
@inner_class_types = {}
|
579
|
+
end
|
580
|
+
|
581
|
+
def self.field_remappings
|
582
|
+
@field_remappings = {}
|
583
|
+
end
|
314
584
|
end
|
315
585
|
# Attribute for field enterprise_eap_peap
|
316
586
|
attr_reader :enterprise_eap_peap
|
@@ -320,6 +590,18 @@ module Stripe
|
|
320
590
|
attr_reader :personal_psk
|
321
591
|
# Security type of the WiFi network. The hash with the corresponding name contains the credentials for this security type.
|
322
592
|
attr_reader :type
|
593
|
+
|
594
|
+
def self.inner_class_types
|
595
|
+
@inner_class_types = {
|
596
|
+
enterprise_eap_peap: EnterpriseEapPeap,
|
597
|
+
enterprise_eap_tls: EnterpriseEapTls,
|
598
|
+
personal_psk: PersonalPsk,
|
599
|
+
}
|
600
|
+
end
|
601
|
+
|
602
|
+
def self.field_remappings
|
603
|
+
@field_remappings = {}
|
604
|
+
end
|
323
605
|
end
|
324
606
|
|
325
607
|
class DeleteParams < Stripe::RequestParams; end
|
@@ -1602,6 +1884,23 @@ module Stripe
|
|
1602
1884
|
opts: opts
|
1603
1885
|
)
|
1604
1886
|
end
|
1887
|
+
|
1888
|
+
def self.inner_class_types
|
1889
|
+
@inner_class_types = {
|
1890
|
+
bbpos_wisepos_e: BbposWiseposE,
|
1891
|
+
offline: Offline,
|
1892
|
+
reader_security: ReaderSecurity,
|
1893
|
+
reboot_window: RebootWindow,
|
1894
|
+
stripe_s700: StripeS700,
|
1895
|
+
tipping: Tipping,
|
1896
|
+
verifone_p400: VerifoneP400,
|
1897
|
+
wifi: Wifi,
|
1898
|
+
}
|
1899
|
+
end
|
1900
|
+
|
1901
|
+
def self.field_remappings
|
1902
|
+
@field_remappings = {}
|
1903
|
+
end
|
1605
1904
|
end
|
1606
1905
|
end
|
1607
1906
|
end
|
@@ -30,6 +30,14 @@ module Stripe
|
|
30
30
|
attr_reader :postal_code
|
31
31
|
# State, county, province, or region.
|
32
32
|
attr_reader :state
|
33
|
+
|
34
|
+
def self.inner_class_types
|
35
|
+
@inner_class_types = {}
|
36
|
+
end
|
37
|
+
|
38
|
+
def self.field_remappings
|
39
|
+
@field_remappings = {}
|
40
|
+
end
|
33
41
|
end
|
34
42
|
|
35
43
|
class DeleteParams < Stripe::RequestParams; end
|
@@ -232,6 +240,14 @@ module Stripe
|
|
232
240
|
opts: opts
|
233
241
|
)
|
234
242
|
end
|
243
|
+
|
244
|
+
def self.inner_class_types
|
245
|
+
@inner_class_types = { address: Address }
|
246
|
+
end
|
247
|
+
|
248
|
+
def self.field_remappings
|
249
|
+
@field_remappings = {}
|
250
|
+
end
|
235
251
|
end
|
236
252
|
end
|
237
253
|
end
|
@@ -18,9 +18,25 @@ module Stripe
|
|
18
18
|
attr_reader :allow_relinking
|
19
19
|
# The business name of the merchant accepting Apple's Terms and Conditions.
|
20
20
|
attr_reader :merchant_display_name
|
21
|
+
|
22
|
+
def self.inner_class_types
|
23
|
+
@inner_class_types = {}
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.field_remappings
|
27
|
+
@field_remappings = {}
|
28
|
+
end
|
21
29
|
end
|
22
30
|
# The options associated with the Apple Terms and Conditions link type.
|
23
31
|
attr_reader :apple_terms_and_conditions
|
32
|
+
|
33
|
+
def self.inner_class_types
|
34
|
+
@inner_class_types = { apple_terms_and_conditions: AppleTermsAndConditions }
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.field_remappings
|
38
|
+
@field_remappings = {}
|
39
|
+
end
|
24
40
|
end
|
25
41
|
|
26
42
|
class CreateParams < Stripe::RequestParams
|
@@ -79,6 +95,14 @@ module Stripe
|
|
79
95
|
opts: opts
|
80
96
|
)
|
81
97
|
end
|
98
|
+
|
99
|
+
def self.inner_class_types
|
100
|
+
@inner_class_types = { link_options: LinkOptions }
|
101
|
+
end
|
102
|
+
|
103
|
+
def self.field_remappings
|
104
|
+
@field_remappings = {}
|
105
|
+
end
|
82
106
|
end
|
83
107
|
end
|
84
108
|
end
|