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,6 +19,14 @@ module Stripe
|
|
19
19
|
attr_reader :tax_behavior
|
20
20
|
# Default [tax code](https://stripe.com/docs/tax/tax-categories) used to classify your products and prices.
|
21
21
|
attr_reader :tax_code
|
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 HeadOffice < Stripe::StripeObject
|
@@ -35,22 +43,62 @@ module Stripe
|
|
35
43
|
attr_reader :postal_code
|
36
44
|
# State, county, province, or region.
|
37
45
|
attr_reader :state
|
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
|
# Attribute for field address
|
40
56
|
attr_reader :address
|
57
|
+
|
58
|
+
def self.inner_class_types
|
59
|
+
@inner_class_types = { address: Address }
|
60
|
+
end
|
61
|
+
|
62
|
+
def self.field_remappings
|
63
|
+
@field_remappings = {}
|
64
|
+
end
|
41
65
|
end
|
42
66
|
|
43
67
|
class StatusDetails < Stripe::StripeObject
|
44
|
-
class Active < Stripe::StripeObject
|
68
|
+
class Active < Stripe::StripeObject
|
69
|
+
def self.inner_class_types
|
70
|
+
@inner_class_types = {}
|
71
|
+
end
|
72
|
+
|
73
|
+
def self.field_remappings
|
74
|
+
@field_remappings = {}
|
75
|
+
end
|
76
|
+
end
|
45
77
|
|
46
78
|
class Pending < Stripe::StripeObject
|
47
79
|
# The list of missing fields that are required to perform calculations. It includes the entry `head_office` when the status is `pending`. It is recommended to set the optional values even if they aren't listed as required for calculating taxes. Calculations can fail if missing fields aren't explicitly provided on every call.
|
48
80
|
attr_reader :missing_fields
|
81
|
+
|
82
|
+
def self.inner_class_types
|
83
|
+
@inner_class_types = {}
|
84
|
+
end
|
85
|
+
|
86
|
+
def self.field_remappings
|
87
|
+
@field_remappings = {}
|
88
|
+
end
|
49
89
|
end
|
50
90
|
# Attribute for field active
|
51
91
|
attr_reader :active
|
52
92
|
# Attribute for field pending
|
53
93
|
attr_reader :pending
|
94
|
+
|
95
|
+
def self.inner_class_types
|
96
|
+
@inner_class_types = { active: Active, pending: Pending }
|
97
|
+
end
|
98
|
+
|
99
|
+
def self.field_remappings
|
100
|
+
@field_remappings = {}
|
101
|
+
end
|
54
102
|
end
|
55
103
|
|
56
104
|
class UpdateParams < Stripe::RequestParams
|
@@ -129,6 +177,18 @@ module Stripe
|
|
129
177
|
attr_reader :status
|
130
178
|
# Attribute for field status_details
|
131
179
|
attr_reader :status_details
|
180
|
+
|
181
|
+
def self.inner_class_types
|
182
|
+
@inner_class_types = {
|
183
|
+
defaults: Defaults,
|
184
|
+
head_office: HeadOffice,
|
185
|
+
status_details: StatusDetails,
|
186
|
+
}
|
187
|
+
end
|
188
|
+
|
189
|
+
def self.field_remappings
|
190
|
+
@field_remappings = {}
|
191
|
+
end
|
132
192
|
end
|
133
193
|
end
|
134
194
|
end
|
@@ -26,6 +26,14 @@ module Stripe
|
|
26
26
|
attr_reader :postal_code
|
27
27
|
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
28
28
|
attr_reader :state
|
29
|
+
|
30
|
+
def self.inner_class_types
|
31
|
+
@inner_class_types = {}
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.field_remappings
|
35
|
+
@field_remappings = {}
|
36
|
+
end
|
29
37
|
end
|
30
38
|
|
31
39
|
class TaxId < Stripe::StripeObject
|
@@ -33,6 +41,14 @@ module Stripe
|
|
33
41
|
attr_reader :type
|
34
42
|
# The value of the tax ID.
|
35
43
|
attr_reader :value
|
44
|
+
|
45
|
+
def self.inner_class_types
|
46
|
+
@inner_class_types = {}
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.field_remappings
|
50
|
+
@field_remappings = {}
|
51
|
+
end
|
36
52
|
end
|
37
53
|
# The customer's postal address (for example, home or business location).
|
38
54
|
attr_reader :address
|
@@ -44,11 +60,27 @@ module Stripe
|
|
44
60
|
attr_reader :tax_ids
|
45
61
|
# The taxability override used for taxation.
|
46
62
|
attr_reader :taxability_override
|
63
|
+
|
64
|
+
def self.inner_class_types
|
65
|
+
@inner_class_types = { address: Address, tax_ids: TaxId }
|
66
|
+
end
|
67
|
+
|
68
|
+
def self.field_remappings
|
69
|
+
@field_remappings = {}
|
70
|
+
end
|
47
71
|
end
|
48
72
|
|
49
73
|
class Reversal < Stripe::StripeObject
|
50
74
|
# The `id` of the reversed `Transaction` object.
|
51
75
|
attr_reader :original_transaction
|
76
|
+
|
77
|
+
def self.inner_class_types
|
78
|
+
@inner_class_types = {}
|
79
|
+
end
|
80
|
+
|
81
|
+
def self.field_remappings
|
82
|
+
@field_remappings = {}
|
83
|
+
end
|
52
84
|
end
|
53
85
|
|
54
86
|
class ShipFromDetails < Stripe::StripeObject
|
@@ -65,9 +97,25 @@ module Stripe
|
|
65
97
|
attr_reader :postal_code
|
66
98
|
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
67
99
|
attr_reader :state
|
100
|
+
|
101
|
+
def self.inner_class_types
|
102
|
+
@inner_class_types = {}
|
103
|
+
end
|
104
|
+
|
105
|
+
def self.field_remappings
|
106
|
+
@field_remappings = {}
|
107
|
+
end
|
68
108
|
end
|
69
109
|
# Attribute for field address
|
70
110
|
attr_reader :address
|
111
|
+
|
112
|
+
def self.inner_class_types
|
113
|
+
@inner_class_types = { address: Address }
|
114
|
+
end
|
115
|
+
|
116
|
+
def self.field_remappings
|
117
|
+
@field_remappings = {}
|
118
|
+
end
|
71
119
|
end
|
72
120
|
|
73
121
|
class ShippingCost < Stripe::StripeObject
|
@@ -81,6 +129,14 @@ module Stripe
|
|
81
129
|
attr_reader :level
|
82
130
|
# [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2), without country prefix. For example, "NY" for New York, United States.
|
83
131
|
attr_reader :state
|
132
|
+
|
133
|
+
def self.inner_class_types
|
134
|
+
@inner_class_types = {}
|
135
|
+
end
|
136
|
+
|
137
|
+
def self.field_remappings
|
138
|
+
@field_remappings = {}
|
139
|
+
end
|
84
140
|
end
|
85
141
|
|
86
142
|
class TaxRateDetails < Stripe::StripeObject
|
@@ -90,6 +146,14 @@ module Stripe
|
|
90
146
|
attr_reader :percentage_decimal
|
91
147
|
# The tax type, such as `vat` or `sales_tax`.
|
92
148
|
attr_reader :tax_type
|
149
|
+
|
150
|
+
def self.inner_class_types
|
151
|
+
@inner_class_types = {}
|
152
|
+
end
|
153
|
+
|
154
|
+
def self.field_remappings
|
155
|
+
@field_remappings = {}
|
156
|
+
end
|
93
157
|
end
|
94
158
|
# The amount of tax, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
95
159
|
attr_reader :amount
|
@@ -103,6 +167,14 @@ module Stripe
|
|
103
167
|
attr_reader :taxability_reason
|
104
168
|
# The amount on which tax is calculated, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
105
169
|
attr_reader :taxable_amount
|
170
|
+
|
171
|
+
def self.inner_class_types
|
172
|
+
@inner_class_types = { jurisdiction: Jurisdiction, tax_rate_details: TaxRateDetails }
|
173
|
+
end
|
174
|
+
|
175
|
+
def self.field_remappings
|
176
|
+
@field_remappings = {}
|
177
|
+
end
|
106
178
|
end
|
107
179
|
# 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.
|
108
180
|
attr_reader :amount
|
@@ -116,6 +188,14 @@ module Stripe
|
|
116
188
|
attr_reader :tax_breakdown
|
117
189
|
# The [tax code](https://stripe.com/docs/tax/tax-categories) ID used for shipping.
|
118
190
|
attr_reader :tax_code
|
191
|
+
|
192
|
+
def self.inner_class_types
|
193
|
+
@inner_class_types = { tax_breakdown: TaxBreakdown }
|
194
|
+
end
|
195
|
+
|
196
|
+
def self.field_remappings
|
197
|
+
@field_remappings = {}
|
198
|
+
end
|
119
199
|
end
|
120
200
|
|
121
201
|
class ListLineItemsParams < Stripe::RequestParams
|
@@ -309,6 +389,19 @@ module Stripe
|
|
309
389
|
opts: opts
|
310
390
|
)
|
311
391
|
end
|
392
|
+
|
393
|
+
def self.inner_class_types
|
394
|
+
@inner_class_types = {
|
395
|
+
customer_details: CustomerDetails,
|
396
|
+
reversal: Reversal,
|
397
|
+
ship_from_details: ShipFromDetails,
|
398
|
+
shipping_cost: ShippingCost,
|
399
|
+
}
|
400
|
+
end
|
401
|
+
|
402
|
+
def self.field_remappings
|
403
|
+
@field_remappings = {}
|
404
|
+
end
|
312
405
|
end
|
313
406
|
end
|
314
407
|
end
|
@@ -12,6 +12,14 @@ module Stripe
|
|
12
12
|
class Reversal < Stripe::StripeObject
|
13
13
|
# The `id` of the line item to reverse in the original transaction.
|
14
14
|
attr_reader :original_line_item
|
15
|
+
|
16
|
+
def self.inner_class_types
|
17
|
+
@inner_class_types = {}
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.field_remappings
|
21
|
+
@field_remappings = {}
|
22
|
+
end
|
15
23
|
end
|
16
24
|
# 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.
|
17
25
|
attr_reader :amount
|
@@ -39,6 +47,14 @@ module Stripe
|
|
39
47
|
attr_reader :tax_code
|
40
48
|
# If `reversal`, this line item reverses an earlier transaction.
|
41
49
|
attr_reader :type
|
50
|
+
|
51
|
+
def self.inner_class_types
|
52
|
+
@inner_class_types = { reversal: Reversal }
|
53
|
+
end
|
54
|
+
|
55
|
+
def self.field_remappings
|
56
|
+
@field_remappings = {}
|
57
|
+
end
|
42
58
|
end
|
43
59
|
end
|
44
60
|
end
|
@@ -41,5 +41,13 @@ module Stripe
|
|
41
41
|
def self.list(params = {}, opts = {})
|
42
42
|
request_stripe_object(method: :get, path: "/v1/tax_codes", params: params, opts: opts)
|
43
43
|
end
|
44
|
+
|
45
|
+
def self.inner_class_types
|
46
|
+
@inner_class_types = {}
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.field_remappings
|
50
|
+
@field_remappings = {}
|
51
|
+
end
|
44
52
|
end
|
45
53
|
end
|
@@ -18,5 +18,13 @@ module Stripe
|
|
18
18
|
attr_reader :period_start
|
19
19
|
# The TAN that was supplied to Stripe when TDS was assessed
|
20
20
|
attr_reader :tax_deduction_account_number
|
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
|
end
|
@@ -27,6 +27,14 @@ module Stripe
|
|
27
27
|
attr_reader :customer_account
|
28
28
|
# Type of owner referenced.
|
29
29
|
attr_reader :type
|
30
|
+
|
31
|
+
def self.inner_class_types
|
32
|
+
@inner_class_types = {}
|
33
|
+
end
|
34
|
+
|
35
|
+
def self.field_remappings
|
36
|
+
@field_remappings = {}
|
37
|
+
end
|
30
38
|
end
|
31
39
|
|
32
40
|
class Verification < Stripe::StripeObject
|
@@ -36,6 +44,14 @@ module Stripe
|
|
36
44
|
attr_reader :verified_address
|
37
45
|
# Verified name.
|
38
46
|
attr_reader :verified_name
|
47
|
+
|
48
|
+
def self.inner_class_types
|
49
|
+
@inner_class_types = {}
|
50
|
+
end
|
51
|
+
|
52
|
+
def self.field_remappings
|
53
|
+
@field_remappings = {}
|
54
|
+
end
|
39
55
|
end
|
40
56
|
|
41
57
|
class DeleteParams < Stripe::RequestParams; end
|
@@ -166,5 +182,13 @@ module Stripe
|
|
166
182
|
def self.list(params = {}, opts = {})
|
167
183
|
request_stripe_object(method: :get, path: "/v1/tax_ids", params: params, opts: opts)
|
168
184
|
end
|
185
|
+
|
186
|
+
def self.inner_class_types
|
187
|
+
@inner_class_types = { owner: Owner, verification: Verification }
|
188
|
+
end
|
189
|
+
|
190
|
+
def self.field_remappings
|
191
|
+
@field_remappings = {}
|
192
|
+
end
|
169
193
|
end
|
170
194
|
end
|
@@ -20,6 +20,14 @@ module Stripe
|
|
20
20
|
attr_reader :amount
|
21
21
|
# Three-letter ISO currency code, in lowercase.
|
22
22
|
attr_reader :currency
|
23
|
+
|
24
|
+
def self.inner_class_types
|
25
|
+
@inner_class_types = {}
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.field_remappings
|
29
|
+
@field_remappings = {}
|
30
|
+
end
|
23
31
|
end
|
24
32
|
|
25
33
|
class ListParams < Stripe::RequestParams
|
@@ -225,5 +233,13 @@ module Stripe
|
|
225
233
|
opts: opts
|
226
234
|
)
|
227
235
|
end
|
236
|
+
|
237
|
+
def self.inner_class_types
|
238
|
+
@inner_class_types = { flat_amount: FlatAmount }
|
239
|
+
end
|
240
|
+
|
241
|
+
def self.field_remappings
|
242
|
+
@field_remappings = {}
|
243
|
+
end
|
228
244
|
end
|
229
245
|
end
|