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
@@ -28,6 +28,14 @@ module Stripe
|
|
28
28
|
attr_reader :postal_code
|
29
29
|
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
30
30
|
attr_reader :state
|
31
|
+
|
32
|
+
def self.inner_class_types
|
33
|
+
@inner_class_types = {}
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.field_remappings
|
37
|
+
@field_remappings = {}
|
38
|
+
end
|
31
39
|
end
|
32
40
|
|
33
41
|
class TaxId < Stripe::StripeObject
|
@@ -35,6 +43,14 @@ module Stripe
|
|
35
43
|
attr_reader :type
|
36
44
|
# The value of the tax ID.
|
37
45
|
attr_reader :value
|
46
|
+
|
47
|
+
def self.inner_class_types
|
48
|
+
@inner_class_types = {}
|
49
|
+
end
|
50
|
+
|
51
|
+
def self.field_remappings
|
52
|
+
@field_remappings = {}
|
53
|
+
end
|
38
54
|
end
|
39
55
|
# The customer's postal address (for example, home or business location).
|
40
56
|
attr_reader :address
|
@@ -46,6 +62,14 @@ module Stripe
|
|
46
62
|
attr_reader :tax_ids
|
47
63
|
# The taxability override used for taxation.
|
48
64
|
attr_reader :taxability_override
|
65
|
+
|
66
|
+
def self.inner_class_types
|
67
|
+
@inner_class_types = { address: Address, tax_ids: TaxId }
|
68
|
+
end
|
69
|
+
|
70
|
+
def self.field_remappings
|
71
|
+
@field_remappings = {}
|
72
|
+
end
|
49
73
|
end
|
50
74
|
|
51
75
|
class ShipFromDetails < Stripe::StripeObject
|
@@ -62,9 +86,25 @@ module Stripe
|
|
62
86
|
attr_reader :postal_code
|
63
87
|
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
64
88
|
attr_reader :state
|
89
|
+
|
90
|
+
def self.inner_class_types
|
91
|
+
@inner_class_types = {}
|
92
|
+
end
|
93
|
+
|
94
|
+
def self.field_remappings
|
95
|
+
@field_remappings = {}
|
96
|
+
end
|
65
97
|
end
|
66
98
|
# Attribute for field address
|
67
99
|
attr_reader :address
|
100
|
+
|
101
|
+
def self.inner_class_types
|
102
|
+
@inner_class_types = { address: Address }
|
103
|
+
end
|
104
|
+
|
105
|
+
def self.field_remappings
|
106
|
+
@field_remappings = {}
|
107
|
+
end
|
68
108
|
end
|
69
109
|
|
70
110
|
class ShippingCost < Stripe::StripeObject
|
@@ -78,6 +118,14 @@ module Stripe
|
|
78
118
|
attr_reader :level
|
79
119
|
# [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States.
|
80
120
|
attr_reader :state
|
121
|
+
|
122
|
+
def self.inner_class_types
|
123
|
+
@inner_class_types = {}
|
124
|
+
end
|
125
|
+
|
126
|
+
def self.field_remappings
|
127
|
+
@field_remappings = {}
|
128
|
+
end
|
81
129
|
end
|
82
130
|
|
83
131
|
class TaxRateDetails < Stripe::StripeObject
|
@@ -87,6 +135,14 @@ module Stripe
|
|
87
135
|
attr_reader :percentage_decimal
|
88
136
|
# The tax type, such as `vat` or `sales_tax`.
|
89
137
|
attr_reader :tax_type
|
138
|
+
|
139
|
+
def self.inner_class_types
|
140
|
+
@inner_class_types = {}
|
141
|
+
end
|
142
|
+
|
143
|
+
def self.field_remappings
|
144
|
+
@field_remappings = {}
|
145
|
+
end
|
90
146
|
end
|
91
147
|
# The amount of tax, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
92
148
|
attr_reader :amount
|
@@ -100,6 +156,14 @@ module Stripe
|
|
100
156
|
attr_reader :taxability_reason
|
101
157
|
# The amount on which tax is calculated, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
102
158
|
attr_reader :taxable_amount
|
159
|
+
|
160
|
+
def self.inner_class_types
|
161
|
+
@inner_class_types = { jurisdiction: Jurisdiction, tax_rate_details: TaxRateDetails }
|
162
|
+
end
|
163
|
+
|
164
|
+
def self.field_remappings
|
165
|
+
@field_remappings = {}
|
166
|
+
end
|
103
167
|
end
|
104
168
|
# The shipping amount in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal). If `tax_behavior=inclusive`, then this amount includes taxes. Otherwise, taxes were calculated on top of this amount.
|
105
169
|
attr_reader :amount
|
@@ -113,6 +177,14 @@ module Stripe
|
|
113
177
|
attr_reader :tax_breakdown
|
114
178
|
# The [tax code](https://stripe.com/docs/tax/tax-categories) ID used for shipping.
|
115
179
|
attr_reader :tax_code
|
180
|
+
|
181
|
+
def self.inner_class_types
|
182
|
+
@inner_class_types = { tax_breakdown: TaxBreakdown }
|
183
|
+
end
|
184
|
+
|
185
|
+
def self.field_remappings
|
186
|
+
@field_remappings = {}
|
187
|
+
end
|
116
188
|
end
|
117
189
|
|
118
190
|
class TaxBreakdown < Stripe::StripeObject
|
@@ -122,6 +194,14 @@ module Stripe
|
|
122
194
|
attr_reader :amount
|
123
195
|
# Three-letter ISO currency code, in lowercase.
|
124
196
|
attr_reader :currency
|
197
|
+
|
198
|
+
def self.inner_class_types
|
199
|
+
@inner_class_types = {}
|
200
|
+
end
|
201
|
+
|
202
|
+
def self.field_remappings
|
203
|
+
@field_remappings = {}
|
204
|
+
end
|
125
205
|
end
|
126
206
|
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
127
207
|
attr_reader :country
|
@@ -135,6 +215,14 @@ module Stripe
|
|
135
215
|
attr_reader :state
|
136
216
|
# The tax type, such as `vat` or `sales_tax`.
|
137
217
|
attr_reader :tax_type
|
218
|
+
|
219
|
+
def self.inner_class_types
|
220
|
+
@inner_class_types = { flat_amount: FlatAmount }
|
221
|
+
end
|
222
|
+
|
223
|
+
def self.field_remappings
|
224
|
+
@field_remappings = {}
|
225
|
+
end
|
138
226
|
end
|
139
227
|
# The amount of tax, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
140
228
|
attr_reader :amount
|
@@ -146,6 +234,14 @@ module Stripe
|
|
146
234
|
attr_reader :taxability_reason
|
147
235
|
# The amount on which tax is calculated, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
148
236
|
attr_reader :taxable_amount
|
237
|
+
|
238
|
+
def self.inner_class_types
|
239
|
+
@inner_class_types = { tax_rate_details: TaxRateDetails }
|
240
|
+
end
|
241
|
+
|
242
|
+
def self.field_remappings
|
243
|
+
@field_remappings = {}
|
244
|
+
end
|
149
245
|
end
|
150
246
|
|
151
247
|
class ListLineItemsParams < Stripe::RequestParams
|
@@ -425,6 +521,19 @@ module Stripe
|
|
425
521
|
opts: opts
|
426
522
|
)
|
427
523
|
end
|
524
|
+
|
525
|
+
def self.inner_class_types
|
526
|
+
@inner_class_types = {
|
527
|
+
customer_details: CustomerDetails,
|
528
|
+
ship_from_details: ShipFromDetails,
|
529
|
+
shipping_cost: ShippingCost,
|
530
|
+
tax_breakdown: TaxBreakdown,
|
531
|
+
}
|
532
|
+
end
|
533
|
+
|
534
|
+
def self.field_remappings
|
535
|
+
@field_remappings = {}
|
536
|
+
end
|
428
537
|
end
|
429
538
|
end
|
430
539
|
end
|
@@ -19,6 +19,14 @@ module Stripe
|
|
19
19
|
attr_reader :level
|
20
20
|
# [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States.
|
21
21
|
attr_reader :state
|
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 TaxRateDetails < Stripe::StripeObject
|
@@ -28,6 +36,14 @@ module Stripe
|
|
28
36
|
attr_reader :percentage_decimal
|
29
37
|
# The tax type, such as `vat` or `sales_tax`.
|
30
38
|
attr_reader :tax_type
|
39
|
+
|
40
|
+
def self.inner_class_types
|
41
|
+
@inner_class_types = {}
|
42
|
+
end
|
43
|
+
|
44
|
+
def self.field_remappings
|
45
|
+
@field_remappings = {}
|
46
|
+
end
|
31
47
|
end
|
32
48
|
# The amount of tax, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
33
49
|
attr_reader :amount
|
@@ -41,6 +57,14 @@ module Stripe
|
|
41
57
|
attr_reader :taxability_reason
|
42
58
|
# The amount on which tax is calculated, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
43
59
|
attr_reader :taxable_amount
|
60
|
+
|
61
|
+
def self.inner_class_types
|
62
|
+
@inner_class_types = { jurisdiction: Jurisdiction, tax_rate_details: TaxRateDetails }
|
63
|
+
end
|
64
|
+
|
65
|
+
def self.field_remappings
|
66
|
+
@field_remappings = {}
|
67
|
+
end
|
44
68
|
end
|
45
69
|
# The line item amount in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal). If `tax_behavior=inclusive`, then this amount includes taxes. Otherwise, taxes were calculated on top of this amount.
|
46
70
|
attr_reader :amount
|
@@ -66,6 +90,14 @@ module Stripe
|
|
66
90
|
attr_reader :tax_breakdown
|
67
91
|
# The [tax code](https://stripe.com/docs/tax/tax-categories) ID used for this resource.
|
68
92
|
attr_reader :tax_code
|
93
|
+
|
94
|
+
def self.inner_class_types
|
95
|
+
@inner_class_types = { tax_breakdown: TaxBreakdown }
|
96
|
+
end
|
97
|
+
|
98
|
+
def self.field_remappings
|
99
|
+
@field_remappings = {}
|
100
|
+
end
|
69
101
|
end
|
70
102
|
end
|
71
103
|
end
|
@@ -19,6 +19,14 @@ module Stripe
|
|
19
19
|
attr_reader :reporting_period_end_date
|
20
20
|
# Start date of the period represented by the information reported on the tax form.
|
21
21
|
attr_reader :reporting_period_start_date
|
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 CaMrdp < Stripe::StripeObject
|
@@ -26,6 +34,14 @@ module Stripe
|
|
26
34
|
attr_reader :reporting_period_end_date
|
27
35
|
# Start date of the period represented by the information reported on the tax form.
|
28
36
|
attr_reader :reporting_period_start_date
|
37
|
+
|
38
|
+
def self.inner_class_types
|
39
|
+
@inner_class_types = {}
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.field_remappings
|
43
|
+
@field_remappings = {}
|
44
|
+
end
|
29
45
|
end
|
30
46
|
|
31
47
|
class EuDac7 < Stripe::StripeObject
|
@@ -33,6 +49,14 @@ module Stripe
|
|
33
49
|
attr_reader :reporting_period_end_date
|
34
50
|
# Start date of the period represented by the information reported on the tax form.
|
35
51
|
attr_reader :reporting_period_start_date
|
52
|
+
|
53
|
+
def self.inner_class_types
|
54
|
+
@inner_class_types = {}
|
55
|
+
end
|
56
|
+
|
57
|
+
def self.field_remappings
|
58
|
+
@field_remappings = {}
|
59
|
+
end
|
36
60
|
end
|
37
61
|
|
38
62
|
class FilingStatus < Stripe::StripeObject
|
@@ -43,6 +67,14 @@ module Stripe
|
|
43
67
|
attr_reader :level
|
44
68
|
# [ISO 3166-2 U.S. state code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix, if any. For example, "NY" for New York, United States. Null for non-U.S. forms.
|
45
69
|
attr_reader :state
|
70
|
+
|
71
|
+
def self.inner_class_types
|
72
|
+
@inner_class_types = {}
|
73
|
+
end
|
74
|
+
|
75
|
+
def self.field_remappings
|
76
|
+
@field_remappings = {}
|
77
|
+
end
|
46
78
|
end
|
47
79
|
# Time when the filing status was updated.
|
48
80
|
attr_reader :effective_at
|
@@ -50,6 +82,14 @@ module Stripe
|
|
50
82
|
attr_reader :jurisdiction
|
51
83
|
# The current status of the filed form.
|
52
84
|
attr_reader :value
|
85
|
+
|
86
|
+
def self.inner_class_types
|
87
|
+
@inner_class_types = { jurisdiction: Jurisdiction }
|
88
|
+
end
|
89
|
+
|
90
|
+
def self.field_remappings
|
91
|
+
@field_remappings = {}
|
92
|
+
end
|
53
93
|
end
|
54
94
|
|
55
95
|
class GbMrdp < Stripe::StripeObject
|
@@ -57,6 +97,14 @@ module Stripe
|
|
57
97
|
attr_reader :reporting_period_end_date
|
58
98
|
# Start date of the period represented by the information reported on the tax form.
|
59
99
|
attr_reader :reporting_period_start_date
|
100
|
+
|
101
|
+
def self.inner_class_types
|
102
|
+
@inner_class_types = {}
|
103
|
+
end
|
104
|
+
|
105
|
+
def self.field_remappings
|
106
|
+
@field_remappings = {}
|
107
|
+
end
|
60
108
|
end
|
61
109
|
|
62
110
|
class NzMrdp < Stripe::StripeObject
|
@@ -64,6 +112,14 @@ module Stripe
|
|
64
112
|
attr_reader :reporting_period_end_date
|
65
113
|
# Start date of the period represented by the information reported on the tax form.
|
66
114
|
attr_reader :reporting_period_start_date
|
115
|
+
|
116
|
+
def self.inner_class_types
|
117
|
+
@inner_class_types = {}
|
118
|
+
end
|
119
|
+
|
120
|
+
def self.field_remappings
|
121
|
+
@field_remappings = {}
|
122
|
+
end
|
67
123
|
end
|
68
124
|
|
69
125
|
class Payee < Stripe::StripeObject
|
@@ -73,21 +129,53 @@ module Stripe
|
|
73
129
|
attr_reader :external_reference
|
74
130
|
# Either `account` or `external_reference`.
|
75
131
|
attr_reader :type
|
132
|
+
|
133
|
+
def self.inner_class_types
|
134
|
+
@inner_class_types = {}
|
135
|
+
end
|
136
|
+
|
137
|
+
def self.field_remappings
|
138
|
+
@field_remappings = {}
|
139
|
+
end
|
76
140
|
end
|
77
141
|
|
78
142
|
class Us1099K < Stripe::StripeObject
|
79
143
|
# Year represented by the information reported on the tax form.
|
80
144
|
attr_reader :reporting_year
|
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 Us1099Misc < Stripe::StripeObject
|
84
156
|
# Year represented by the information reported on the tax form.
|
85
157
|
attr_reader :reporting_year
|
158
|
+
|
159
|
+
def self.inner_class_types
|
160
|
+
@inner_class_types = {}
|
161
|
+
end
|
162
|
+
|
163
|
+
def self.field_remappings
|
164
|
+
@field_remappings = {}
|
165
|
+
end
|
86
166
|
end
|
87
167
|
|
88
168
|
class Us1099Nec < Stripe::StripeObject
|
89
169
|
# Year represented by the information reported on the tax form.
|
90
170
|
attr_reader :reporting_year
|
171
|
+
|
172
|
+
def self.inner_class_types
|
173
|
+
@inner_class_types = {}
|
174
|
+
end
|
175
|
+
|
176
|
+
def self.field_remappings
|
177
|
+
@field_remappings = {}
|
178
|
+
end
|
91
179
|
end
|
92
180
|
|
93
181
|
class ListParams < Stripe::RequestParams
|
@@ -206,6 +294,25 @@ module Stripe
|
|
206
294
|
&read_body_chunk_block
|
207
295
|
)
|
208
296
|
end
|
297
|
+
|
298
|
+
def self.inner_class_types
|
299
|
+
@inner_class_types = {
|
300
|
+
au_serr: AuSerr,
|
301
|
+
ca_mrdp: CaMrdp,
|
302
|
+
eu_dac7: EuDac7,
|
303
|
+
filing_statuses: FilingStatus,
|
304
|
+
gb_mrdp: GbMrdp,
|
305
|
+
nz_mrdp: NzMrdp,
|
306
|
+
payee: Payee,
|
307
|
+
us_1099_k: Us1099K,
|
308
|
+
us_1099_misc: Us1099Misc,
|
309
|
+
us_1099_nec: Us1099Nec,
|
310
|
+
}
|
311
|
+
end
|
312
|
+
|
313
|
+
def self.field_remappings
|
314
|
+
@field_remappings = {}
|
315
|
+
end
|
209
316
|
end
|
210
317
|
end
|
211
318
|
end
|