stripe 15.0.0 → 15.3.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/API_VERSION +1 -0
- data/CHANGELOG.md +129 -44
- data/CONTRIBUTING.md +25 -0
- data/Gemfile +1 -1
- data/OPENAPI_VERSION +1 -1
- data/README.md +28 -55
- data/VERSION +1 -1
- data/lib/stripe/api_operations/nested_resource.rb +35 -35
- data/lib/stripe/api_requestor.rb +1 -1
- data/lib/stripe/api_version.rb +2 -1
- data/lib/stripe/connection_manager.rb +1 -3
- data/lib/stripe/event_types.rb +1 -0
- data/lib/stripe/events/v1_billing_meter_error_report_triggered_event.rb +1 -1
- data/lib/stripe/events/v1_billing_meter_no_meter_found_event.rb +1 -1
- data/lib/stripe/events/v2_core_event_destination_ping_event.rb +21 -0
- data/lib/stripe/oauth.rb +1 -1
- data/lib/stripe/resources/account.rb +198 -28
- data/lib/stripe/resources/account_session.rb +176 -72
- data/lib/stripe/resources/apple_pay_domain.rb +1 -2
- data/lib/stripe/resources/balance.rb +42 -0
- data/lib/stripe/resources/balance_transaction.rb +2 -0
- data/lib/stripe/resources/bank_account.rb +2 -2
- data/lib/stripe/resources/billing_portal/session.rb +3 -3
- data/lib/stripe/resources/capability.rb +1 -1
- data/lib/stripe/resources/charge.rb +43 -20
- data/lib/stripe/resources/checkout/session.rb +120 -19
- data/lib/stripe/resources/confirmation_token.rb +119 -100
- data/lib/stripe/resources/country_spec.rb +1 -1
- data/lib/stripe/resources/coupon.rb +2 -3
- data/lib/stripe/resources/credit_note.rb +21 -18
- data/lib/stripe/resources/customer.rb +4 -6
- data/lib/stripe/resources/customer_session.rb +5 -5
- data/lib/stripe/resources/dispute.rb +2 -2
- data/lib/stripe/resources/event.rb +3 -1
- data/lib/stripe/resources/file.rb +1 -1
- data/lib/stripe/resources/funding_instructions.rb +1 -1
- data/lib/stripe/resources/identity/verification_report.rb +6 -0
- data/lib/stripe/resources/identity/verification_session.rb +51 -11
- data/lib/stripe/resources/invoice.rb +146 -32
- data/lib/stripe/resources/invoice_item.rb +3 -7
- data/lib/stripe/resources/invoice_line_item.rb +1 -1
- data/lib/stripe/resources/invoice_payment.rb +9 -2
- data/lib/stripe/resources/issuing/authorization.rb +8 -8
- data/lib/stripe/resources/issuing/card.rb +1 -1
- data/lib/stripe/resources/issuing/dispute.rb +3 -3
- data/lib/stripe/resources/login_link.rb +2 -1
- data/lib/stripe/resources/mandate.rb +3 -0
- data/lib/stripe/resources/payment_intent.rb +602 -325
- data/lib/stripe/resources/payment_method.rb +76 -117
- data/lib/stripe/resources/payment_method_configuration.rb +356 -2
- data/lib/stripe/resources/payment_method_domain.rb +15 -2
- data/lib/stripe/resources/payout.rb +4 -4
- data/lib/stripe/resources/person.rb +27 -3
- data/lib/stripe/resources/plan.rb +2 -3
- data/lib/stripe/resources/price.rb +1 -1
- data/lib/stripe/resources/product.rb +1 -2
- data/lib/stripe/resources/quote.rb +28 -3
- data/lib/stripe/resources/radar/value_list.rb +1 -2
- data/lib/stripe/resources/radar/value_list_item.rb +1 -2
- data/lib/stripe/resources/refund.rb +8 -1
- data/lib/stripe/resources/reversal.rb +1 -1
- data/lib/stripe/resources/review.rb +1 -1
- data/lib/stripe/resources/setup_attempt.rb +1 -1
- data/lib/stripe/resources/setup_intent.rb +414 -293
- data/lib/stripe/resources/source.rb +1 -1
- data/lib/stripe/resources/subscription.rb +149 -27
- data/lib/stripe/resources/subscription_item.rb +33 -0
- data/lib/stripe/resources/subscription_schedule.rb +141 -4
- data/lib/stripe/resources/tax/calculation.rb +6 -2
- data/lib/stripe/resources/tax/calculation_line_item.rb +2 -0
- data/lib/stripe/resources/tax/registration.rb +261 -1
- data/lib/stripe/resources/tax/transaction.rb +1 -1
- data/lib/stripe/resources/tax_id.rb +3 -4
- data/lib/stripe/resources/tax_rate.rb +2 -2
- data/lib/stripe/resources/terminal/configuration.rb +2 -2
- data/lib/stripe/resources/terminal/location.rb +2 -3
- data/lib/stripe/resources/terminal/reader.rb +426 -6
- data/lib/stripe/resources/test_helpers/test_clock.rb +1 -2
- data/lib/stripe/resources/token.rb +63 -2
- data/lib/stripe/resources/transfer.rb +1 -1
- data/lib/stripe/resources/treasury/financial_account.rb +5 -1
- data/lib/stripe/resources/v2/billing/meter_event.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event_session.rb +2 -2
- data/lib/stripe/resources/v2/event.rb +2 -2
- data/lib/stripe/resources/v2/event_destination.rb +2 -2
- data/lib/stripe/resources/webhook_endpoint.rb +1 -2
- data/lib/stripe/resources.rb +1 -0
- data/lib/stripe/services/account_external_account_service.rb +3 -4
- data/lib/stripe/services/account_login_link_service.rb +1 -1
- data/lib/stripe/services/account_person_service.rb +85 -2
- data/lib/stripe/services/account_service.rb +169 -20
- data/lib/stripe/services/account_session_service.rb +115 -47
- data/lib/stripe/services/apple_pay_domain_service.rb +1 -2
- data/lib/stripe/services/application_fee_service.rb +1 -1
- data/lib/stripe/services/apps_service.rb +1 -1
- data/lib/stripe/services/balance_service.rb +1 -1
- data/lib/stripe/services/billing/meter_service.rb +1 -1
- data/lib/stripe/services/billing_portal/session_service.rb +1 -1
- data/lib/stripe/services/billing_portal_service.rb +1 -1
- data/lib/stripe/services/billing_service.rb +1 -1
- data/lib/stripe/services/charge_service.rb +4 -4
- data/lib/stripe/services/checkout/session_service.rb +94 -15
- data/lib/stripe/services/checkout_service.rb +1 -1
- data/lib/stripe/services/climate_service.rb +1 -1
- data/lib/stripe/services/coupon_service.rb +1 -2
- data/lib/stripe/services/credit_note_preview_lines_service.rb +3 -3
- data/lib/stripe/services/credit_note_service.rb +14 -15
- data/lib/stripe/services/customer_balance_transaction_service.rb +3 -3
- data/lib/stripe/services/customer_cash_balance_transaction_service.rb +2 -2
- data/lib/stripe/services/customer_payment_method_service.rb +1 -1
- data/lib/stripe/services/customer_payment_source_service.rb +1 -1
- data/lib/stripe/services/customer_service.rb +5 -7
- data/lib/stripe/services/customer_session_service.rb +1 -1
- data/lib/stripe/services/customer_tax_id_service.rb +2 -3
- data/lib/stripe/services/dispute_service.rb +1 -1
- data/lib/stripe/services/entitlements_service.rb +1 -1
- data/lib/stripe/services/file_service.rb +1 -1
- data/lib/stripe/services/financial_connections/account_service.rb +1 -1
- data/lib/stripe/services/financial_connections_service.rb +1 -1
- data/lib/stripe/services/forwarding_service.rb +1 -1
- data/lib/stripe/services/identity/verification_session_service.rb +21 -5
- data/lib/stripe/services/identity_service.rb +1 -1
- data/lib/stripe/services/invoice_item_service.rb +1 -2
- data/lib/stripe/services/invoice_service.rb +122 -28
- data/lib/stripe/services/issuing/authorization_service.rb +4 -4
- data/lib/stripe/services/issuing/card_service.rb +1 -1
- data/lib/stripe/services/issuing/dispute_service.rb +2 -2
- data/lib/stripe/services/issuing_service.rb +1 -1
- data/lib/stripe/services/payment_intent_service.rb +563 -313
- data/lib/stripe/services/payment_link_service.rb +1 -1
- data/lib/stripe/services/payment_method_configuration_service.rb +254 -2
- data/lib/stripe/services/payment_method_domain_service.rb +1 -1
- data/lib/stripe/services/payment_method_service.rb +59 -105
- data/lib/stripe/services/payout_service.rb +2 -2
- data/lib/stripe/services/plan_service.rb +2 -3
- data/lib/stripe/services/price_service.rb +2 -2
- data/lib/stripe/services/product_feature_service.rb +1 -2
- data/lib/stripe/services/product_service.rb +3 -4
- data/lib/stripe/services/promotion_code_service.rb +1 -1
- data/lib/stripe/services/quote_service.rb +21 -4
- data/lib/stripe/services/radar/early_fraud_warning_service.rb +1 -1
- data/lib/stripe/services/radar/value_list_item_service.rb +1 -2
- data/lib/stripe/services/radar/value_list_service.rb +1 -2
- data/lib/stripe/services/radar_service.rb +1 -1
- data/lib/stripe/services/reporting_service.rb +1 -1
- data/lib/stripe/services/setup_intent_service.rb +403 -291
- data/lib/stripe/services/sigma_service.rb +1 -1
- data/lib/stripe/services/source_service.rb +2 -2
- data/lib/stripe/services/subscription_item_service.rb +26 -0
- data/lib/stripe/services/subscription_schedule_service.rb +106 -3
- data/lib/stripe/services/subscription_service.rb +121 -26
- data/lib/stripe/services/tax/calculation_service.rb +6 -2
- data/lib/stripe/services/tax/registration_service.rb +170 -1
- data/lib/stripe/services/tax/transaction_service.rb +1 -1
- data/lib/stripe/services/tax_id_service.rb +2 -3
- data/lib/stripe/services/tax_service.rb +1 -1
- data/lib/stripe/services/terminal/configuration_service.rb +1 -2
- data/lib/stripe/services/terminal/location_service.rb +2 -3
- data/lib/stripe/services/terminal/reader_service.rb +196 -2
- data/lib/stripe/services/terminal_service.rb +1 -1
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +90 -91
- data/lib/stripe/services/test_helpers/issuing_service.rb +1 -1
- data/lib/stripe/services/test_helpers/terminal/reader_service.rb +43 -0
- data/lib/stripe/services/test_helpers/terminal_service.rb +1 -1
- data/lib/stripe/services/test_helpers/test_clock_service.rb +1 -2
- data/lib/stripe/services/test_helpers/treasury_service.rb +1 -1
- data/lib/stripe/services/test_helpers_service.rb +1 -1
- data/lib/stripe/services/token_service.rb +62 -1
- data/lib/stripe/services/transfer_service.rb +2 -2
- data/lib/stripe/services/treasury/financial_account_service.rb +6 -2
- data/lib/stripe/services/treasury_service.rb +1 -1
- data/lib/stripe/services/v1_services.rb +1 -1
- data/lib/stripe/services/v2/billing/meter_event_session_service.rb +1 -2
- data/lib/stripe/services/v2/billing_service.rb +3 -3
- data/lib/stripe/services/v2/core/event_destination_service.rb +17 -23
- data/lib/stripe/services/v2/core/event_service.rb +1 -2
- data/lib/stripe/services/v2/core_service.rb +1 -1
- data/lib/stripe/services/v2_services.rb +1 -1
- data/lib/stripe/services/webhook_endpoint_service.rb +1 -2
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +1 -1
- data/rbi/stripe/resources/account.rbi +190 -35
- data/rbi/stripe/resources/account_session.rbi +196 -77
- data/rbi/stripe/resources/apple_pay_domain.rbi +1 -3
- data/rbi/stripe/resources/balance.rbi +55 -0
- data/rbi/stripe/resources/balance_transaction.rbi +3 -0
- data/rbi/stripe/resources/bank_account.rbi +2 -2
- data/rbi/stripe/resources/billing/alert.rbi +2 -2
- data/rbi/stripe/resources/billing_portal/session.rbi +3 -3
- data/rbi/stripe/resources/capability.rbi +1 -1
- data/rbi/stripe/resources/charge.rbi +52 -20
- data/rbi/stripe/resources/checkout/session.rbi +133 -24
- data/rbi/stripe/resources/confirmation_token.rbi +140 -115
- data/rbi/stripe/resources/country_spec.rbi +1 -1
- data/rbi/stripe/resources/coupon.rbi +2 -4
- data/rbi/stripe/resources/credit_note.rbi +23 -18
- data/rbi/stripe/resources/customer.rbi +4 -8
- data/rbi/stripe/resources/customer_session.rbi +5 -5
- data/rbi/stripe/resources/dispute.rbi +2 -2
- data/rbi/stripe/resources/event.rbi +4 -1
- data/rbi/stripe/resources/file.rbi +1 -1
- data/rbi/stripe/resources/identity/verification_report.rbi +9 -0
- data/rbi/stripe/resources/identity/verification_session.rbi +59 -12
- data/rbi/stripe/resources/invoice.rbi +149 -40
- data/rbi/stripe/resources/invoice_item.rbi +3 -8
- data/rbi/stripe/resources/invoice_line_item.rbi +2 -2
- data/rbi/stripe/resources/invoice_payment.rbi +9 -2
- data/rbi/stripe/resources/issuing/authorization.rbi +8 -8
- data/rbi/stripe/resources/issuing/card.rbi +1 -1
- data/rbi/stripe/resources/issuing/dispute.rbi +3 -3
- data/rbi/stripe/resources/login_link.rbi +2 -1
- data/rbi/stripe/resources/mandate.rbi +4 -0
- data/rbi/stripe/resources/payment_intent.rbi +637 -381
- data/rbi/stripe/resources/payment_method.rbi +81 -133
- data/rbi/stripe/resources/payment_method_configuration.rbi +400 -4
- data/rbi/stripe/resources/payment_method_domain.rbi +18 -2
- data/rbi/stripe/resources/payout.rbi +4 -4
- data/rbi/stripe/resources/person.rbi +33 -3
- data/rbi/stripe/resources/plan.rbi +2 -4
- data/rbi/stripe/resources/price.rbi +1 -1
- data/rbi/stripe/resources/product.rbi +1 -3
- data/rbi/stripe/resources/quote.rbi +25 -3
- data/rbi/stripe/resources/radar/value_list.rbi +1 -3
- data/rbi/stripe/resources/radar/value_list_item.rbi +1 -3
- data/rbi/stripe/resources/refund.rbi +8 -1
- data/rbi/stripe/resources/reversal.rbi +1 -1
- data/rbi/stripe/resources/review.rbi +1 -1
- data/rbi/stripe/resources/setup_attempt.rbi +1 -1
- data/rbi/stripe/resources/setup_intent.rbi +464 -346
- data/rbi/stripe/resources/source.rbi +1 -1
- data/rbi/stripe/resources/subscription.rbi +150 -34
- data/rbi/stripe/resources/subscription_item.rbi +36 -2
- data/rbi/stripe/resources/subscription_schedule.rbi +161 -11
- data/rbi/stripe/resources/tax/calculation.rbi +7 -3
- data/rbi/stripe/resources/tax/calculation_line_item.rbi +4 -1
- data/rbi/stripe/resources/tax/registration.rbi +249 -2
- data/rbi/stripe/resources/tax/transaction.rbi +1 -1
- data/rbi/stripe/resources/tax_id.rbi +3 -5
- data/rbi/stripe/resources/tax_rate.rbi +2 -2
- data/rbi/stripe/resources/terminal/configuration.rbi +2 -3
- data/rbi/stripe/resources/terminal/location.rbi +4 -6
- data/rbi/stripe/resources/terminal/reader.rbi +415 -8
- data/rbi/stripe/resources/test_helpers/test_clock.rbi +1 -3
- data/rbi/stripe/resources/token.rbi +70 -4
- data/rbi/stripe/resources/transfer.rbi +1 -1
- data/rbi/stripe/resources/treasury/financial_account.rbi +6 -2
- data/rbi/stripe/resources/v2/billing/meter_event.rbi +3 -3
- data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +3 -3
- data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +3 -3
- data/rbi/stripe/resources/v2/event.rbi +3 -3
- data/rbi/stripe/resources/v2/event_destination.rbi +3 -3
- data/rbi/stripe/resources/webhook_endpoint.rbi +1 -3
- data/rbi/stripe/services/account_external_account_service.rbi +3 -5
- data/rbi/stripe/services/account_login_link_service.rbi +1 -1
- data/rbi/stripe/services/account_person_service.rbi +93 -5
- data/rbi/stripe/services/account_service.rbi +166 -28
- data/rbi/stripe/services/account_session_service.rbi +126 -52
- data/rbi/stripe/services/apple_pay_domain_service.rbi +1 -3
- data/rbi/stripe/services/balance_service.rbi +1 -1
- data/rbi/stripe/services/billing/alert_service.rbi +2 -2
- data/rbi/stripe/services/billing_portal/session_service.rbi +1 -1
- data/rbi/stripe/services/charge_service.rbi +4 -4
- data/rbi/stripe/services/checkout/session_service.rbi +104 -19
- data/rbi/stripe/services/coupon_service.rbi +1 -3
- data/rbi/stripe/services/credit_note_preview_lines_service.rbi +3 -3
- data/rbi/stripe/services/credit_note_service.rbi +13 -14
- data/rbi/stripe/services/customer_balance_transaction_service.rbi +3 -3
- data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +2 -2
- data/rbi/stripe/services/customer_payment_method_service.rbi +1 -1
- data/rbi/stripe/services/customer_payment_source_service.rbi +1 -1
- data/rbi/stripe/services/customer_service.rbi +4 -8
- data/rbi/stripe/services/customer_session_service.rbi +1 -1
- data/rbi/stripe/services/customer_tax_id_service.rbi +2 -4
- data/rbi/stripe/services/dispute_service.rbi +1 -1
- data/rbi/stripe/services/file_service.rbi +1 -1
- data/rbi/stripe/services/identity/verification_session_service.rbi +22 -6
- data/rbi/stripe/services/invoice_item_service.rbi +1 -3
- data/rbi/stripe/services/invoice_service.rbi +126 -35
- data/rbi/stripe/services/issuing/authorization_service.rbi +4 -4
- data/rbi/stripe/services/issuing/card_service.rbi +1 -1
- data/rbi/stripe/services/issuing/dispute_service.rbi +2 -2
- data/rbi/stripe/services/payment_intent_service.rbi +599 -369
- data/rbi/stripe/services/payment_method_configuration_service.rbi +280 -4
- data/rbi/stripe/services/payment_method_domain_service.rbi +1 -1
- data/rbi/stripe/services/payment_method_service.rbi +62 -121
- data/rbi/stripe/services/payout_service.rbi +2 -2
- data/rbi/stripe/services/plan_service.rbi +2 -4
- data/rbi/stripe/services/price_service.rbi +2 -2
- data/rbi/stripe/services/product_feature_service.rbi +1 -3
- data/rbi/stripe/services/product_service.rbi +2 -4
- data/rbi/stripe/services/promotion_code_service.rbi +1 -1
- data/rbi/stripe/services/quote_service.rbi +16 -3
- data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +1 -1
- data/rbi/stripe/services/radar/value_list_item_service.rbi +1 -3
- data/rbi/stripe/services/radar/value_list_service.rbi +1 -3
- data/rbi/stripe/services/setup_intent_service.rbi +457 -344
- data/rbi/stripe/services/source_service.rbi +1 -1
- data/rbi/stripe/services/subscription_item_service.rbi +28 -2
- data/rbi/stripe/services/subscription_schedule_service.rbi +119 -10
- data/rbi/stripe/services/subscription_service.rbi +121 -33
- data/rbi/stripe/services/tax/calculation_service.rbi +6 -2
- data/rbi/stripe/services/tax/registration_service.rbi +171 -2
- data/rbi/stripe/services/tax_id_service.rbi +2 -4
- data/rbi/stripe/services/terminal/configuration_service.rbi +1 -3
- data/rbi/stripe/services/terminal/location_service.rbi +4 -6
- data/rbi/stripe/services/terminal/reader_service.rbi +200 -4
- data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +106 -106
- data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +31 -0
- data/rbi/stripe/services/test_helpers/test_clock_service.rbi +1 -3
- data/rbi/stripe/services/token_service.rbi +71 -3
- data/rbi/stripe/services/transfer_service.rbi +1 -1
- data/rbi/stripe/services/treasury/financial_account_service.rbi +6 -2
- data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +1 -3
- data/rbi/stripe/services/v2/billing_service.rbi +1 -1
- data/rbi/stripe/services/v2/core/event_destination_service.rbi +14 -22
- data/rbi/stripe/services/v2/core/event_service.rbi +1 -3
- data/rbi/stripe/services/webhook_endpoint_service.rbi +1 -3
- metadata +5 -2
@@ -49,6 +49,16 @@ module Stripe
|
|
49
49
|
sig { returns(String) }
|
50
50
|
attr_reader :type
|
51
51
|
end
|
52
|
+
class Aw < Stripe::StripeObject
|
53
|
+
# Type of registration in `country`.
|
54
|
+
sig { returns(String) }
|
55
|
+
attr_reader :type
|
56
|
+
end
|
57
|
+
class Az < Stripe::StripeObject
|
58
|
+
# Type of registration in `country`.
|
59
|
+
sig { returns(String) }
|
60
|
+
attr_reader :type
|
61
|
+
end
|
52
62
|
class Ba < Stripe::StripeObject
|
53
63
|
# Type of registration in `country`.
|
54
64
|
sig { returns(String) }
|
@@ -59,6 +69,11 @@ module Stripe
|
|
59
69
|
sig { returns(String) }
|
60
70
|
attr_reader :type
|
61
71
|
end
|
72
|
+
class Bd < Stripe::StripeObject
|
73
|
+
# Type of registration in `country`.
|
74
|
+
sig { returns(String) }
|
75
|
+
attr_reader :type
|
76
|
+
end
|
62
77
|
class Be < Stripe::StripeObject
|
63
78
|
class Standard < Stripe::StripeObject
|
64
79
|
# Place of supply scheme used in an EU standard registration.
|
@@ -72,6 +87,11 @@ module Stripe
|
|
72
87
|
sig { returns(String) }
|
73
88
|
attr_reader :type
|
74
89
|
end
|
90
|
+
class Bf < Stripe::StripeObject
|
91
|
+
# Type of registration in `country`.
|
92
|
+
sig { returns(String) }
|
93
|
+
attr_reader :type
|
94
|
+
end
|
75
95
|
class Bg < Stripe::StripeObject
|
76
96
|
class Standard < Stripe::StripeObject
|
77
97
|
# Place of supply scheme used in an EU standard registration.
|
@@ -90,6 +110,11 @@ module Stripe
|
|
90
110
|
sig { returns(String) }
|
91
111
|
attr_reader :type
|
92
112
|
end
|
113
|
+
class Bj < Stripe::StripeObject
|
114
|
+
# Type of registration in `country`.
|
115
|
+
sig { returns(String) }
|
116
|
+
attr_reader :type
|
117
|
+
end
|
93
118
|
class Bs < Stripe::StripeObject
|
94
119
|
# Type of registration in `country`.
|
95
120
|
sig { returns(String) }
|
@@ -128,6 +153,11 @@ module Stripe
|
|
128
153
|
sig { returns(String) }
|
129
154
|
attr_reader :type
|
130
155
|
end
|
156
|
+
class Cm < Stripe::StripeObject
|
157
|
+
# Type of registration in `country`.
|
158
|
+
sig { returns(String) }
|
159
|
+
attr_reader :type
|
160
|
+
end
|
131
161
|
class Co < Stripe::StripeObject
|
132
162
|
# Type of registration in `country`.
|
133
163
|
sig { returns(String) }
|
@@ -138,6 +168,11 @@ module Stripe
|
|
138
168
|
sig { returns(String) }
|
139
169
|
attr_reader :type
|
140
170
|
end
|
171
|
+
class Cv < Stripe::StripeObject
|
172
|
+
# Type of registration in `country`.
|
173
|
+
sig { returns(String) }
|
174
|
+
attr_reader :type
|
175
|
+
end
|
141
176
|
class Cy < Stripe::StripeObject
|
142
177
|
class Standard < Stripe::StripeObject
|
143
178
|
# Place of supply scheme used in an EU standard registration.
|
@@ -226,6 +261,11 @@ module Stripe
|
|
226
261
|
sig { returns(String) }
|
227
262
|
attr_reader :type
|
228
263
|
end
|
264
|
+
class Et < Stripe::StripeObject
|
265
|
+
# Type of registration in `country`.
|
266
|
+
sig { returns(String) }
|
267
|
+
attr_reader :type
|
268
|
+
end
|
229
269
|
class Fi < Stripe::StripeObject
|
230
270
|
class Standard < Stripe::StripeObject
|
231
271
|
# Place of supply scheme used in an EU standard registration.
|
@@ -324,6 +364,11 @@ module Stripe
|
|
324
364
|
sig { returns(String) }
|
325
365
|
attr_reader :type
|
326
366
|
end
|
367
|
+
class In < Stripe::StripeObject
|
368
|
+
# Type of registration in `country`.
|
369
|
+
sig { returns(String) }
|
370
|
+
attr_reader :type
|
371
|
+
end
|
327
372
|
class Is < Stripe::StripeObject
|
328
373
|
# Type of registration in `country`.
|
329
374
|
sig { returns(String) }
|
@@ -352,6 +397,11 @@ module Stripe
|
|
352
397
|
sig { returns(String) }
|
353
398
|
attr_reader :type
|
354
399
|
end
|
400
|
+
class Kg < Stripe::StripeObject
|
401
|
+
# Type of registration in `country`.
|
402
|
+
sig { returns(String) }
|
403
|
+
attr_reader :type
|
404
|
+
end
|
355
405
|
class Kh < Stripe::StripeObject
|
356
406
|
# Type of registration in `country`.
|
357
407
|
sig { returns(String) }
|
@@ -367,6 +417,11 @@ module Stripe
|
|
367
417
|
sig { returns(String) }
|
368
418
|
attr_reader :type
|
369
419
|
end
|
420
|
+
class La < Stripe::StripeObject
|
421
|
+
# Type of registration in `country`.
|
422
|
+
sig { returns(String) }
|
423
|
+
attr_reader :type
|
424
|
+
end
|
370
425
|
class Lt < Stripe::StripeObject
|
371
426
|
class Standard < Stripe::StripeObject
|
372
427
|
# Place of supply scheme used in an EU standard registration.
|
@@ -497,6 +552,11 @@ module Stripe
|
|
497
552
|
sig { returns(String) }
|
498
553
|
attr_reader :type
|
499
554
|
end
|
555
|
+
class Ph < Stripe::StripeObject
|
556
|
+
# Type of registration in `country`.
|
557
|
+
sig { returns(String) }
|
558
|
+
attr_reader :type
|
559
|
+
end
|
500
560
|
class Pl < Stripe::StripeObject
|
501
561
|
class Standard < Stripe::StripeObject
|
502
562
|
# Place of supply scheme used in an EU standard registration.
|
@@ -625,6 +685,11 @@ module Stripe
|
|
625
685
|
sig { returns(String) }
|
626
686
|
attr_reader :type
|
627
687
|
end
|
688
|
+
class Ua < Stripe::StripeObject
|
689
|
+
# Type of registration in `country`.
|
690
|
+
sig { returns(String) }
|
691
|
+
attr_reader :type
|
692
|
+
end
|
628
693
|
class Ug < Stripe::StripeObject
|
629
694
|
# Type of registration in `country`.
|
630
695
|
sig { returns(String) }
|
@@ -718,21 +783,36 @@ module Stripe
|
|
718
783
|
# Attribute for field au
|
719
784
|
sig { returns(Au) }
|
720
785
|
attr_reader :au
|
786
|
+
# Attribute for field aw
|
787
|
+
sig { returns(Aw) }
|
788
|
+
attr_reader :aw
|
789
|
+
# Attribute for field az
|
790
|
+
sig { returns(Az) }
|
791
|
+
attr_reader :az
|
721
792
|
# Attribute for field ba
|
722
793
|
sig { returns(Ba) }
|
723
794
|
attr_reader :ba
|
724
795
|
# Attribute for field bb
|
725
796
|
sig { returns(Bb) }
|
726
797
|
attr_reader :bb
|
798
|
+
# Attribute for field bd
|
799
|
+
sig { returns(Bd) }
|
800
|
+
attr_reader :bd
|
727
801
|
# Attribute for field be
|
728
802
|
sig { returns(Be) }
|
729
803
|
attr_reader :be
|
804
|
+
# Attribute for field bf
|
805
|
+
sig { returns(Bf) }
|
806
|
+
attr_reader :bf
|
730
807
|
# Attribute for field bg
|
731
808
|
sig { returns(Bg) }
|
732
809
|
attr_reader :bg
|
733
810
|
# Attribute for field bh
|
734
811
|
sig { returns(Bh) }
|
735
812
|
attr_reader :bh
|
813
|
+
# Attribute for field bj
|
814
|
+
sig { returns(Bj) }
|
815
|
+
attr_reader :bj
|
736
816
|
# Attribute for field bs
|
737
817
|
sig { returns(Bs) }
|
738
818
|
attr_reader :bs
|
@@ -751,12 +831,18 @@ module Stripe
|
|
751
831
|
# Attribute for field cl
|
752
832
|
sig { returns(Cl) }
|
753
833
|
attr_reader :cl
|
834
|
+
# Attribute for field cm
|
835
|
+
sig { returns(Cm) }
|
836
|
+
attr_reader :cm
|
754
837
|
# Attribute for field co
|
755
838
|
sig { returns(Co) }
|
756
839
|
attr_reader :co
|
757
840
|
# Attribute for field cr
|
758
841
|
sig { returns(Cr) }
|
759
842
|
attr_reader :cr
|
843
|
+
# Attribute for field cv
|
844
|
+
sig { returns(Cv) }
|
845
|
+
attr_reader :cv
|
760
846
|
# Attribute for field cy
|
761
847
|
sig { returns(Cy) }
|
762
848
|
attr_reader :cy
|
@@ -781,6 +867,9 @@ module Stripe
|
|
781
867
|
# Attribute for field es
|
782
868
|
sig { returns(Es) }
|
783
869
|
attr_reader :es
|
870
|
+
# Attribute for field et
|
871
|
+
sig { returns(Et) }
|
872
|
+
attr_reader :et
|
784
873
|
# Attribute for field fi
|
785
874
|
sig { returns(Fi) }
|
786
875
|
attr_reader :fi
|
@@ -811,6 +900,9 @@ module Stripe
|
|
811
900
|
# Attribute for field ie
|
812
901
|
sig { returns(Ie) }
|
813
902
|
attr_reader :ie
|
903
|
+
# Attribute for field in
|
904
|
+
sig { returns(In) }
|
905
|
+
attr_reader :in
|
814
906
|
# Attribute for field is
|
815
907
|
sig { returns(Is) }
|
816
908
|
attr_reader :is
|
@@ -823,6 +915,9 @@ module Stripe
|
|
823
915
|
# Attribute for field ke
|
824
916
|
sig { returns(Ke) }
|
825
917
|
attr_reader :ke
|
918
|
+
# Attribute for field kg
|
919
|
+
sig { returns(Kg) }
|
920
|
+
attr_reader :kg
|
826
921
|
# Attribute for field kh
|
827
922
|
sig { returns(Kh) }
|
828
923
|
attr_reader :kh
|
@@ -832,6 +927,9 @@ module Stripe
|
|
832
927
|
# Attribute for field kz
|
833
928
|
sig { returns(Kz) }
|
834
929
|
attr_reader :kz
|
930
|
+
# Attribute for field la
|
931
|
+
sig { returns(La) }
|
932
|
+
attr_reader :la
|
835
933
|
# Attribute for field lt
|
836
934
|
sig { returns(Lt) }
|
837
935
|
attr_reader :lt
|
@@ -886,6 +984,9 @@ module Stripe
|
|
886
984
|
# Attribute for field pe
|
887
985
|
sig { returns(Pe) }
|
888
986
|
attr_reader :pe
|
987
|
+
# Attribute for field ph
|
988
|
+
sig { returns(Ph) }
|
989
|
+
attr_reader :ph
|
889
990
|
# Attribute for field pl
|
890
991
|
sig { returns(Pl) }
|
891
992
|
attr_reader :pl
|
@@ -934,6 +1035,9 @@ module Stripe
|
|
934
1035
|
# Attribute for field tz
|
935
1036
|
sig { returns(Tz) }
|
936
1037
|
attr_reader :tz
|
1038
|
+
# Attribute for field ua
|
1039
|
+
sig { returns(Ua) }
|
1040
|
+
attr_reader :ua
|
937
1041
|
# Attribute for field ug
|
938
1042
|
sig { returns(Ug) }
|
939
1043
|
attr_reader :ug
|
@@ -1071,6 +1175,20 @@ module Stripe
|
|
1071
1175
|
sig { params(type: String).void }
|
1072
1176
|
def initialize(type: nil); end
|
1073
1177
|
end
|
1178
|
+
class Aw < Stripe::RequestParams
|
1179
|
+
# Type of registration to be created in `country`.
|
1180
|
+
sig { returns(String) }
|
1181
|
+
attr_accessor :type
|
1182
|
+
sig { params(type: String).void }
|
1183
|
+
def initialize(type: nil); end
|
1184
|
+
end
|
1185
|
+
class Az < Stripe::RequestParams
|
1186
|
+
# Type of registration to be created in `country`.
|
1187
|
+
sig { returns(String) }
|
1188
|
+
attr_accessor :type
|
1189
|
+
sig { params(type: String).void }
|
1190
|
+
def initialize(type: nil); end
|
1191
|
+
end
|
1074
1192
|
class Ba < Stripe::RequestParams
|
1075
1193
|
# Type of registration to be created in `country`.
|
1076
1194
|
sig { returns(String) }
|
@@ -1085,6 +1203,13 @@ module Stripe
|
|
1085
1203
|
sig { params(type: String).void }
|
1086
1204
|
def initialize(type: nil); end
|
1087
1205
|
end
|
1206
|
+
class Bd < Stripe::RequestParams
|
1207
|
+
# Type of registration to be created in `country`.
|
1208
|
+
sig { returns(String) }
|
1209
|
+
attr_accessor :type
|
1210
|
+
sig { params(type: String).void }
|
1211
|
+
def initialize(type: nil); end
|
1212
|
+
end
|
1088
1213
|
class Be < Stripe::RequestParams
|
1089
1214
|
class Standard < Stripe::RequestParams
|
1090
1215
|
# Place of supply scheme used in an EU standard registration.
|
@@ -1106,6 +1231,13 @@ module Stripe
|
|
1106
1231
|
}
|
1107
1232
|
def initialize(standard: nil, type: nil); end
|
1108
1233
|
end
|
1234
|
+
class Bf < Stripe::RequestParams
|
1235
|
+
# Type of registration to be created in `country`.
|
1236
|
+
sig { returns(String) }
|
1237
|
+
attr_accessor :type
|
1238
|
+
sig { params(type: String).void }
|
1239
|
+
def initialize(type: nil); end
|
1240
|
+
end
|
1109
1241
|
class Bg < Stripe::RequestParams
|
1110
1242
|
class Standard < Stripe::RequestParams
|
1111
1243
|
# Place of supply scheme used in an EU standard registration.
|
@@ -1134,6 +1266,13 @@ module Stripe
|
|
1134
1266
|
sig { params(type: String).void }
|
1135
1267
|
def initialize(type: nil); end
|
1136
1268
|
end
|
1269
|
+
class Bj < Stripe::RequestParams
|
1270
|
+
# Type of registration to be created in `country`.
|
1271
|
+
sig { returns(String) }
|
1272
|
+
attr_accessor :type
|
1273
|
+
sig { params(type: String).void }
|
1274
|
+
def initialize(type: nil); end
|
1275
|
+
end
|
1137
1276
|
class Bs < Stripe::RequestParams
|
1138
1277
|
# Type of registration to be created in `country`.
|
1139
1278
|
sig { returns(String) }
|
@@ -1190,6 +1329,13 @@ module Stripe
|
|
1190
1329
|
sig { params(type: String).void }
|
1191
1330
|
def initialize(type: nil); end
|
1192
1331
|
end
|
1332
|
+
class Cm < Stripe::RequestParams
|
1333
|
+
# Type of registration to be created in `country`.
|
1334
|
+
sig { returns(String) }
|
1335
|
+
attr_accessor :type
|
1336
|
+
sig { params(type: String).void }
|
1337
|
+
def initialize(type: nil); end
|
1338
|
+
end
|
1193
1339
|
class Co < Stripe::RequestParams
|
1194
1340
|
# Type of registration to be created in `country`.
|
1195
1341
|
sig { returns(String) }
|
@@ -1204,6 +1350,13 @@ module Stripe
|
|
1204
1350
|
sig { params(type: String).void }
|
1205
1351
|
def initialize(type: nil); end
|
1206
1352
|
end
|
1353
|
+
class Cv < Stripe::RequestParams
|
1354
|
+
# Type of registration to be created in `country`.
|
1355
|
+
sig { returns(String) }
|
1356
|
+
attr_accessor :type
|
1357
|
+
sig { params(type: String).void }
|
1358
|
+
def initialize(type: nil); end
|
1359
|
+
end
|
1207
1360
|
class Cy < Stripe::RequestParams
|
1208
1361
|
class Standard < Stripe::RequestParams
|
1209
1362
|
# Place of supply scheme used in an EU standard registration.
|
@@ -1344,6 +1497,13 @@ module Stripe
|
|
1344
1497
|
}
|
1345
1498
|
def initialize(standard: nil, type: nil); end
|
1346
1499
|
end
|
1500
|
+
class Et < Stripe::RequestParams
|
1501
|
+
# Type of registration to be created in `country`.
|
1502
|
+
sig { returns(String) }
|
1503
|
+
attr_accessor :type
|
1504
|
+
sig { params(type: String).void }
|
1505
|
+
def initialize(type: nil); end
|
1506
|
+
end
|
1347
1507
|
class Fi < Stripe::RequestParams
|
1348
1508
|
class Standard < Stripe::RequestParams
|
1349
1509
|
# Place of supply scheme used in an EU standard registration.
|
@@ -1498,6 +1658,13 @@ module Stripe
|
|
1498
1658
|
}
|
1499
1659
|
def initialize(standard: nil, type: nil); end
|
1500
1660
|
end
|
1661
|
+
class In < Stripe::RequestParams
|
1662
|
+
# Type of registration to be created in `country`.
|
1663
|
+
sig { returns(String) }
|
1664
|
+
attr_accessor :type
|
1665
|
+
sig { params(type: String).void }
|
1666
|
+
def initialize(type: nil); end
|
1667
|
+
end
|
1501
1668
|
class Is < Stripe::RequestParams
|
1502
1669
|
# Type of registration to be created in `country`.
|
1503
1670
|
sig { returns(String) }
|
@@ -1540,6 +1707,13 @@ module Stripe
|
|
1540
1707
|
sig { params(type: String).void }
|
1541
1708
|
def initialize(type: nil); end
|
1542
1709
|
end
|
1710
|
+
class Kg < Stripe::RequestParams
|
1711
|
+
# Type of registration to be created in `country`.
|
1712
|
+
sig { returns(String) }
|
1713
|
+
attr_accessor :type
|
1714
|
+
sig { params(type: String).void }
|
1715
|
+
def initialize(type: nil); end
|
1716
|
+
end
|
1543
1717
|
class Kh < Stripe::RequestParams
|
1544
1718
|
# Type of registration to be created in `country`.
|
1545
1719
|
sig { returns(String) }
|
@@ -1561,6 +1735,13 @@ module Stripe
|
|
1561
1735
|
sig { params(type: String).void }
|
1562
1736
|
def initialize(type: nil); end
|
1563
1737
|
end
|
1738
|
+
class La < Stripe::RequestParams
|
1739
|
+
# Type of registration to be created in `country`.
|
1740
|
+
sig { returns(String) }
|
1741
|
+
attr_accessor :type
|
1742
|
+
sig { params(type: String).void }
|
1743
|
+
def initialize(type: nil); end
|
1744
|
+
end
|
1564
1745
|
class Lt < Stripe::RequestParams
|
1565
1746
|
class Standard < Stripe::RequestParams
|
1566
1747
|
# Place of supply scheme used in an EU standard registration.
|
@@ -1757,6 +1938,13 @@ module Stripe
|
|
1757
1938
|
sig { params(type: String).void }
|
1758
1939
|
def initialize(type: nil); end
|
1759
1940
|
end
|
1941
|
+
class Ph < Stripe::RequestParams
|
1942
|
+
# Type of registration to be created in `country`.
|
1943
|
+
sig { returns(String) }
|
1944
|
+
attr_accessor :type
|
1945
|
+
sig { params(type: String).void }
|
1946
|
+
def initialize(type: nil); end
|
1947
|
+
end
|
1760
1948
|
class Pl < Stripe::RequestParams
|
1761
1949
|
class Standard < Stripe::RequestParams
|
1762
1950
|
# Place of supply scheme used in an EU standard registration.
|
@@ -1953,6 +2141,13 @@ module Stripe
|
|
1953
2141
|
sig { params(type: String).void }
|
1954
2142
|
def initialize(type: nil); end
|
1955
2143
|
end
|
2144
|
+
class Ua < Stripe::RequestParams
|
2145
|
+
# Type of registration to be created in `country`.
|
2146
|
+
sig { returns(String) }
|
2147
|
+
attr_accessor :type
|
2148
|
+
sig { params(type: String).void }
|
2149
|
+
def initialize(type: nil); end
|
2150
|
+
end
|
1956
2151
|
class Ug < Stripe::RequestParams
|
1957
2152
|
# Type of registration to be created in `country`.
|
1958
2153
|
sig { returns(String) }
|
@@ -1962,7 +2157,7 @@ module Stripe
|
|
1962
2157
|
end
|
1963
2158
|
class Us < Stripe::RequestParams
|
1964
2159
|
class LocalAmusementTax < Stripe::RequestParams
|
1965
|
-
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago), `06613` (Bloomington), `21696` (East Dundee), `24582` (Evanston), `45421` (Lynwood), `64343` (River Grove), and `68081` (Schiller Park).
|
2160
|
+
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago), `06613` (Bloomington), `21696` (East Dundee), `24582` (Evanston), `45421` (Lynwood), `48892` (Midlothian), `64343` (River Grove), and `68081` (Schiller Park).
|
1966
2161
|
sig { returns(String) }
|
1967
2162
|
attr_accessor :jurisdiction
|
1968
2163
|
sig { params(jurisdiction: String).void }
|
@@ -2088,21 +2283,36 @@ module Stripe
|
|
2088
2283
|
# Options for the registration in AU.
|
2089
2284
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Au)) }
|
2090
2285
|
attr_accessor :au
|
2286
|
+
# Options for the registration in AW.
|
2287
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Aw)) }
|
2288
|
+
attr_accessor :aw
|
2289
|
+
# Options for the registration in AZ.
|
2290
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Az)) }
|
2291
|
+
attr_accessor :az
|
2091
2292
|
# Options for the registration in BA.
|
2092
2293
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ba)) }
|
2093
2294
|
attr_accessor :ba
|
2094
2295
|
# Options for the registration in BB.
|
2095
2296
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bb)) }
|
2096
2297
|
attr_accessor :bb
|
2298
|
+
# Options for the registration in BD.
|
2299
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bd)) }
|
2300
|
+
attr_accessor :bd
|
2097
2301
|
# Options for the registration in BE.
|
2098
2302
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Be)) }
|
2099
2303
|
attr_accessor :be
|
2304
|
+
# Options for the registration in BF.
|
2305
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bf)) }
|
2306
|
+
attr_accessor :bf
|
2100
2307
|
# Options for the registration in BG.
|
2101
2308
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bg)) }
|
2102
2309
|
attr_accessor :bg
|
2103
2310
|
# Options for the registration in BH.
|
2104
2311
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bh)) }
|
2105
2312
|
attr_accessor :bh
|
2313
|
+
# Options for the registration in BJ.
|
2314
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bj)) }
|
2315
|
+
attr_accessor :bj
|
2106
2316
|
# Options for the registration in BS.
|
2107
2317
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bs)) }
|
2108
2318
|
attr_accessor :bs
|
@@ -2121,12 +2331,18 @@ module Stripe
|
|
2121
2331
|
# Options for the registration in CL.
|
2122
2332
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cl)) }
|
2123
2333
|
attr_accessor :cl
|
2334
|
+
# Options for the registration in CM.
|
2335
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cm)) }
|
2336
|
+
attr_accessor :cm
|
2124
2337
|
# Options for the registration in CO.
|
2125
2338
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Co)) }
|
2126
2339
|
attr_accessor :co
|
2127
2340
|
# Options for the registration in CR.
|
2128
2341
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cr)) }
|
2129
2342
|
attr_accessor :cr
|
2343
|
+
# Options for the registration in CV.
|
2344
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cv)) }
|
2345
|
+
attr_accessor :cv
|
2130
2346
|
# Options for the registration in CY.
|
2131
2347
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cy)) }
|
2132
2348
|
attr_accessor :cy
|
@@ -2151,6 +2367,9 @@ module Stripe
|
|
2151
2367
|
# Options for the registration in ES.
|
2152
2368
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Es)) }
|
2153
2369
|
attr_accessor :es
|
2370
|
+
# Options for the registration in ET.
|
2371
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Et)) }
|
2372
|
+
attr_accessor :et
|
2154
2373
|
# Options for the registration in FI.
|
2155
2374
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Fi)) }
|
2156
2375
|
attr_accessor :fi
|
@@ -2181,6 +2400,9 @@ module Stripe
|
|
2181
2400
|
# Options for the registration in IE.
|
2182
2401
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ie)) }
|
2183
2402
|
attr_accessor :ie
|
2403
|
+
# Options for the registration in IN.
|
2404
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::In)) }
|
2405
|
+
attr_accessor :in
|
2184
2406
|
# Options for the registration in IS.
|
2185
2407
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Is)) }
|
2186
2408
|
attr_accessor :is
|
@@ -2193,6 +2415,9 @@ module Stripe
|
|
2193
2415
|
# Options for the registration in KE.
|
2194
2416
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ke)) }
|
2195
2417
|
attr_accessor :ke
|
2418
|
+
# Options for the registration in KG.
|
2419
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kg)) }
|
2420
|
+
attr_accessor :kg
|
2196
2421
|
# Options for the registration in KH.
|
2197
2422
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kh)) }
|
2198
2423
|
attr_accessor :kh
|
@@ -2202,6 +2427,9 @@ module Stripe
|
|
2202
2427
|
# Options for the registration in KZ.
|
2203
2428
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kz)) }
|
2204
2429
|
attr_accessor :kz
|
2430
|
+
# Options for the registration in LA.
|
2431
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::La)) }
|
2432
|
+
attr_accessor :la
|
2205
2433
|
# Options for the registration in LT.
|
2206
2434
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lt)) }
|
2207
2435
|
attr_accessor :lt
|
@@ -2256,6 +2484,9 @@ module Stripe
|
|
2256
2484
|
# Options for the registration in PE.
|
2257
2485
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pe)) }
|
2258
2486
|
attr_accessor :pe
|
2487
|
+
# Options for the registration in PH.
|
2488
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ph)) }
|
2489
|
+
attr_accessor :ph
|
2259
2490
|
# Options for the registration in PL.
|
2260
2491
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pl)) }
|
2261
2492
|
attr_accessor :pl
|
@@ -2304,6 +2535,9 @@ module Stripe
|
|
2304
2535
|
# Options for the registration in TZ.
|
2305
2536
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tz)) }
|
2306
2537
|
attr_accessor :tz
|
2538
|
+
# Options for the registration in UA.
|
2539
|
+
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ua)) }
|
2540
|
+
attr_accessor :ua
|
2307
2541
|
# Options for the registration in UG.
|
2308
2542
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ug)) }
|
2309
2543
|
attr_accessor :ug
|
@@ -2329,7 +2563,7 @@ module Stripe
|
|
2329
2563
|
sig { returns(T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zw)) }
|
2330
2564
|
attr_accessor :zw
|
2331
2565
|
sig {
|
2332
|
-
params(ae: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ae), al: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Al), am: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Am), ao: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ao), at: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::At), au: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Au), ba: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ba), bb: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bb), be: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Be), bg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bg), bh: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bh), bs: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bs), by: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::By), ca: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ca), cd: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cd), ch: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ch), cl: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cl), co: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Co), cr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cr), cy: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cy), cz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cz), de: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::De), dk: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Dk), ec: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ec), ee: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ee), eg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Eg), es: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Es), fi: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Fi), fr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Fr), gb: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gb), ge: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ge), gn: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gn), gr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gr), hr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Hr), hu: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Hu), id: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Id), ie: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ie), is: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Is), it: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::It), jp: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Jp), ke: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ke), kh: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kh), kr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kr), kz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kz), lt: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lt), lu: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lu), lv: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lv), ma: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ma), md: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Md), me: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Me), mk: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mk), mr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mr), mt: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mt), mx: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mx), my: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::My), ng: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ng), nl: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Nl), no: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::No), np: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Np), nz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Nz), om: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Om), pe: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pe), pl: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pl), pt: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pt), ro: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ro), rs: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Rs), ru: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ru), sa: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sa), se: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Se), sg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sg), si: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Si), sk: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sk), sn: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sn), sr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sr), th: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Th), tj: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tj), tr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tr), tz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tz), ug: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ug), us: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Us), uy: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Uy), uz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Uz), vn: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Vn), za: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Za), zm: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zm), zw: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zw)).void
|
2566
|
+
params(ae: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ae), al: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Al), am: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Am), ao: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ao), at: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::At), au: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Au), aw: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Aw), az: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Az), ba: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ba), bb: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bb), bd: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bd), be: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Be), bf: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bf), bg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bg), bh: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bh), bj: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bj), bs: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Bs), by: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::By), ca: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ca), cd: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cd), ch: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ch), cl: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cl), cm: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cm), co: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Co), cr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cr), cv: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cv), cy: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cy), cz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Cz), de: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::De), dk: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Dk), ec: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ec), ee: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ee), eg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Eg), es: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Es), et: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Et), fi: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Fi), fr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Fr), gb: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gb), ge: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ge), gn: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gn), gr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Gr), hr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Hr), hu: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Hu), id: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Id), ie: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ie), in_: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::In), is: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Is), it: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::It), jp: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Jp), ke: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ke), kg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kg), kh: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kh), kr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kr), kz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Kz), la: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::La), lt: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lt), lu: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lu), lv: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Lv), ma: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ma), md: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Md), me: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Me), mk: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mk), mr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mr), mt: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mt), mx: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Mx), my: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::My), ng: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ng), nl: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Nl), no: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::No), np: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Np), nz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Nz), om: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Om), pe: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pe), ph: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ph), pl: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pl), pt: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Pt), ro: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ro), rs: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Rs), ru: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ru), sa: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sa), se: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Se), sg: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sg), si: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Si), sk: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sk), sn: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sn), sr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Sr), th: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Th), tj: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tj), tr: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tr), tz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Tz), ua: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ua), ug: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Ug), us: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Us), uy: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Uy), uz: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Uz), vn: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Vn), za: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Za), zm: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zm), zw: T.nilable(::Stripe::Tax::Registration::CreateParams::CountryOptions::Zw)).void
|
2333
2567
|
}
|
2334
2568
|
def initialize(
|
2335
2569
|
ae: nil,
|
@@ -2338,19 +2572,26 @@ module Stripe
|
|
2338
2572
|
ao: nil,
|
2339
2573
|
at: nil,
|
2340
2574
|
au: nil,
|
2575
|
+
aw: nil,
|
2576
|
+
az: nil,
|
2341
2577
|
ba: nil,
|
2342
2578
|
bb: nil,
|
2579
|
+
bd: nil,
|
2343
2580
|
be: nil,
|
2581
|
+
bf: nil,
|
2344
2582
|
bg: nil,
|
2345
2583
|
bh: nil,
|
2584
|
+
bj: nil,
|
2346
2585
|
bs: nil,
|
2347
2586
|
by: nil,
|
2348
2587
|
ca: nil,
|
2349
2588
|
cd: nil,
|
2350
2589
|
ch: nil,
|
2351
2590
|
cl: nil,
|
2591
|
+
cm: nil,
|
2352
2592
|
co: nil,
|
2353
2593
|
cr: nil,
|
2594
|
+
cv: nil,
|
2354
2595
|
cy: nil,
|
2355
2596
|
cz: nil,
|
2356
2597
|
de: nil,
|
@@ -2359,6 +2600,7 @@ module Stripe
|
|
2359
2600
|
ee: nil,
|
2360
2601
|
eg: nil,
|
2361
2602
|
es: nil,
|
2603
|
+
et: nil,
|
2362
2604
|
fi: nil,
|
2363
2605
|
fr: nil,
|
2364
2606
|
gb: nil,
|
@@ -2369,13 +2611,16 @@ module Stripe
|
|
2369
2611
|
hu: nil,
|
2370
2612
|
id: nil,
|
2371
2613
|
ie: nil,
|
2614
|
+
in_: nil,
|
2372
2615
|
is: nil,
|
2373
2616
|
it: nil,
|
2374
2617
|
jp: nil,
|
2375
2618
|
ke: nil,
|
2619
|
+
kg: nil,
|
2376
2620
|
kh: nil,
|
2377
2621
|
kr: nil,
|
2378
2622
|
kz: nil,
|
2623
|
+
la: nil,
|
2379
2624
|
lt: nil,
|
2380
2625
|
lu: nil,
|
2381
2626
|
lv: nil,
|
@@ -2394,6 +2639,7 @@ module Stripe
|
|
2394
2639
|
nz: nil,
|
2395
2640
|
om: nil,
|
2396
2641
|
pe: nil,
|
2642
|
+
ph: nil,
|
2397
2643
|
pl: nil,
|
2398
2644
|
pt: nil,
|
2399
2645
|
ro: nil,
|
@@ -2410,6 +2656,7 @@ module Stripe
|
|
2410
2656
|
tj: nil,
|
2411
2657
|
tr: nil,
|
2412
2658
|
tz: nil,
|
2659
|
+
ua: nil,
|
2413
2660
|
ug: nil,
|
2414
2661
|
us: nil,
|
2415
2662
|
uy: nil,
|
@@ -30,7 +30,7 @@ module Stripe
|
|
30
30
|
attr_reader :state
|
31
31
|
end
|
32
32
|
class TaxId < Stripe::StripeObject
|
33
|
-
# The type of the tax ID, one of `ad_nrt`, `ar_cuit`, `eu_vat`, `bo_tin`, `br_cnpj`, `br_cpf`, `cn_tin`, `co_nit`, `cr_tin`, `do_rcn`, `ec_ruc`, `eu_oss_vat`, `hr_oib`, `pe_ruc`, `ro_tin`, `rs_pib`, `sv_nit`, `uy_ruc`, `ve_rif`, `vn_tin`, `gb_vat`, `nz_gst`, `au_abn`, `au_arn`, `in_gst`, `no_vat`, `no_voec`, `za_vat`, `ch_vat`, `mx_rfc`, `sg_uen`, `ru_inn`, `ru_kpp`, `ca_bn`, `hk_br`, `es_cif`, `tw_vat`, `th_vat`, `jp_cn`, `jp_rn`, `jp_trn`, `li_uid`, `li_vat`, `my_itn`, `us_ein`, `kr_brn`, `ca_qst`, `ca_gst_hst`, `ca_pst_bc`, `ca_pst_mb`, `ca_pst_sk`, `my_sst`, `sg_gst`, `ae_trn`, `cl_tin`, `sa_vat`, `id_npwp`, `my_frp`, `il_vat`, `ge_vat`, `ua_vat`, `is_vat`, `bg_uic`, `hu_tin`, `si_tin`, `ke_pin`, `tr_tin`, `eg_tin`, `ph_tin`, `al_tin`, `bh_vat`, `kz_bin`, `ng_tin`, `om_vat`, `de_stn`, `ch_uid`, `tz_vat`, `uz_vat`, `uz_tin`, `md_vat`, `ma_vat`, `by_tin`, `ao_tin`, `bs_tin`, `bb_tin`, `cd_nif`, `mr_nif`, `me_pib`, `zw_tin`, `ba_tin`, `gn_nif`, `mk_vat`, `sr_fin`, `sn_ninea`, `am_tin`, `np_pan`, `tj_tin`, `ug_tin`, `zm_tin`, `kh_tin`, or `unknown`
|
33
|
+
# The type of the tax ID, one of `ad_nrt`, `ar_cuit`, `eu_vat`, `bo_tin`, `br_cnpj`, `br_cpf`, `cn_tin`, `co_nit`, `cr_tin`, `do_rcn`, `ec_ruc`, `eu_oss_vat`, `hr_oib`, `pe_ruc`, `ro_tin`, `rs_pib`, `sv_nit`, `uy_ruc`, `ve_rif`, `vn_tin`, `gb_vat`, `nz_gst`, `au_abn`, `au_arn`, `in_gst`, `no_vat`, `no_voec`, `za_vat`, `ch_vat`, `mx_rfc`, `sg_uen`, `ru_inn`, `ru_kpp`, `ca_bn`, `hk_br`, `es_cif`, `tw_vat`, `th_vat`, `jp_cn`, `jp_rn`, `jp_trn`, `li_uid`, `li_vat`, `my_itn`, `us_ein`, `kr_brn`, `ca_qst`, `ca_gst_hst`, `ca_pst_bc`, `ca_pst_mb`, `ca_pst_sk`, `my_sst`, `sg_gst`, `ae_trn`, `cl_tin`, `sa_vat`, `id_npwp`, `my_frp`, `il_vat`, `ge_vat`, `ua_vat`, `is_vat`, `bg_uic`, `hu_tin`, `si_tin`, `ke_pin`, `tr_tin`, `eg_tin`, `ph_tin`, `al_tin`, `bh_vat`, `kz_bin`, `ng_tin`, `om_vat`, `de_stn`, `ch_uid`, `tz_vat`, `uz_vat`, `uz_tin`, `md_vat`, `ma_vat`, `by_tin`, `ao_tin`, `bs_tin`, `bb_tin`, `cd_nif`, `mr_nif`, `me_pib`, `zw_tin`, `ba_tin`, `gn_nif`, `mk_vat`, `sr_fin`, `sn_ninea`, `am_tin`, `np_pan`, `tj_tin`, `ug_tin`, `zm_tin`, `kh_tin`, `aw_tin`, `az_tin`, `bd_bin`, `bj_ifu`, `et_tin`, `kg_tin`, `la_tin`, `cm_niu`, `cv_nif`, `bf_ifu`, or `unknown`
|
34
34
|
sig { returns(String) }
|
35
35
|
attr_reader :type
|
36
36
|
# The value of the tax ID.
|