stripe 13.3.0 → 13.4.0.pre.beta.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1410 -650
- data/OPENAPI_VERSION +1 -1
- data/VERSION +1 -1
- data/lib/stripe/api_operations/request.rb +1 -0
- data/lib/stripe/api_requestor.rb +1 -0
- data/lib/stripe/object_types.rb +32 -0
- data/lib/stripe/request_params.rb +24 -0
- data/lib/stripe/request_signing_authenticator.rb +79 -0
- data/lib/stripe/resources/account.rb +5793 -0
- data/lib/stripe/resources/account_link.rb +64 -0
- data/lib/stripe/resources/account_notice.rb +154 -0
- data/lib/stripe/resources/account_session.rb +1002 -0
- data/lib/stripe/resources/apple_pay_domain.rb +73 -0
- data/lib/stripe/resources/application.rb +23 -0
- data/lib/stripe/resources/application_fee.rb +120 -0
- data/lib/stripe/resources/application_fee_refund.rb +24 -0
- data/lib/stripe/resources/apps/secret.rb +166 -0
- data/lib/stripe/resources/balance.rb +162 -0
- data/lib/stripe/resources/balance_transaction.rb +141 -0
- data/lib/stripe/resources/bank_account.rb +113 -2
- data/lib/stripe/resources/billing/alert.rb +166 -0
- data/lib/stripe/resources/billing/alert_triggered.rb +31 -0
- data/lib/stripe/resources/billing/credit_balance_summary.rb +89 -0
- data/lib/stripe/resources/billing/credit_balance_transaction.rb +140 -0
- data/lib/stripe/resources/billing/credit_grant.rb +235 -0
- data/lib/stripe/resources/billing/meter.rb +203 -0
- data/lib/stripe/resources/billing/meter_error_report.rb +70 -0
- data/lib/stripe/resources/billing/meter_event.rb +45 -0
- data/lib/stripe/resources/billing/meter_event_adjustment.rb +51 -0
- data/lib/stripe/resources/billing/meter_event_summary.rb +21 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +639 -0
- data/lib/stripe/resources/billing_portal/session.rb +313 -0
- data/lib/stripe/resources/capability.rb +111 -0
- data/lib/stripe/resources/capital/financing_offer.rb +221 -0
- data/lib/stripe/resources/capital/financing_summary.rb +77 -0
- data/lib/stripe/resources/capital/financing_transaction.rb +147 -0
- data/lib/stripe/resources/card.rb +111 -0
- data/lib/stripe/resources/cash_balance.rb +22 -0
- data/lib/stripe/resources/charge.rb +3687 -0
- data/lib/stripe/resources/checkout/session.rb +4162 -0
- data/lib/stripe/resources/climate/order.rb +216 -0
- data/lib/stripe/resources/climate/product.rb +69 -0
- data/lib/stripe/resources/climate/supplier.rb +67 -0
- data/lib/stripe/resources/confirmation_token.rb +1855 -0
- data/lib/stripe/resources/connect_collection_transfer.rb +29 -0
- data/lib/stripe/resources/country_spec.rb +76 -0
- data/lib/stripe/resources/coupon.rb +237 -0
- data/lib/stripe/resources/credit_note.rb +798 -0
- data/lib/stripe/resources/credit_note_line_item.rb +89 -0
- data/lib/stripe/resources/customer.rb +995 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +39 -0
- data/lib/stripe/resources/customer_cash_balance_transaction.rb +136 -0
- data/lib/stripe/resources/customer_session.rb +183 -0
- data/lib/stripe/resources/discount.rb +41 -0
- data/lib/stripe/resources/dispute.rb +767 -0
- data/lib/stripe/resources/entitlements/active_entitlement.rb +54 -0
- data/lib/stripe/resources/entitlements/active_entitlement_summary.rb +26 -0
- data/lib/stripe/resources/entitlements/feature.rb +107 -0
- data/lib/stripe/resources/ephemeral_key.rb +26 -0
- data/lib/stripe/resources/event.rb +157 -0
- data/lib/stripe/resources/exchange_rate.rb +38 -0
- data/lib/stripe/resources/file.rb +134 -0
- data/lib/stripe/resources/file_link.rb +134 -0
- data/lib/stripe/resources/financial_connections/account.rb +307 -0
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +30 -0
- data/lib/stripe/resources/financial_connections/account_owner.rb +24 -0
- data/lib/stripe/resources/financial_connections/account_ownership.rb +12 -0
- data/lib/stripe/resources/financial_connections/institution.rb +112 -0
- data/lib/stripe/resources/financial_connections/session.rb +187 -0
- data/lib/stripe/resources/financial_connections/transaction.rb +122 -0
- data/lib/stripe/resources/forwarding/request.rb +196 -0
- data/lib/stripe/resources/funding_instructions.rb +415 -0
- data/lib/stripe/resources/gift_cards/card.rb +245 -0
- data/lib/stripe/resources/gift_cards/transaction.rb +313 -0
- data/lib/stripe/resources/identity/verification_report.rb +335 -0
- data/lib/stripe/resources/identity/verification_session.rb +430 -0
- data/lib/stripe/resources/invoice.rb +9348 -0
- data/lib/stripe/resources/invoice_item.rb +536 -0
- data/lib/stripe/resources/invoice_line_item.rb +409 -0
- data/lib/stripe/resources/invoice_payment.rb +72 -0
- data/lib/stripe/resources/invoice_rendering_template.rb +79 -0
- data/lib/stripe/resources/issuing/authorization.rb +1316 -2
- data/lib/stripe/resources/issuing/card.rb +794 -0
- data/lib/stripe/resources/issuing/cardholder.rb +768 -0
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +693 -0
- data/lib/stripe/resources/issuing/dispute.rb +941 -0
- data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +98 -0
- data/lib/stripe/resources/issuing/fraud_liability_debit.rb +109 -0
- data/lib/stripe/resources/issuing/personalization_design.rb +333 -0
- data/lib/stripe/resources/issuing/physical_bundle.rb +76 -0
- data/lib/stripe/resources/issuing/settlement.rb +65 -0
- data/lib/stripe/resources/issuing/token.rb +221 -0
- data/lib/stripe/resources/issuing/transaction.rb +1098 -0
- data/lib/stripe/resources/line_item.rb +98 -0
- data/lib/stripe/resources/login_link.rb +9 -0
- data/lib/stripe/resources/mandate.rb +214 -0
- data/lib/stripe/resources/margin.rb +143 -0
- data/lib/stripe/resources/order.rb +3238 -0
- data/lib/stripe/resources/payment_attempt_record.rb +226 -0
- data/lib/stripe/resources/payment_intent.rb +14630 -0
- data/lib/stripe/resources/payment_link.rb +1761 -0
- data/lib/stripe/resources/payment_method.rb +1981 -0
- data/lib/stripe/resources/payment_method_configuration.rb +3137 -0
- data/lib/stripe/resources/payment_method_domain.rb +176 -0
- data/lib/stripe/resources/payment_record.rb +824 -0
- data/lib/stripe/resources/payout.rb +267 -0
- data/lib/stripe/resources/person.rb +353 -0
- data/lib/stripe/resources/plan.rb +386 -0
- data/lib/stripe/resources/price.rb +782 -0
- data/lib/stripe/resources/product.rb +636 -0
- data/lib/stripe/resources/product_feature.rb +16 -0
- data/lib/stripe/resources/promotion_code.rb +261 -0
- data/lib/stripe/resources/quote.rb +3404 -0
- data/lib/stripe/resources/quote_line.rb +340 -0
- data/lib/stripe/resources/quote_preview_invoice.rb +833 -0
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +463 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +93 -0
- data/lib/stripe/resources/radar/value_list.rb +151 -0
- data/lib/stripe/resources/radar/value_list_item.rb +113 -0
- data/lib/stripe/resources/refund.rb +489 -0
- data/lib/stripe/resources/reporting/report_run.rb +182 -0
- data/lib/stripe/resources/reporting/report_type.rb +44 -0
- data/lib/stripe/resources/reserve_transaction.rb +26 -0
- data/lib/stripe/resources/reversal.rb +30 -0
- data/lib/stripe/resources/review.rb +135 -0
- data/lib/stripe/resources/setup_attempt.rb +474 -0
- data/lib/stripe/resources/setup_intent.rb +4371 -0
- data/lib/stripe/resources/shipping_rate.rb +303 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +67 -0
- data/lib/stripe/resources/source.rb +1571 -0
- data/lib/stripe/resources/source_mandate_notification.rb +79 -0
- data/lib/stripe/resources/source_transaction.rb +114 -0
- data/lib/stripe/resources/subscription.rb +2395 -0
- data/lib/stripe/resources/subscription_item.rb +502 -0
- data/lib/stripe/resources/subscription_schedule.rb +2790 -0
- data/lib/stripe/resources/tax/association.rb +100 -0
- data/lib/stripe/resources/tax/calculation.rb +474 -0
- data/lib/stripe/resources/tax/calculation_line_item.rb +76 -0
- data/lib/stripe/resources/tax/form.rb +253 -0
- data/lib/stripe/resources/tax/registration.rb +2174 -0
- data/lib/stripe/resources/tax/settings.rb +146 -0
- data/lib/stripe/resources/tax/transaction.rb +332 -0
- data/lib/stripe/resources/tax/transaction_line_item.rb +43 -0
- data/lib/stripe/resources/tax_code.rb +41 -0
- data/lib/stripe/resources/tax_deducted_at_source.rb +26 -0
- data/lib/stripe/resources/tax_id.rb +147 -0
- data/lib/stripe/resources/tax_rate.rb +245 -0
- data/lib/stripe/resources/terminal/configuration.rb +1175 -0
- data/lib/stripe/resources/terminal/connection_token.rb +21 -0
- data/lib/stripe/resources/terminal/location.rb +208 -0
- data/lib/stripe/resources/terminal/reader.rb +911 -0
- data/lib/stripe/resources/terminal/reader_collected_data.rb +45 -0
- data/lib/stripe/resources/test_helpers/test_clock.rb +101 -0
- data/lib/stripe/resources/token.rb +1337 -0
- data/lib/stripe/resources/topup.rb +210 -0
- data/lib/stripe/resources/transfer.rb +188 -0
- data/lib/stripe/resources/treasury/credit_reversal.rb +113 -0
- data/lib/stripe/resources/treasury/debit_reversal.rb +126 -0
- data/lib/stripe/resources/treasury/financial_account.rb +766 -0
- data/lib/stripe/resources/treasury/financial_account_features.rb +237 -0
- data/lib/stripe/resources/treasury/inbound_transfer.rb +285 -0
- data/lib/stripe/resources/treasury/outbound_payment.rb +587 -0
- data/lib/stripe/resources/treasury/outbound_transfer.rb +428 -0
- data/lib/stripe/resources/treasury/received_credit.rb +335 -0
- data/lib/stripe/resources/treasury/received_debit.rb +298 -0
- data/lib/stripe/resources/treasury/transaction.rb +215 -0
- data/lib/stripe/resources/treasury/transaction_entry.rb +193 -0
- data/lib/stripe/resources/usage_record.rb +18 -0
- data/lib/stripe/resources/usage_record_summary.rb +28 -0
- data/lib/stripe/resources/v2/amount.rb +9 -0
- data/lib/stripe/resources/v2/billing/meter_event.rb +24 -0
- data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +28 -0
- data/lib/stripe/resources/v2/billing/meter_event_session.rb +19 -0
- data/lib/stripe/resources/v2/event.rb +35 -0
- data/lib/stripe/resources/v2/event_destination.rb +78 -0
- data/lib/stripe/resources/webhook_endpoint.rb +148 -0
- data/lib/stripe/resources.rb +31 -0
- data/lib/stripe/services/account_capability_service.rb +33 -0
- data/lib/stripe/services/account_external_account_service.rb +293 -0
- data/lib/stripe/services/account_link_service.rb +53 -0
- data/lib/stripe/services/account_login_link_service.rb +9 -0
- data/lib/stripe/services/account_notice_service.rb +110 -0
- data/lib/stripe/services/account_person_service.rb +1014 -0
- data/lib/stripe/services/account_service.rb +4862 -0
- data/lib/stripe/services/account_session_service.rb +740 -0
- data/lib/stripe/services/apple_pay_domain_service.rb +56 -0
- data/lib/stripe/services/application_fee_refund_service.rb +60 -0
- data/lib/stripe/services/application_fee_service.rb +65 -0
- data/lib/stripe/services/apps/secret_service.rb +132 -0
- data/lib/stripe/services/balance_service.rb +9 -0
- data/lib/stripe/services/balance_transaction_service.rb +80 -0
- data/lib/stripe/services/billing/alert_service.rb +125 -0
- data/lib/stripe/services/billing/credit_balance_summary_service.rb +41 -0
- data/lib/stripe/services/billing/credit_balance_transaction_service.rb +45 -0
- data/lib/stripe/services/billing/credit_grant_service.rb +167 -0
- data/lib/stripe/services/billing/meter_event_adjustment_service.rb +29 -0
- data/lib/stripe/services/billing/meter_event_service.rb +25 -0
- data/lib/stripe/services/billing/meter_event_summary_service.rb +46 -0
- data/lib/stripe/services/billing/meter_service.rb +142 -0
- data/lib/stripe/services/billing_portal/configuration_service.rb +492 -0
- data/lib/stripe/services/billing_portal/session_service.rb +192 -0
- data/lib/stripe/services/capital/financing_offer_service.rb +121 -0
- data/lib/stripe/services/capital/financing_summary_service.rb +28 -0
- data/lib/stripe/services/capital/financing_transaction_service.rb +86 -0
- data/lib/stripe/services/capital_service.rb +15 -0
- data/lib/stripe/services/charge_service.rb +2010 -0
- data/lib/stripe/services/checkout/session_line_item_service.rb +21 -0
- data/lib/stripe/services/checkout/session_service.rb +2736 -0
- data/lib/stripe/services/climate/order_service.rb +113 -0
- data/lib/stripe/services/climate/product_service.rb +30 -0
- data/lib/stripe/services/climate/supplier_service.rb +30 -0
- data/lib/stripe/services/confirmation_token_service.rb +9 -0
- data/lib/stripe/services/country_spec_service.rb +30 -0
- data/lib/stripe/services/coupon_service.rb +174 -0
- data/lib/stripe/services/credit_note_line_item_service.rb +21 -0
- data/lib/stripe/services/credit_note_preview_lines_service.rb +184 -0
- data/lib/stripe/services/credit_note_service.rb +434 -0
- data/lib/stripe/services/customer_balance_transaction_service.rb +72 -0
- data/lib/stripe/services/customer_cash_balance_service.rb +30 -0
- data/lib/stripe/services/customer_cash_balance_transaction_service.rb +30 -0
- data/lib/stripe/services/customer_funding_instructions_service.rb +47 -0
- data/lib/stripe/services/customer_payment_method_service.rb +45 -0
- data/lib/stripe/services/customer_payment_source_service.rb +208 -0
- data/lib/stripe/services/customer_service.rb +684 -0
- data/lib/stripe/services/customer_session_service.rb +106 -0
- data/lib/stripe/services/customer_tax_id_service.rb +50 -0
- data/lib/stripe/services/dispute_service.rb +439 -0
- data/lib/stripe/services/entitlements/active_entitlement_service.rb +40 -0
- data/lib/stripe/services/entitlements/feature_service.rb +87 -0
- data/lib/stripe/services/ephemeral_key_service.rb +40 -0
- data/lib/stripe/services/event_service.rb +75 -0
- data/lib/stripe/services/exchange_rate_service.rb +30 -0
- data/lib/stripe/services/file_link_service.rb +108 -0
- data/lib/stripe/services/file_service.rb +102 -0
- data/lib/stripe/services/financial_connections/account_inferred_balance_service.rb +40 -0
- data/lib/stripe/services/financial_connections/account_owner_service.rb +31 -0
- data/lib/stripe/services/financial_connections/account_service.rb +108 -1
- data/lib/stripe/services/financial_connections/institution_service.rb +60 -0
- data/lib/stripe/services/financial_connections/session_service.rb +108 -0
- data/lib/stripe/services/financial_connections/transaction_service.rb +79 -0
- data/lib/stripe/services/financial_connections_service.rb +2 -1
- data/lib/stripe/services/forwarding/request_service.rb +120 -0
- data/lib/stripe/services/gift_cards/card_service.rb +183 -0
- data/lib/stripe/services/gift_cards/transaction_service.rb +225 -0
- data/lib/stripe/services/gift_cards_service.rb +14 -0
- data/lib/stripe/services/identity/verification_report_service.rb +75 -0
- data/lib/stripe/services/identity/verification_session_service.rb +261 -0
- data/lib/stripe/services/invoice_item_service.rb +454 -0
- data/lib/stripe/services/invoice_line_item_service.rb +277 -0
- data/lib/stripe/services/invoice_payment_service.rb +58 -0
- data/lib/stripe/services/invoice_rendering_template_service.rb +56 -0
- data/lib/stripe/services/invoice_service.rb +6375 -1
- data/lib/stripe/services/invoice_upcoming_lines_service.rb +2142 -0
- data/lib/stripe/services/issuing/authorization_service.rb +118 -0
- data/lib/stripe/services/issuing/card_service.rb +525 -0
- data/lib/stripe/services/issuing/cardholder_service.rb +599 -0
- data/lib/stripe/services/issuing/credit_underwriting_record_service.rb +560 -0
- data/lib/stripe/services/issuing/dispute_service.rb +731 -0
- data/lib/stripe/services/issuing/dispute_settlement_detail_service.rb +70 -0
- data/lib/stripe/services/issuing/fraud_liability_debit_service.rb +90 -0
- data/lib/stripe/services/issuing/personalization_design_service.rb +222 -0
- data/lib/stripe/services/issuing/physical_bundle_service.rb +45 -0
- data/lib/stripe/services/issuing/token_service.rb +83 -0
- data/lib/stripe/services/issuing/transaction_service.rb +93 -0
- data/lib/stripe/services/issuing_service.rb +5 -1
- data/lib/stripe/services/mandate_service.rb +9 -0
- data/lib/stripe/services/margin_service.rb +130 -0
- data/lib/stripe/services/order_line_item_service.rb +38 -0
- data/lib/stripe/services/order_service.rb +2518 -0
- data/lib/stripe/services/payment_attempt_record_service.rb +50 -0
- data/lib/stripe/services/payment_intent_service.rb +12203 -0
- data/lib/stripe/services/payment_link_line_item_service.rb +21 -0
- data/lib/stripe/services/payment_link_service.rb +1343 -0
- data/lib/stripe/services/payment_method_configuration_service.rb +2148 -0
- data/lib/stripe/services/payment_method_domain_service.rb +84 -0
- data/lib/stripe/services/payment_method_service.rb +977 -0
- data/lib/stripe/services/payment_record_service.rb +610 -0
- data/lib/stripe/services/payout_service.rb +182 -0
- data/lib/stripe/services/plan_service.rb +296 -0
- data/lib/stripe/services/price_service.rb +603 -0
- data/lib/stripe/services/product_feature_service.rb +46 -0
- data/lib/stripe/services/product_service.rb +533 -0
- data/lib/stripe/services/promotion_code_service.rb +203 -0
- data/lib/stripe/services/quote_computed_upfront_line_items_service.rb +21 -0
- data/lib/stripe/services/quote_line_item_service.rb +21 -0
- data/lib/stripe/services/quote_line_service.rb +38 -0
- data/lib/stripe/services/quote_preview_invoice_service.rb +38 -0
- data/lib/stripe/services/quote_preview_subscription_schedule_service.rb +38 -0
- data/lib/stripe/services/quote_service.rb +2628 -1
- data/lib/stripe/services/radar/early_fraud_warning_service.rb +70 -0
- data/lib/stripe/services/radar/value_list_item_service.rb +90 -0
- data/lib/stripe/services/radar/value_list_service.rb +119 -0
- data/lib/stripe/services/refund_service.rb +158 -0
- data/lib/stripe/services/reporting/report_run_service.rb +122 -0
- data/lib/stripe/services/reporting/report_type_service.rb +18 -0
- data/lib/stripe/services/review_service.rb +63 -0
- data/lib/stripe/services/setup_attempt_service.rb +59 -0
- data/lib/stripe/services/setup_intent_service.rb +3923 -0
- data/lib/stripe/services/shipping_rate_service.rb +227 -0
- data/lib/stripe/services/sigma/scheduled_query_run_service.rb +30 -0
- data/lib/stripe/services/source_service.rb +693 -0
- data/lib/stripe/services/source_transaction_service.rb +21 -0
- data/lib/stripe/services/subscription_item_service.rb +439 -0
- data/lib/stripe/services/subscription_item_usage_record_service.rb +21 -0
- data/lib/stripe/services/subscription_item_usage_record_summary_service.rb +21 -0
- data/lib/stripe/services/subscription_schedule_service.rb +2343 -0
- data/lib/stripe/services/subscription_service.rb +1967 -0
- data/lib/stripe/services/tax/association_service.rb +32 -0
- data/lib/stripe/services/tax/calculation_line_item_service.rb +21 -0
- data/lib/stripe/services/tax/calculation_service.rb +235 -0
- data/lib/stripe/services/tax/form_service.rb +107 -0
- data/lib/stripe/services/tax/registration_service.rb +1398 -0
- data/lib/stripe/services/tax/settings_service.rb +82 -0
- data/lib/stripe/services/tax/transaction_line_item_service.rb +21 -0
- data/lib/stripe/services/tax/transaction_service.rb +128 -0
- data/lib/stripe/services/tax_code_service.rb +30 -0
- data/lib/stripe/services/tax_id_service.rb +90 -0
- data/lib/stripe/services/tax_rate_service.rb +182 -0
- data/lib/stripe/services/tax_service.rb +3 -1
- data/lib/stripe/services/terminal/configuration_service.rb +901 -0
- data/lib/stripe/services/terminal/connection_token_service.rb +13 -0
- data/lib/stripe/services/terminal/location_service.rb +165 -0
- data/lib/stripe/services/terminal/reader_collected_data_service.rb +28 -0
- data/lib/stripe/services/terminal/reader_service.rb +496 -0
- data/lib/stripe/services/terminal_service.rb +2 -1
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +762 -0
- data/lib/stripe/services/test_helpers/customer_service.rb +21 -0
- data/lib/stripe/services/test_helpers/issuing/authorization_service.rb +844 -0
- data/lib/stripe/services/test_helpers/issuing/card_service.rb +45 -0
- data/lib/stripe/services/test_helpers/issuing/personalization_design_service.rb +43 -0
- data/lib/stripe/services/test_helpers/issuing/transaction_service.rb +723 -0
- data/lib/stripe/services/test_helpers/refund_service.rb +9 -0
- data/lib/stripe/services/test_helpers/terminal/reader_service.rb +48 -0
- data/lib/stripe/services/test_helpers/test_clock_service.rb +63 -0
- data/lib/stripe/services/test_helpers/treasury/inbound_transfer_service.rb +39 -0
- data/lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb +93 -0
- data/lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb +93 -0
- data/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +95 -0
- data/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +95 -0
- data/lib/stripe/services/token_service.rb +1301 -0
- data/lib/stripe/services/topup_service.rb +163 -0
- data/lib/stripe/services/transfer_reversal_service.rb +74 -0
- data/lib/stripe/services/transfer_service.rb +138 -0
- data/lib/stripe/services/treasury/credit_reversal_service.rb +67 -0
- data/lib/stripe/services/treasury/debit_reversal_service.rb +72 -0
- data/lib/stripe/services/treasury/financial_account_features_service.rb +179 -0
- data/lib/stripe/services/treasury/financial_account_service.rb +481 -0
- data/lib/stripe/services/treasury/inbound_transfer_service.rb +100 -0
- data/lib/stripe/services/treasury/outbound_payment_service.rb +296 -0
- data/lib/stripe/services/treasury/outbound_transfer_service.rb +147 -0
- data/lib/stripe/services/treasury/received_credit_service.rb +58 -0
- data/lib/stripe/services/treasury/received_debit_service.rb +45 -0
- data/lib/stripe/services/treasury/transaction_entry_service.rb +101 -0
- data/lib/stripe/services/treasury/transaction_service.rb +109 -0
- data/lib/stripe/services/v1_services.rb +8 -1
- data/lib/stripe/services/v2/billing/meter_event_adjustment_service.rb +25 -0
- data/lib/stripe/services/v2/billing/meter_event_service.rb +28 -0
- data/lib/stripe/services/v2/billing/meter_event_session_service.rb +3 -0
- data/lib/stripe/services/v2/billing/meter_event_stream_service.rb +36 -0
- data/lib/stripe/services/v2/core/event_destination_service.rb +164 -0
- data/lib/stripe/services/v2/core/event_service.rb +20 -0
- data/lib/stripe/services/webhook_endpoint_service.rb +110 -0
- data/lib/stripe/services.rb +25 -0
- data/lib/stripe/stripe_client.rb +2 -2
- data/lib/stripe/stripe_configuration.rb +3 -1
- data/lib/stripe/stripe_object.rb +8 -3
- data/lib/stripe/util.rb +8 -2
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +46 -0
- data/rbi/stripe/resources/account.rbi +6072 -0
- data/rbi/stripe/resources/account_link.rbi +87 -0
- data/rbi/stripe/resources/account_notice.rbi +166 -0
- data/rbi/stripe/resources/account_session.rbi +1173 -0
- data/rbi/stripe/resources/apple_pay_domain.rbi +111 -0
- data/rbi/stripe/resources/application.rbi +23 -0
- data/rbi/stripe/resources/application_fee.rbi +151 -0
- data/rbi/stripe/resources/application_fee_refund.rbi +44 -0
- data/rbi/stripe/resources/apps/secret.rbi +229 -0
- data/rbi/stripe/resources/balance.rbi +220 -0
- data/rbi/stripe/resources/balance_transaction.rbi +182 -0
- data/rbi/stripe/resources/bank_account.rbi +156 -0
- data/rbi/stripe/resources/billing/alert.rbi +237 -0
- data/rbi/stripe/resources/billing/alert_triggered.rbi +33 -0
- data/rbi/stripe/resources/billing/credit_balance_summary.rbi +118 -0
- data/rbi/stripe/resources/billing/credit_balance_transaction.rbi +181 -0
- data/rbi/stripe/resources/billing/credit_grant.rbi +312 -0
- data/rbi/stripe/resources/billing/meter.rbi +268 -0
- data/rbi/stripe/resources/billing/meter_error_report.rbi +82 -0
- data/rbi/stripe/resources/billing/meter_event.rbi +76 -0
- data/rbi/stripe/resources/billing/meter_event_adjustment.rbi +75 -0
- data/rbi/stripe/resources/billing/meter_event_summary.rbi +39 -0
- data/rbi/stripe/resources/billing_portal/configuration.rbi +746 -0
- data/rbi/stripe/resources/billing_portal/session.rbi +396 -0
- data/rbi/stripe/resources/capability.rbi +152 -0
- data/rbi/stripe/resources/capital/financing_offer.rbi +228 -0
- data/rbi/stripe/resources/capital/financing_summary.rbi +89 -0
- data/rbi/stripe/resources/capital/financing_transaction.rbi +157 -0
- data/rbi/stripe/resources/card.rbi +159 -0
- data/rbi/stripe/resources/cash_balance.rbi +37 -0
- data/rbi/stripe/resources/charge.rbi +4216 -0
- data/rbi/stripe/resources/checkout/session.rbi +4627 -0
- data/rbi/stripe/resources/climate/order.rbi +298 -0
- data/rbi/stripe/resources/climate/product.rbi +98 -0
- data/rbi/stripe/resources/climate/supplier.rbi +95 -0
- data/rbi/stripe/resources/confirmation_token.rbi +2137 -0
- data/rbi/stripe/resources/connect_collection_transfer.rbi +31 -0
- data/rbi/stripe/resources/country_spec.rbi +108 -0
- data/rbi/stripe/resources/coupon.rbi +305 -0
- data/rbi/stripe/resources/credit_note.rbi +918 -0
- data/rbi/stripe/resources/credit_note_line_item.rbi +123 -0
- data/rbi/stripe/resources/customer.rbi +1188 -0
- data/rbi/stripe/resources/customer_balance_transaction.rbi +65 -0
- data/rbi/stripe/resources/customer_cash_balance_transaction.rbi +178 -0
- data/rbi/stripe/resources/customer_session.rbi +227 -0
- data/rbi/stripe/resources/discount.rbi +65 -0
- data/rbi/stripe/resources/dispute.rbi +926 -0
- data/rbi/stripe/resources/entitlements/active_entitlement.rbi +76 -0
- data/rbi/stripe/resources/entitlements/active_entitlement_summary.rbi +26 -0
- data/rbi/stripe/resources/entitlements/feature.rbi +146 -0
- data/rbi/stripe/resources/ephemeral_key.rbi +51 -0
- data/rbi/stripe/resources/event.rbi +221 -0
- data/rbi/stripe/resources/exchange_rate.rbi +81 -0
- data/rbi/stripe/resources/file.rbi +177 -0
- data/rbi/stripe/resources/file_link.rbi +174 -0
- data/rbi/stripe/resources/financial_connections/account.rbi +414 -0
- data/rbi/stripe/resources/financial_connections/account_inferred_balance.rbi +30 -0
- data/rbi/stripe/resources/financial_connections/account_owner.rbi +42 -0
- data/rbi/stripe/resources/financial_connections/account_ownership.rbi +26 -0
- data/rbi/stripe/resources/financial_connections/institution.rbi +115 -0
- data/rbi/stripe/resources/financial_connections/session.rbi +221 -0
- data/rbi/stripe/resources/financial_connections/transaction.rbi +153 -0
- data/rbi/stripe/resources/forwarding/request.rbi +257 -0
- data/rbi/stripe/resources/funding_instructions.rbi +544 -0
- data/rbi/stripe/resources/gift_cards/card.rbi +242 -0
- data/rbi/stripe/resources/gift_cards/transaction.rbi +298 -0
- data/rbi/stripe/resources/identity/verification_report.rbi +427 -0
- data/rbi/stripe/resources/identity/verification_session.rbi +601 -0
- data/rbi/stripe/resources/invoice.rbi +10584 -0
- data/rbi/stripe/resources/invoice_item.rbi +621 -0
- data/rbi/stripe/resources/invoice_line_item.rbi +486 -0
- data/rbi/stripe/resources/invoice_payment.rbi +86 -0
- data/rbi/stripe/resources/invoice_rendering_template.rbi +131 -0
- data/rbi/stripe/resources/issuing/authorization.rbi +1511 -0
- data/rbi/stripe/resources/issuing/card.rbi +891 -0
- data/rbi/stripe/resources/issuing/cardholder.rbi +870 -0
- data/rbi/stripe/resources/issuing/credit_underwriting_record.rbi +731 -0
- data/rbi/stripe/resources/issuing/dispute.rbi +1077 -0
- data/rbi/stripe/resources/issuing/dispute_settlement_detail.rbi +100 -0
- data/rbi/stripe/resources/issuing/fraud_liability_debit.rbi +108 -0
- data/rbi/stripe/resources/issuing/personalization_design.rbi +395 -0
- data/rbi/stripe/resources/issuing/physical_bundle.rbi +102 -0
- data/rbi/stripe/resources/issuing/settlement.rbi +78 -0
- data/rbi/stripe/resources/issuing/token.rbi +282 -0
- data/rbi/stripe/resources/issuing/transaction.rbi +1262 -0
- data/rbi/stripe/resources/line_item.rbi +131 -0
- data/rbi/stripe/resources/login_link.rbi +20 -0
- data/rbi/stripe/resources/mandate.rbi +266 -0
- data/rbi/stripe/resources/margin.rbi +151 -0
- data/rbi/stripe/resources/order.rbi +3505 -0
- data/rbi/stripe/resources/payment_attempt_record.rbi +260 -0
- data/rbi/stripe/resources/payment_intent.rbi +16064 -0
- data/rbi/stripe/resources/payment_link.rbi +1943 -0
- data/rbi/stripe/resources/payment_method.rbi +2287 -0
- data/rbi/stripe/resources/payment_method_configuration.rbi +3657 -0
- data/rbi/stripe/resources/payment_method_domain.rbi +246 -0
- data/rbi/stripe/resources/payment_record.rbi +856 -0
- data/rbi/stripe/resources/payout.rbi +357 -0
- data/rbi/stripe/resources/person.rbi +461 -0
- data/rbi/stripe/resources/plan.rbi +463 -0
- data/rbi/stripe/resources/price.rbi +884 -0
- data/rbi/stripe/resources/product.rbi +735 -0
- data/rbi/stripe/resources/product_feature.rbi +30 -0
- data/rbi/stripe/resources/promotion_code.rbi +316 -0
- data/rbi/stripe/resources/quote.rbi +3779 -0
- data/rbi/stripe/resources/quote_line.rbi +416 -0
- data/rbi/stripe/resources/quote_preview_invoice.rbi +1030 -0
- data/rbi/stripe/resources/quote_preview_subscription_schedule.rbi +575 -0
- data/rbi/stripe/resources/radar/early_fraud_warning.rbi +121 -0
- data/rbi/stripe/resources/radar/value_list.rbi +207 -0
- data/rbi/stripe/resources/radar/value_list_item.rbi +157 -0
- data/rbi/stripe/resources/refund.rbi +615 -0
- data/rbi/stripe/resources/reporting/report_run.rbi +232 -0
- data/rbi/stripe/resources/reporting/report_type.rbi +75 -0
- data/rbi/stripe/resources/reserve_transaction.rbi +27 -0
- data/rbi/stripe/resources/reversal.rbi +60 -0
- data/rbi/stripe/resources/review.rbi +191 -0
- data/rbi/stripe/resources/setup_attempt.rbi +587 -0
- data/rbi/stripe/resources/setup_intent.rbi +4726 -0
- data/rbi/stripe/resources/shipping_rate.rbi +367 -0
- data/rbi/stripe/resources/sigma/scheduled_query_run.rbi +98 -0
- data/rbi/stripe/resources/source.rbi +1899 -0
- data/rbi/stripe/resources/source_mandate_notification.rbi +90 -0
- data/rbi/stripe/resources/source_transaction.rbi +156 -0
- data/rbi/stripe/resources/subscription.rbi +2739 -0
- data/rbi/stripe/resources/subscription_item.rbi +566 -0
- data/rbi/stripe/resources/subscription_schedule.rbi +3157 -0
- data/rbi/stripe/resources/tax/association.rbi +107 -0
- data/rbi/stripe/resources/tax/calculation.rbi +577 -0
- data/rbi/stripe/resources/tax/calculation_line_item.rbi +108 -0
- data/rbi/stripe/resources/tax/form.rbi +262 -0
- data/rbi/stripe/resources/tax/registration.rbi +2354 -0
- data/rbi/stripe/resources/tax/settings.rbi +174 -0
- data/rbi/stripe/resources/tax/transaction.rbi +428 -0
- data/rbi/stripe/resources/tax/transaction_line_item.rbi +66 -0
- data/rbi/stripe/resources/tax_code.rbi +60 -0
- data/rbi/stripe/resources/tax_deducted_at_source.rbi +27 -0
- data/rbi/stripe/resources/tax_id.rbi +206 -0
- data/rbi/stripe/resources/tax_rate.rbi +295 -0
- data/rbi/stripe/resources/terminal/configuration.rbi +1302 -0
- data/rbi/stripe/resources/terminal/connection_token.rbi +42 -0
- data/rbi/stripe/resources/terminal/location.rbi +271 -0
- data/rbi/stripe/resources/terminal/reader.rbi +1110 -0
- data/rbi/stripe/resources/terminal/reader_collected_data.rbi +48 -0
- data/rbi/stripe/resources/test_helpers/test_clock.rbi +159 -0
- data/rbi/stripe/resources/token.rbi +1405 -0
- data/rbi/stripe/resources/topup.rbi +269 -0
- data/rbi/stripe/resources/transfer.rbi +245 -0
- data/rbi/stripe/resources/treasury/credit_reversal.rbi +151 -0
- data/rbi/stripe/resources/treasury/debit_reversal.rbi +165 -0
- data/rbi/stripe/resources/treasury/financial_account.rbi +924 -0
- data/rbi/stripe/resources/treasury/financial_account_features.rbi +309 -0
- data/rbi/stripe/resources/treasury/inbound_transfer.rbi +361 -0
- data/rbi/stripe/resources/treasury/outbound_payment.rbi +702 -0
- data/rbi/stripe/resources/treasury/outbound_transfer.rbi +529 -0
- data/rbi/stripe/resources/treasury/received_credit.rbi +408 -0
- data/rbi/stripe/resources/treasury/received_debit.rbi +367 -0
- data/rbi/stripe/resources/treasury/transaction.rbi +261 -0
- data/rbi/stripe/resources/treasury/transaction_entry.rbi +234 -0
- data/rbi/stripe/resources/usage_record.rbi +37 -0
- data/rbi/stripe/resources/usage_record_summary.rbi +45 -0
- data/rbi/stripe/resources/v2/amount.rbi +14 -0
- data/rbi/stripe/resources/v2/billing/meter_event.rbi +43 -0
- data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +48 -0
- data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +36 -0
- data/rbi/stripe/resources/v2/event.rbi +55 -0
- data/rbi/stripe/resources/v2/event_destination.rbi +109 -0
- data/rbi/stripe/resources/webhook_endpoint.rbi +208 -0
- data/rbi/stripe/services/account_capability_service.rbi +55 -0
- data/rbi/stripe/services/account_external_account_service.rbi +358 -0
- data/rbi/stripe/services/account_link_service.rbi +67 -0
- data/rbi/stripe/services/account_login_link_service.rbi +23 -0
- data/rbi/stripe/services/account_notice_service.rbi +103 -0
- data/rbi/stripe/services/account_person_service.rbi +1077 -0
- data/rbi/stripe/services/account_service.rbi +4948 -0
- data/rbi/stripe/services/account_session_service.rbi +873 -0
- data/rbi/stripe/services/apple_pay_domain_service.rbi +86 -0
- data/rbi/stripe/services/application_fee_refund_service.rbi +101 -0
- data/rbi/stripe/services/application_fee_service.rbi +85 -0
- data/rbi/stripe/services/apps/secret_service.rbi +175 -0
- data/rbi/stripe/services/apps_service.rbi +9 -0
- data/rbi/stripe/services/balance_service.rbi +22 -0
- data/rbi/stripe/services/balance_transaction_service.rbi +103 -0
- data/rbi/stripe/services/billing/alert_service.rbi +172 -0
- data/rbi/stripe/services/billing/credit_balance_summary_service.rbi +61 -0
- data/rbi/stripe/services/billing/credit_balance_transaction_service.rbi +66 -0
- data/rbi/stripe/services/billing/credit_grant_service.rbi +217 -0
- data/rbi/stripe/services/billing/meter_event_adjustment_service.rbi +45 -0
- data/rbi/stripe/services/billing/meter_event_service.rbi +47 -0
- data/rbi/stripe/services/billing/meter_event_summary_service.rbi +62 -0
- data/rbi/stripe/services/billing/meter_service.rbi +184 -0
- data/rbi/stripe/services/billing_portal/configuration_service.rbi +573 -0
- data/rbi/stripe/services/billing_portal/session_service.rbi +233 -0
- data/rbi/stripe/services/billing_portal_service.rbi +10 -0
- data/rbi/stripe/services/billing_service.rbi +15 -0
- data/rbi/stripe/services/capital/financing_offer_service.rbi +108 -0
- data/rbi/stripe/services/capital/financing_summary_service.rbi +23 -0
- data/rbi/stripe/services/capital/financing_transaction_service.rbi +77 -0
- data/rbi/stripe/services/capital_service.rbi +11 -0
- data/rbi/stripe/services/charge_service.rbi +2162 -0
- data/rbi/stripe/services/checkout/session_line_item_service.rbi +37 -0
- data/rbi/stripe/services/checkout/session_service.rbi +2975 -0
- data/rbi/stripe/services/checkout_service.rbi +9 -0
- data/rbi/stripe/services/climate/order_service.rbi +158 -0
- data/rbi/stripe/services/climate/product_service.rbi +51 -0
- data/rbi/stripe/services/climate/supplier_service.rbi +51 -0
- data/rbi/stripe/services/climate_service.rbi +11 -0
- data/rbi/stripe/services/confirmation_token_service.rbi +21 -0
- data/rbi/stripe/services/country_spec_service.rbi +49 -0
- data/rbi/stripe/services/coupon_service.rbi +220 -0
- data/rbi/stripe/services/credit_note_line_item_service.rbi +35 -0
- data/rbi/stripe/services/credit_note_preview_lines_service.rbi +200 -0
- data/rbi/stripe/services/credit_note_service.rbi +496 -0
- data/rbi/stripe/services/customer_balance_transaction_service.rbi +105 -0
- data/rbi/stripe/services/customer_cash_balance_service.rbi +49 -0
- data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +49 -0
- data/rbi/stripe/services/customer_funding_instructions_service.rbi +67 -0
- data/rbi/stripe/services/customer_payment_method_service.rbi +64 -0
- data/rbi/stripe/services/customer_payment_source_service.rbi +265 -0
- data/rbi/stripe/services/customer_service.rbi +763 -0
- data/rbi/stripe/services/customer_session_service.rbi +126 -0
- data/rbi/stripe/services/customer_tax_id_service.rbi +80 -0
- data/rbi/stripe/services/dispute_service.rbi +500 -0
- data/rbi/stripe/services/entitlements/active_entitlement_service.rbi +61 -0
- data/rbi/stripe/services/entitlements/feature_service.rbi +122 -0
- data/rbi/stripe/services/entitlements_service.rbi +10 -0
- data/rbi/stripe/services/ephemeral_key_service.rbi +59 -0
- data/rbi/stripe/services/event_service.rbi +94 -0
- data/rbi/stripe/services/exchange_rate_service.rbi +49 -0
- data/rbi/stripe/services/file_link_service.rbi +141 -0
- data/rbi/stripe/services/file_service.rbi +132 -0
- data/rbi/stripe/services/financial_connections/account_inferred_balance_service.rbi +37 -0
- data/rbi/stripe/services/financial_connections/account_owner_service.rbi +47 -0
- data/rbi/stripe/services/financial_connections/account_service.rbi +148 -0
- data/rbi/stripe/services/financial_connections/institution_service.rbi +51 -0
- data/rbi/stripe/services/financial_connections/session_service.rbi +128 -0
- data/rbi/stripe/services/financial_connections/transaction_service.rbi +103 -0
- data/rbi/stripe/services/financial_connections_service.rbi +12 -0
- data/rbi/stripe/services/forwarding/request_service.rbi +152 -0
- data/rbi/stripe/services/forwarding_service.rbi +9 -0
- data/rbi/stripe/services/gift_cards/card_service.rbi +162 -0
- data/rbi/stripe/services/gift_cards/transaction_service.rbi +198 -0
- data/rbi/stripe/services/gift_cards_service.rbi +10 -0
- data/rbi/stripe/services/identity/verification_report_service.rbi +98 -0
- data/rbi/stripe/services/identity/verification_session_service.rbi +360 -0
- data/rbi/stripe/services/identity_service.rbi +10 -0
- data/rbi/stripe/services/invoice_item_service.rbi +505 -0
- data/rbi/stripe/services/invoice_line_item_service.rbi +320 -0
- data/rbi/stripe/services/invoice_payment_service.rbi +49 -0
- data/rbi/stripe/services/invoice_rendering_template_service.rbi +91 -0
- data/rbi/stripe/services/invoice_service.rbi +7138 -0
- data/rbi/stripe/services/invoice_upcoming_lines_service.rbi +2397 -0
- data/rbi/stripe/services/issuing/authorization_service.rbi +160 -0
- data/rbi/stripe/services/issuing/card_service.rbi +568 -0
- data/rbi/stripe/services/issuing/cardholder_service.rbi +668 -0
- data/rbi/stripe/services/issuing/credit_underwriting_record_service.rbi +580 -0
- data/rbi/stripe/services/issuing/dispute_service.rbi +824 -0
- data/rbi/stripe/services/issuing/dispute_settlement_detail_service.rbi +61 -0
- data/rbi/stripe/services/issuing/fraud_liability_debit_service.rbi +83 -0
- data/rbi/stripe/services/issuing/personalization_design_service.rbi +271 -0
- data/rbi/stripe/services/issuing/physical_bundle_service.rbi +66 -0
- data/rbi/stripe/services/issuing/token_service.rbi +109 -0
- data/rbi/stripe/services/issuing/transaction_service.rbi +119 -0
- data/rbi/stripe/services/issuing_service.rbi +19 -0
- data/rbi/stripe/services/mandate_service.rbi +21 -0
- data/rbi/stripe/services/margin_service.rbi +119 -0
- data/rbi/stripe/services/order_line_item_service.rbi +35 -0
- data/rbi/stripe/services/order_service.rbi +2669 -0
- data/rbi/stripe/services/payment_attempt_record_service.rbi +39 -0
- data/rbi/stripe/services/payment_intent_service.rbi +13193 -0
- data/rbi/stripe/services/payment_link_line_item_service.rbi +35 -0
- data/rbi/stripe/services/payment_link_service.rbi +1447 -0
- data/rbi/stripe/services/payment_method_configuration_service.rbi +2465 -0
- data/rbi/stripe/services/payment_method_domain_service.rbi +123 -0
- data/rbi/stripe/services/payment_method_service.rbi +1032 -0
- data/rbi/stripe/services/payment_record_service.rbi +613 -0
- data/rbi/stripe/services/payout_service.rbi +228 -0
- data/rbi/stripe/services/plan_service.rbi +337 -0
- data/rbi/stripe/services/price_service.rbi +657 -0
- data/rbi/stripe/services/product_feature_service.rbi +76 -0
- data/rbi/stripe/services/product_service.rbi +596 -0
- data/rbi/stripe/services/promotion_code_service.rbi +244 -0
- data/rbi/stripe/services/quote_computed_upfront_line_items_service.rbi +35 -0
- data/rbi/stripe/services/quote_line_item_service.rbi +35 -0
- data/rbi/stripe/services/quote_line_service.rbi +35 -0
- data/rbi/stripe/services/quote_preview_invoice_service.rbi +35 -0
- data/rbi/stripe/services/quote_preview_subscription_schedule_service.rbi +35 -0
- data/rbi/stripe/services/quote_service.rbi +2830 -0
- data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +95 -0
- data/rbi/stripe/services/radar/value_list_item_service.rbi +122 -0
- data/rbi/stripe/services/radar/value_list_service.rbi +160 -0
- data/rbi/stripe/services/radar_service.rbi +11 -0
- data/rbi/stripe/services/refund_service.rbi +208 -0
- data/rbi/stripe/services/reporting/report_run_service.rbi +152 -0
- data/rbi/stripe/services/reporting/report_type_service.rbi +37 -0
- data/rbi/stripe/services/reporting_service.rbi +10 -0
- data/rbi/stripe/services/review_service.rbi +93 -0
- data/rbi/stripe/services/setup_attempt_service.rbi +73 -0
- data/rbi/stripe/services/setup_intent_service.rbi +4204 -0
- data/rbi/stripe/services/shipping_rate_service.rbi +274 -0
- data/rbi/stripe/services/sigma/scheduled_query_run_service.rbi +51 -0
- data/rbi/stripe/services/sigma_service.rbi +9 -0
- data/rbi/stripe/services/source_service.rbi +766 -0
- data/rbi/stripe/services/source_transaction_service.rbi +35 -0
- data/rbi/stripe/services/subscription_item_service.rbi +496 -0
- data/rbi/stripe/services/subscription_item_usage_record_service.rbi +41 -0
- data/rbi/stripe/services/subscription_item_usage_record_summary_service.rbi +37 -0
- data/rbi/stripe/services/subscription_schedule_service.rbi +2613 -0
- data/rbi/stripe/services/subscription_service.rbi +2207 -0
- data/rbi/stripe/services/tax/association_service.rbi +27 -0
- data/rbi/stripe/services/tax/calculation_line_item_service.rbi +37 -0
- data/rbi/stripe/services/tax/calculation_service.rbi +267 -0
- data/rbi/stripe/services/tax/form_service.rbi +96 -0
- data/rbi/stripe/services/tax/registration_service.rbi +1495 -0
- data/rbi/stripe/services/tax/settings_service.rbi +106 -0
- data/rbi/stripe/services/tax/transaction_line_item_service.rbi +37 -0
- data/rbi/stripe/services/tax/transaction_service.rbi +164 -0
- data/rbi/stripe/services/tax_code_service.rbi +49 -0
- data/rbi/stripe/services/tax_id_service.rbi +128 -0
- data/rbi/stripe/services/tax_rate_service.rbi +215 -0
- data/rbi/stripe/services/tax_service.rbi +14 -0
- data/rbi/stripe/services/terminal/configuration_service.rbi +976 -0
- data/rbi/stripe/services/terminal/connection_token_service.rbi +27 -0
- data/rbi/stripe/services/terminal/location_service.rbi +211 -0
- data/rbi/stripe/services/terminal/reader_collected_data_service.rbi +23 -0
- data/rbi/stripe/services/terminal/reader_service.rbi +591 -0
- data/rbi/stripe/services/terminal_service.rbi +13 -0
- data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +892 -0
- data/rbi/stripe/services/test_helpers/customer_service.rbi +37 -0
- data/rbi/stripe/services/test_helpers/issuing/authorization_service.rbi +974 -0
- data/rbi/stripe/services/test_helpers/issuing/card_service.rbi +81 -0
- data/rbi/stripe/services/test_helpers/issuing/personalization_design_service.rbi +73 -0
- data/rbi/stripe/services/test_helpers/issuing/transaction_service.rbi +825 -0
- data/rbi/stripe/services/test_helpers/issuing_service.rbi +14 -0
- data/rbi/stripe/services/test_helpers/refund_service.rbi +23 -0
- data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +69 -0
- data/rbi/stripe/services/test_helpers/terminal_service.rbi +11 -0
- data/rbi/stripe/services/test_helpers/test_clock_service.rbi +100 -0
- data/rbi/stripe/services/test_helpers/treasury/inbound_transfer_service.rbi +69 -0
- data/rbi/stripe/services/test_helpers/treasury/outbound_payment_service.rbi +137 -0
- data/rbi/stripe/services/test_helpers/treasury/outbound_transfer_service.rbi +137 -0
- data/rbi/stripe/services/test_helpers/treasury/received_credit_service.rbi +130 -0
- data/rbi/stripe/services/test_helpers/treasury/received_debit_service.rbi +130 -0
- data/rbi/stripe/services/test_helpers/treasury_service.rbi +15 -0
- data/rbi/stripe/services/test_helpers_service.rbi +15 -0
- data/rbi/stripe/services/token_service.rbi +1357 -0
- data/rbi/stripe/services/topup_service.rbi +200 -0
- data/rbi/stripe/services/transfer_reversal_service.rbi +111 -0
- data/rbi/stripe/services/transfer_service.rbi +174 -0
- data/rbi/stripe/services/treasury/credit_reversal_service.rbi +95 -0
- data/rbi/stripe/services/treasury/debit_reversal_service.rbi +100 -0
- data/rbi/stripe/services/treasury/financial_account_features_service.rbi +226 -0
- data/rbi/stripe/services/treasury/financial_account_service.rbi +577 -0
- data/rbi/stripe/services/treasury/inbound_transfer_service.rbi +133 -0
- data/rbi/stripe/services/treasury/outbound_payment_service.rbi +350 -0
- data/rbi/stripe/services/treasury/outbound_transfer_service.rbi +189 -0
- data/rbi/stripe/services/treasury/received_credit_service.rbi +79 -0
- data/rbi/stripe/services/treasury/received_debit_service.rbi +66 -0
- data/rbi/stripe/services/treasury/transaction_entry_service.rbi +125 -0
- data/rbi/stripe/services/treasury/transaction_service.rbi +133 -0
- data/rbi/stripe/services/treasury_service.rbi +18 -0
- data/rbi/stripe/services/v1_services.rbi +83 -0
- data/rbi/stripe/services/v2/billing/meter_event_adjustment_service.rbi +43 -0
- data/rbi/stripe/services/v2/billing/meter_event_service.rbi +46 -0
- data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +20 -0
- data/rbi/stripe/services/v2/billing/meter_event_stream_service.rbi +60 -0
- data/rbi/stripe/services/v2/billing_service.rbi +14 -0
- data/rbi/stripe/services/v2/core/event_destination_service.rbi +228 -0
- data/rbi/stripe/services/v2/core/event_service.rbi +42 -0
- data/rbi/stripe/services/v2/core_service.rbi +12 -0
- data/rbi/stripe/services/v2_services.rbi +10 -0
- data/rbi/stripe/services/webhook_endpoint_service.rbi +149 -0
- metadata +435 -4
@@ -18,6 +18,2180 @@ module Stripe
|
|
18
18
|
"tax.registration"
|
19
19
|
end
|
20
20
|
|
21
|
+
class CountryOptions < Stripe::StripeObject
|
22
|
+
class Ae < Stripe::StripeObject
|
23
|
+
# Type of registration in `country`.
|
24
|
+
attr_reader :type
|
25
|
+
end
|
26
|
+
|
27
|
+
class At < Stripe::StripeObject
|
28
|
+
class Standard < Stripe::StripeObject
|
29
|
+
# Place of supply scheme used in an EU standard registration.
|
30
|
+
attr_reader :place_of_supply_scheme
|
31
|
+
end
|
32
|
+
# Attribute for field standard
|
33
|
+
attr_reader :standard
|
34
|
+
|
35
|
+
# Type of registration in an EU country.
|
36
|
+
attr_reader :type
|
37
|
+
end
|
38
|
+
|
39
|
+
class Au < Stripe::StripeObject
|
40
|
+
# Type of registration in `country`.
|
41
|
+
attr_reader :type
|
42
|
+
end
|
43
|
+
|
44
|
+
class Be < Stripe::StripeObject
|
45
|
+
class Standard < Stripe::StripeObject
|
46
|
+
# Place of supply scheme used in an EU standard registration.
|
47
|
+
attr_reader :place_of_supply_scheme
|
48
|
+
end
|
49
|
+
# Attribute for field standard
|
50
|
+
attr_reader :standard
|
51
|
+
|
52
|
+
# Type of registration in an EU country.
|
53
|
+
attr_reader :type
|
54
|
+
end
|
55
|
+
|
56
|
+
class Bg < Stripe::StripeObject
|
57
|
+
class Standard < Stripe::StripeObject
|
58
|
+
# Place of supply scheme used in an EU standard registration.
|
59
|
+
attr_reader :place_of_supply_scheme
|
60
|
+
end
|
61
|
+
# Attribute for field standard
|
62
|
+
attr_reader :standard
|
63
|
+
|
64
|
+
# Type of registration in an EU country.
|
65
|
+
attr_reader :type
|
66
|
+
end
|
67
|
+
|
68
|
+
class Bh < Stripe::StripeObject
|
69
|
+
# Type of registration in `country`.
|
70
|
+
attr_reader :type
|
71
|
+
end
|
72
|
+
|
73
|
+
class By < Stripe::StripeObject
|
74
|
+
# Type of registration in `country`.
|
75
|
+
attr_reader :type
|
76
|
+
end
|
77
|
+
|
78
|
+
class Ca < Stripe::StripeObject
|
79
|
+
class ProvinceStandard < Stripe::StripeObject
|
80
|
+
# Two-letter CA province code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
81
|
+
attr_reader :province
|
82
|
+
end
|
83
|
+
# Attribute for field province_standard
|
84
|
+
attr_reader :province_standard
|
85
|
+
|
86
|
+
# Type of registration in Canada.
|
87
|
+
attr_reader :type
|
88
|
+
end
|
89
|
+
|
90
|
+
class Ch < Stripe::StripeObject
|
91
|
+
# Type of registration in `country`.
|
92
|
+
attr_reader :type
|
93
|
+
end
|
94
|
+
|
95
|
+
class Cl < Stripe::StripeObject
|
96
|
+
# Type of registration in `country`.
|
97
|
+
attr_reader :type
|
98
|
+
end
|
99
|
+
|
100
|
+
class Co < Stripe::StripeObject
|
101
|
+
# Type of registration in `country`.
|
102
|
+
attr_reader :type
|
103
|
+
end
|
104
|
+
|
105
|
+
class Cr < Stripe::StripeObject
|
106
|
+
# Type of registration in `country`.
|
107
|
+
attr_reader :type
|
108
|
+
end
|
109
|
+
|
110
|
+
class Cy < Stripe::StripeObject
|
111
|
+
class Standard < Stripe::StripeObject
|
112
|
+
# Place of supply scheme used in an EU standard registration.
|
113
|
+
attr_reader :place_of_supply_scheme
|
114
|
+
end
|
115
|
+
# Attribute for field standard
|
116
|
+
attr_reader :standard
|
117
|
+
|
118
|
+
# Type of registration in an EU country.
|
119
|
+
attr_reader :type
|
120
|
+
end
|
121
|
+
|
122
|
+
class Cz < Stripe::StripeObject
|
123
|
+
class Standard < Stripe::StripeObject
|
124
|
+
# Place of supply scheme used in an EU standard registration.
|
125
|
+
attr_reader :place_of_supply_scheme
|
126
|
+
end
|
127
|
+
# Attribute for field standard
|
128
|
+
attr_reader :standard
|
129
|
+
|
130
|
+
# Type of registration in an EU country.
|
131
|
+
attr_reader :type
|
132
|
+
end
|
133
|
+
|
134
|
+
class De < Stripe::StripeObject
|
135
|
+
class Standard < Stripe::StripeObject
|
136
|
+
# Place of supply scheme used in an EU standard registration.
|
137
|
+
attr_reader :place_of_supply_scheme
|
138
|
+
end
|
139
|
+
# Attribute for field standard
|
140
|
+
attr_reader :standard
|
141
|
+
|
142
|
+
# Type of registration in an EU country.
|
143
|
+
attr_reader :type
|
144
|
+
end
|
145
|
+
|
146
|
+
class Dk < Stripe::StripeObject
|
147
|
+
class Standard < Stripe::StripeObject
|
148
|
+
# Place of supply scheme used in an EU standard registration.
|
149
|
+
attr_reader :place_of_supply_scheme
|
150
|
+
end
|
151
|
+
# Attribute for field standard
|
152
|
+
attr_reader :standard
|
153
|
+
|
154
|
+
# Type of registration in an EU country.
|
155
|
+
attr_reader :type
|
156
|
+
end
|
157
|
+
|
158
|
+
class Ec < Stripe::StripeObject
|
159
|
+
# Type of registration in `country`.
|
160
|
+
attr_reader :type
|
161
|
+
end
|
162
|
+
|
163
|
+
class Ee < Stripe::StripeObject
|
164
|
+
class Standard < Stripe::StripeObject
|
165
|
+
# Place of supply scheme used in an EU standard registration.
|
166
|
+
attr_reader :place_of_supply_scheme
|
167
|
+
end
|
168
|
+
# Attribute for field standard
|
169
|
+
attr_reader :standard
|
170
|
+
|
171
|
+
# Type of registration in an EU country.
|
172
|
+
attr_reader :type
|
173
|
+
end
|
174
|
+
|
175
|
+
class Eg < Stripe::StripeObject
|
176
|
+
# Type of registration in `country`.
|
177
|
+
attr_reader :type
|
178
|
+
end
|
179
|
+
|
180
|
+
class Es < Stripe::StripeObject
|
181
|
+
class Standard < Stripe::StripeObject
|
182
|
+
# Place of supply scheme used in an EU standard registration.
|
183
|
+
attr_reader :place_of_supply_scheme
|
184
|
+
end
|
185
|
+
# Attribute for field standard
|
186
|
+
attr_reader :standard
|
187
|
+
|
188
|
+
# Type of registration in an EU country.
|
189
|
+
attr_reader :type
|
190
|
+
end
|
191
|
+
|
192
|
+
class Fi < Stripe::StripeObject
|
193
|
+
class Standard < Stripe::StripeObject
|
194
|
+
# Place of supply scheme used in an EU standard registration.
|
195
|
+
attr_reader :place_of_supply_scheme
|
196
|
+
end
|
197
|
+
# Attribute for field standard
|
198
|
+
attr_reader :standard
|
199
|
+
|
200
|
+
# Type of registration in an EU country.
|
201
|
+
attr_reader :type
|
202
|
+
end
|
203
|
+
|
204
|
+
class Fr < Stripe::StripeObject
|
205
|
+
class Standard < Stripe::StripeObject
|
206
|
+
# Place of supply scheme used in an EU standard registration.
|
207
|
+
attr_reader :place_of_supply_scheme
|
208
|
+
end
|
209
|
+
# Attribute for field standard
|
210
|
+
attr_reader :standard
|
211
|
+
|
212
|
+
# Type of registration in an EU country.
|
213
|
+
attr_reader :type
|
214
|
+
end
|
215
|
+
|
216
|
+
class Gb < Stripe::StripeObject
|
217
|
+
# Type of registration in `country`.
|
218
|
+
attr_reader :type
|
219
|
+
end
|
220
|
+
|
221
|
+
class Ge < Stripe::StripeObject
|
222
|
+
# Type of registration in `country`.
|
223
|
+
attr_reader :type
|
224
|
+
end
|
225
|
+
|
226
|
+
class Gr < Stripe::StripeObject
|
227
|
+
class Standard < Stripe::StripeObject
|
228
|
+
# Place of supply scheme used in an EU standard registration.
|
229
|
+
attr_reader :place_of_supply_scheme
|
230
|
+
end
|
231
|
+
# Attribute for field standard
|
232
|
+
attr_reader :standard
|
233
|
+
|
234
|
+
# Type of registration in an EU country.
|
235
|
+
attr_reader :type
|
236
|
+
end
|
237
|
+
|
238
|
+
class Hr < Stripe::StripeObject
|
239
|
+
class Standard < Stripe::StripeObject
|
240
|
+
# Place of supply scheme used in an EU standard registration.
|
241
|
+
attr_reader :place_of_supply_scheme
|
242
|
+
end
|
243
|
+
# Attribute for field standard
|
244
|
+
attr_reader :standard
|
245
|
+
|
246
|
+
# Type of registration in an EU country.
|
247
|
+
attr_reader :type
|
248
|
+
end
|
249
|
+
|
250
|
+
class Hu < Stripe::StripeObject
|
251
|
+
class Standard < Stripe::StripeObject
|
252
|
+
# Place of supply scheme used in an EU standard registration.
|
253
|
+
attr_reader :place_of_supply_scheme
|
254
|
+
end
|
255
|
+
# Attribute for field standard
|
256
|
+
attr_reader :standard
|
257
|
+
|
258
|
+
# Type of registration in an EU country.
|
259
|
+
attr_reader :type
|
260
|
+
end
|
261
|
+
|
262
|
+
class Id < Stripe::StripeObject
|
263
|
+
# Type of registration in `country`.
|
264
|
+
attr_reader :type
|
265
|
+
end
|
266
|
+
|
267
|
+
class Ie < Stripe::StripeObject
|
268
|
+
class Standard < Stripe::StripeObject
|
269
|
+
# Place of supply scheme used in an EU standard registration.
|
270
|
+
attr_reader :place_of_supply_scheme
|
271
|
+
end
|
272
|
+
# Attribute for field standard
|
273
|
+
attr_reader :standard
|
274
|
+
|
275
|
+
# Type of registration in an EU country.
|
276
|
+
attr_reader :type
|
277
|
+
end
|
278
|
+
|
279
|
+
class Is < Stripe::StripeObject
|
280
|
+
# Type of registration in `country`.
|
281
|
+
attr_reader :type
|
282
|
+
end
|
283
|
+
|
284
|
+
class It < Stripe::StripeObject
|
285
|
+
class Standard < Stripe::StripeObject
|
286
|
+
# Place of supply scheme used in an EU standard registration.
|
287
|
+
attr_reader :place_of_supply_scheme
|
288
|
+
end
|
289
|
+
# Attribute for field standard
|
290
|
+
attr_reader :standard
|
291
|
+
|
292
|
+
# Type of registration in an EU country.
|
293
|
+
attr_reader :type
|
294
|
+
end
|
295
|
+
|
296
|
+
class Jp < Stripe::StripeObject
|
297
|
+
# Type of registration in `country`.
|
298
|
+
attr_reader :type
|
299
|
+
end
|
300
|
+
|
301
|
+
class Ke < Stripe::StripeObject
|
302
|
+
# Type of registration in `country`.
|
303
|
+
attr_reader :type
|
304
|
+
end
|
305
|
+
|
306
|
+
class Kr < Stripe::StripeObject
|
307
|
+
# Type of registration in `country`.
|
308
|
+
attr_reader :type
|
309
|
+
end
|
310
|
+
|
311
|
+
class Kz < Stripe::StripeObject
|
312
|
+
# Type of registration in `country`.
|
313
|
+
attr_reader :type
|
314
|
+
end
|
315
|
+
|
316
|
+
class Lt < Stripe::StripeObject
|
317
|
+
class Standard < Stripe::StripeObject
|
318
|
+
# Place of supply scheme used in an EU standard registration.
|
319
|
+
attr_reader :place_of_supply_scheme
|
320
|
+
end
|
321
|
+
# Attribute for field standard
|
322
|
+
attr_reader :standard
|
323
|
+
|
324
|
+
# Type of registration in an EU country.
|
325
|
+
attr_reader :type
|
326
|
+
end
|
327
|
+
|
328
|
+
class Lu < Stripe::StripeObject
|
329
|
+
class Standard < Stripe::StripeObject
|
330
|
+
# Place of supply scheme used in an EU standard registration.
|
331
|
+
attr_reader :place_of_supply_scheme
|
332
|
+
end
|
333
|
+
# Attribute for field standard
|
334
|
+
attr_reader :standard
|
335
|
+
|
336
|
+
# Type of registration in an EU country.
|
337
|
+
attr_reader :type
|
338
|
+
end
|
339
|
+
|
340
|
+
class Lv < Stripe::StripeObject
|
341
|
+
class Standard < Stripe::StripeObject
|
342
|
+
# Place of supply scheme used in an EU standard registration.
|
343
|
+
attr_reader :place_of_supply_scheme
|
344
|
+
end
|
345
|
+
# Attribute for field standard
|
346
|
+
attr_reader :standard
|
347
|
+
|
348
|
+
# Type of registration in an EU country.
|
349
|
+
attr_reader :type
|
350
|
+
end
|
351
|
+
|
352
|
+
class Ma < Stripe::StripeObject
|
353
|
+
# Type of registration in `country`.
|
354
|
+
attr_reader :type
|
355
|
+
end
|
356
|
+
|
357
|
+
class Md < Stripe::StripeObject
|
358
|
+
# Type of registration in `country`.
|
359
|
+
attr_reader :type
|
360
|
+
end
|
361
|
+
|
362
|
+
class Mt < Stripe::StripeObject
|
363
|
+
class Standard < Stripe::StripeObject
|
364
|
+
# Place of supply scheme used in an EU standard registration.
|
365
|
+
attr_reader :place_of_supply_scheme
|
366
|
+
end
|
367
|
+
# Attribute for field standard
|
368
|
+
attr_reader :standard
|
369
|
+
|
370
|
+
# Type of registration in an EU country.
|
371
|
+
attr_reader :type
|
372
|
+
end
|
373
|
+
|
374
|
+
class Mx < Stripe::StripeObject
|
375
|
+
# Type of registration in `country`.
|
376
|
+
attr_reader :type
|
377
|
+
end
|
378
|
+
|
379
|
+
class My < Stripe::StripeObject
|
380
|
+
# Type of registration in `country`.
|
381
|
+
attr_reader :type
|
382
|
+
end
|
383
|
+
|
384
|
+
class Ng < Stripe::StripeObject
|
385
|
+
# Type of registration in `country`.
|
386
|
+
attr_reader :type
|
387
|
+
end
|
388
|
+
|
389
|
+
class Nl < Stripe::StripeObject
|
390
|
+
class Standard < Stripe::StripeObject
|
391
|
+
# Place of supply scheme used in an EU standard registration.
|
392
|
+
attr_reader :place_of_supply_scheme
|
393
|
+
end
|
394
|
+
# Attribute for field standard
|
395
|
+
attr_reader :standard
|
396
|
+
|
397
|
+
# Type of registration in an EU country.
|
398
|
+
attr_reader :type
|
399
|
+
end
|
400
|
+
|
401
|
+
class No < Stripe::StripeObject
|
402
|
+
# Type of registration in `country`.
|
403
|
+
attr_reader :type
|
404
|
+
end
|
405
|
+
|
406
|
+
class Nz < Stripe::StripeObject
|
407
|
+
# Type of registration in `country`.
|
408
|
+
attr_reader :type
|
409
|
+
end
|
410
|
+
|
411
|
+
class Om < Stripe::StripeObject
|
412
|
+
# Type of registration in `country`.
|
413
|
+
attr_reader :type
|
414
|
+
end
|
415
|
+
|
416
|
+
class Pl < Stripe::StripeObject
|
417
|
+
class Standard < Stripe::StripeObject
|
418
|
+
# Place of supply scheme used in an EU standard registration.
|
419
|
+
attr_reader :place_of_supply_scheme
|
420
|
+
end
|
421
|
+
# Attribute for field standard
|
422
|
+
attr_reader :standard
|
423
|
+
|
424
|
+
# Type of registration in an EU country.
|
425
|
+
attr_reader :type
|
426
|
+
end
|
427
|
+
|
428
|
+
class Pt < Stripe::StripeObject
|
429
|
+
class Standard < Stripe::StripeObject
|
430
|
+
# Place of supply scheme used in an EU standard registration.
|
431
|
+
attr_reader :place_of_supply_scheme
|
432
|
+
end
|
433
|
+
# Attribute for field standard
|
434
|
+
attr_reader :standard
|
435
|
+
|
436
|
+
# Type of registration in an EU country.
|
437
|
+
attr_reader :type
|
438
|
+
end
|
439
|
+
|
440
|
+
class Ro < Stripe::StripeObject
|
441
|
+
class Standard < Stripe::StripeObject
|
442
|
+
# Place of supply scheme used in an EU standard registration.
|
443
|
+
attr_reader :place_of_supply_scheme
|
444
|
+
end
|
445
|
+
# Attribute for field standard
|
446
|
+
attr_reader :standard
|
447
|
+
|
448
|
+
# Type of registration in an EU country.
|
449
|
+
attr_reader :type
|
450
|
+
end
|
451
|
+
|
452
|
+
class Rs < Stripe::StripeObject
|
453
|
+
# Type of registration in `country`.
|
454
|
+
attr_reader :type
|
455
|
+
end
|
456
|
+
|
457
|
+
class Ru < Stripe::StripeObject
|
458
|
+
# Type of registration in `country`.
|
459
|
+
attr_reader :type
|
460
|
+
end
|
461
|
+
|
462
|
+
class Sa < Stripe::StripeObject
|
463
|
+
# Type of registration in `country`.
|
464
|
+
attr_reader :type
|
465
|
+
end
|
466
|
+
|
467
|
+
class Se < Stripe::StripeObject
|
468
|
+
class Standard < Stripe::StripeObject
|
469
|
+
# Place of supply scheme used in an EU standard registration.
|
470
|
+
attr_reader :place_of_supply_scheme
|
471
|
+
end
|
472
|
+
# Attribute for field standard
|
473
|
+
attr_reader :standard
|
474
|
+
|
475
|
+
# Type of registration in an EU country.
|
476
|
+
attr_reader :type
|
477
|
+
end
|
478
|
+
|
479
|
+
class Sg < Stripe::StripeObject
|
480
|
+
# Type of registration in `country`.
|
481
|
+
attr_reader :type
|
482
|
+
end
|
483
|
+
|
484
|
+
class Si < Stripe::StripeObject
|
485
|
+
class Standard < Stripe::StripeObject
|
486
|
+
# Place of supply scheme used in an EU standard registration.
|
487
|
+
attr_reader :place_of_supply_scheme
|
488
|
+
end
|
489
|
+
# Attribute for field standard
|
490
|
+
attr_reader :standard
|
491
|
+
|
492
|
+
# Type of registration in an EU country.
|
493
|
+
attr_reader :type
|
494
|
+
end
|
495
|
+
|
496
|
+
class Sk < Stripe::StripeObject
|
497
|
+
class Standard < Stripe::StripeObject
|
498
|
+
# Place of supply scheme used in an EU standard registration.
|
499
|
+
attr_reader :place_of_supply_scheme
|
500
|
+
end
|
501
|
+
# Attribute for field standard
|
502
|
+
attr_reader :standard
|
503
|
+
|
504
|
+
# Type of registration in an EU country.
|
505
|
+
attr_reader :type
|
506
|
+
end
|
507
|
+
|
508
|
+
class Th < Stripe::StripeObject
|
509
|
+
# Type of registration in `country`.
|
510
|
+
attr_reader :type
|
511
|
+
end
|
512
|
+
|
513
|
+
class Tr < Stripe::StripeObject
|
514
|
+
# Type of registration in `country`.
|
515
|
+
attr_reader :type
|
516
|
+
end
|
517
|
+
|
518
|
+
class Tz < Stripe::StripeObject
|
519
|
+
# Type of registration in `country`.
|
520
|
+
attr_reader :type
|
521
|
+
end
|
522
|
+
|
523
|
+
class Us < Stripe::StripeObject
|
524
|
+
class LocalAmusementTax < Stripe::StripeObject
|
525
|
+
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction.
|
526
|
+
attr_reader :jurisdiction
|
527
|
+
end
|
528
|
+
|
529
|
+
class LocalLeaseTax < Stripe::StripeObject
|
530
|
+
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction.
|
531
|
+
attr_reader :jurisdiction
|
532
|
+
end
|
533
|
+
|
534
|
+
class StateSalesTax < Stripe::StripeObject
|
535
|
+
class Election < Stripe::StripeObject
|
536
|
+
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction.
|
537
|
+
attr_reader :jurisdiction
|
538
|
+
|
539
|
+
# The type of the election for the state sales tax registration.
|
540
|
+
attr_reader :type
|
541
|
+
end
|
542
|
+
# Elections for the state sales tax registration.
|
543
|
+
attr_reader :elections
|
544
|
+
end
|
545
|
+
# Attribute for field local_amusement_tax
|
546
|
+
attr_reader :local_amusement_tax
|
547
|
+
|
548
|
+
# Attribute for field local_lease_tax
|
549
|
+
attr_reader :local_lease_tax
|
550
|
+
|
551
|
+
# Two-letter US state code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
552
|
+
attr_reader :state
|
553
|
+
|
554
|
+
# Attribute for field state_sales_tax
|
555
|
+
attr_reader :state_sales_tax
|
556
|
+
|
557
|
+
# Type of registration in the US.
|
558
|
+
attr_reader :type
|
559
|
+
end
|
560
|
+
|
561
|
+
class Uz < Stripe::StripeObject
|
562
|
+
# Type of registration in `country`.
|
563
|
+
attr_reader :type
|
564
|
+
end
|
565
|
+
|
566
|
+
class Vn < Stripe::StripeObject
|
567
|
+
# Type of registration in `country`.
|
568
|
+
attr_reader :type
|
569
|
+
end
|
570
|
+
|
571
|
+
class Za < Stripe::StripeObject
|
572
|
+
# Type of registration in `country`.
|
573
|
+
attr_reader :type
|
574
|
+
end
|
575
|
+
# Attribute for field ae
|
576
|
+
attr_reader :ae
|
577
|
+
|
578
|
+
# Attribute for field at
|
579
|
+
attr_reader :at
|
580
|
+
|
581
|
+
# Attribute for field au
|
582
|
+
attr_reader :au
|
583
|
+
|
584
|
+
# Attribute for field be
|
585
|
+
attr_reader :be
|
586
|
+
|
587
|
+
# Attribute for field bg
|
588
|
+
attr_reader :bg
|
589
|
+
|
590
|
+
# Attribute for field bh
|
591
|
+
attr_reader :bh
|
592
|
+
|
593
|
+
# Attribute for field by
|
594
|
+
attr_reader :by
|
595
|
+
|
596
|
+
# Attribute for field ca
|
597
|
+
attr_reader :ca
|
598
|
+
|
599
|
+
# Attribute for field ch
|
600
|
+
attr_reader :ch
|
601
|
+
|
602
|
+
# Attribute for field cl
|
603
|
+
attr_reader :cl
|
604
|
+
|
605
|
+
# Attribute for field co
|
606
|
+
attr_reader :co
|
607
|
+
|
608
|
+
# Attribute for field cr
|
609
|
+
attr_reader :cr
|
610
|
+
|
611
|
+
# Attribute for field cy
|
612
|
+
attr_reader :cy
|
613
|
+
|
614
|
+
# Attribute for field cz
|
615
|
+
attr_reader :cz
|
616
|
+
|
617
|
+
# Attribute for field de
|
618
|
+
attr_reader :de
|
619
|
+
|
620
|
+
# Attribute for field dk
|
621
|
+
attr_reader :dk
|
622
|
+
|
623
|
+
# Attribute for field ec
|
624
|
+
attr_reader :ec
|
625
|
+
|
626
|
+
# Attribute for field ee
|
627
|
+
attr_reader :ee
|
628
|
+
|
629
|
+
# Attribute for field eg
|
630
|
+
attr_reader :eg
|
631
|
+
|
632
|
+
# Attribute for field es
|
633
|
+
attr_reader :es
|
634
|
+
|
635
|
+
# Attribute for field fi
|
636
|
+
attr_reader :fi
|
637
|
+
|
638
|
+
# Attribute for field fr
|
639
|
+
attr_reader :fr
|
640
|
+
|
641
|
+
# Attribute for field gb
|
642
|
+
attr_reader :gb
|
643
|
+
|
644
|
+
# Attribute for field ge
|
645
|
+
attr_reader :ge
|
646
|
+
|
647
|
+
# Attribute for field gr
|
648
|
+
attr_reader :gr
|
649
|
+
|
650
|
+
# Attribute for field hr
|
651
|
+
attr_reader :hr
|
652
|
+
|
653
|
+
# Attribute for field hu
|
654
|
+
attr_reader :hu
|
655
|
+
|
656
|
+
# Attribute for field id
|
657
|
+
attr_reader :id
|
658
|
+
|
659
|
+
# Attribute for field ie
|
660
|
+
attr_reader :ie
|
661
|
+
|
662
|
+
# Attribute for field is
|
663
|
+
attr_reader :is
|
664
|
+
|
665
|
+
# Attribute for field it
|
666
|
+
attr_reader :it
|
667
|
+
|
668
|
+
# Attribute for field jp
|
669
|
+
attr_reader :jp
|
670
|
+
|
671
|
+
# Attribute for field ke
|
672
|
+
attr_reader :ke
|
673
|
+
|
674
|
+
# Attribute for field kr
|
675
|
+
attr_reader :kr
|
676
|
+
|
677
|
+
# Attribute for field kz
|
678
|
+
attr_reader :kz
|
679
|
+
|
680
|
+
# Attribute for field lt
|
681
|
+
attr_reader :lt
|
682
|
+
|
683
|
+
# Attribute for field lu
|
684
|
+
attr_reader :lu
|
685
|
+
|
686
|
+
# Attribute for field lv
|
687
|
+
attr_reader :lv
|
688
|
+
|
689
|
+
# Attribute for field ma
|
690
|
+
attr_reader :ma
|
691
|
+
|
692
|
+
# Attribute for field md
|
693
|
+
attr_reader :md
|
694
|
+
|
695
|
+
# Attribute for field mt
|
696
|
+
attr_reader :mt
|
697
|
+
|
698
|
+
# Attribute for field mx
|
699
|
+
attr_reader :mx
|
700
|
+
|
701
|
+
# Attribute for field my
|
702
|
+
attr_reader :my
|
703
|
+
|
704
|
+
# Attribute for field ng
|
705
|
+
attr_reader :ng
|
706
|
+
|
707
|
+
# Attribute for field nl
|
708
|
+
attr_reader :nl
|
709
|
+
|
710
|
+
# Attribute for field no
|
711
|
+
attr_reader :no
|
712
|
+
|
713
|
+
# Attribute for field nz
|
714
|
+
attr_reader :nz
|
715
|
+
|
716
|
+
# Attribute for field om
|
717
|
+
attr_reader :om
|
718
|
+
|
719
|
+
# Attribute for field pl
|
720
|
+
attr_reader :pl
|
721
|
+
|
722
|
+
# Attribute for field pt
|
723
|
+
attr_reader :pt
|
724
|
+
|
725
|
+
# Attribute for field ro
|
726
|
+
attr_reader :ro
|
727
|
+
|
728
|
+
# Attribute for field rs
|
729
|
+
attr_reader :rs
|
730
|
+
|
731
|
+
# Attribute for field ru
|
732
|
+
attr_reader :ru
|
733
|
+
|
734
|
+
# Attribute for field sa
|
735
|
+
attr_reader :sa
|
736
|
+
|
737
|
+
# Attribute for field se
|
738
|
+
attr_reader :se
|
739
|
+
|
740
|
+
# Attribute for field sg
|
741
|
+
attr_reader :sg
|
742
|
+
|
743
|
+
# Attribute for field si
|
744
|
+
attr_reader :si
|
745
|
+
|
746
|
+
# Attribute for field sk
|
747
|
+
attr_reader :sk
|
748
|
+
|
749
|
+
# Attribute for field th
|
750
|
+
attr_reader :th
|
751
|
+
|
752
|
+
# Attribute for field tr
|
753
|
+
attr_reader :tr
|
754
|
+
|
755
|
+
# Attribute for field tz
|
756
|
+
attr_reader :tz
|
757
|
+
|
758
|
+
# Attribute for field us
|
759
|
+
attr_reader :us
|
760
|
+
|
761
|
+
# Attribute for field uz
|
762
|
+
attr_reader :uz
|
763
|
+
|
764
|
+
# Attribute for field vn
|
765
|
+
attr_reader :vn
|
766
|
+
|
767
|
+
# Attribute for field za
|
768
|
+
attr_reader :za
|
769
|
+
end
|
770
|
+
|
771
|
+
class ListParams < Stripe::RequestParams
|
772
|
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
|
773
|
+
attr_accessor :ending_before
|
774
|
+
|
775
|
+
# Specifies which fields in the response should be expanded.
|
776
|
+
attr_accessor :expand
|
777
|
+
|
778
|
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
|
779
|
+
attr_accessor :limit
|
780
|
+
|
781
|
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
|
782
|
+
attr_accessor :starting_after
|
783
|
+
|
784
|
+
# The status of the Tax Registration.
|
785
|
+
attr_accessor :status
|
786
|
+
|
787
|
+
def initialize(
|
788
|
+
ending_before: nil,
|
789
|
+
expand: nil,
|
790
|
+
limit: nil,
|
791
|
+
starting_after: nil,
|
792
|
+
status: nil
|
793
|
+
)
|
794
|
+
@ending_before = ending_before
|
795
|
+
@expand = expand
|
796
|
+
@limit = limit
|
797
|
+
@starting_after = starting_after
|
798
|
+
@status = status
|
799
|
+
end
|
800
|
+
end
|
801
|
+
|
802
|
+
class CreateParams < Stripe::RequestParams
|
803
|
+
class CountryOptions < Stripe::RequestParams
|
804
|
+
class Ae < Stripe::RequestParams
|
805
|
+
# Type of registration to be created in `country`.
|
806
|
+
attr_accessor :type
|
807
|
+
|
808
|
+
def initialize(type: nil)
|
809
|
+
@type = type
|
810
|
+
end
|
811
|
+
end
|
812
|
+
|
813
|
+
class At < Stripe::RequestParams
|
814
|
+
class Standard < Stripe::RequestParams
|
815
|
+
# Place of supply scheme used in an EU standard registration.
|
816
|
+
attr_accessor :place_of_supply_scheme
|
817
|
+
|
818
|
+
def initialize(place_of_supply_scheme: nil)
|
819
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
820
|
+
end
|
821
|
+
end
|
822
|
+
# Options for the standard registration.
|
823
|
+
attr_accessor :standard
|
824
|
+
|
825
|
+
# Type of registration to be created in an EU country.
|
826
|
+
attr_accessor :type
|
827
|
+
|
828
|
+
def initialize(standard: nil, type: nil)
|
829
|
+
@standard = standard
|
830
|
+
@type = type
|
831
|
+
end
|
832
|
+
end
|
833
|
+
|
834
|
+
class Au < Stripe::RequestParams
|
835
|
+
# Type of registration to be created in `country`.
|
836
|
+
attr_accessor :type
|
837
|
+
|
838
|
+
def initialize(type: nil)
|
839
|
+
@type = type
|
840
|
+
end
|
841
|
+
end
|
842
|
+
|
843
|
+
class Be < Stripe::RequestParams
|
844
|
+
class Standard < Stripe::RequestParams
|
845
|
+
# Place of supply scheme used in an EU standard registration.
|
846
|
+
attr_accessor :place_of_supply_scheme
|
847
|
+
|
848
|
+
def initialize(place_of_supply_scheme: nil)
|
849
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
850
|
+
end
|
851
|
+
end
|
852
|
+
# Options for the standard registration.
|
853
|
+
attr_accessor :standard
|
854
|
+
|
855
|
+
# Type of registration to be created in an EU country.
|
856
|
+
attr_accessor :type
|
857
|
+
|
858
|
+
def initialize(standard: nil, type: nil)
|
859
|
+
@standard = standard
|
860
|
+
@type = type
|
861
|
+
end
|
862
|
+
end
|
863
|
+
|
864
|
+
class Bg < Stripe::RequestParams
|
865
|
+
class Standard < Stripe::RequestParams
|
866
|
+
# Place of supply scheme used in an EU standard registration.
|
867
|
+
attr_accessor :place_of_supply_scheme
|
868
|
+
|
869
|
+
def initialize(place_of_supply_scheme: nil)
|
870
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
871
|
+
end
|
872
|
+
end
|
873
|
+
# Options for the standard registration.
|
874
|
+
attr_accessor :standard
|
875
|
+
|
876
|
+
# Type of registration to be created in an EU country.
|
877
|
+
attr_accessor :type
|
878
|
+
|
879
|
+
def initialize(standard: nil, type: nil)
|
880
|
+
@standard = standard
|
881
|
+
@type = type
|
882
|
+
end
|
883
|
+
end
|
884
|
+
|
885
|
+
class Bh < Stripe::RequestParams
|
886
|
+
# Type of registration to be created in `country`.
|
887
|
+
attr_accessor :type
|
888
|
+
|
889
|
+
def initialize(type: nil)
|
890
|
+
@type = type
|
891
|
+
end
|
892
|
+
end
|
893
|
+
|
894
|
+
class By < Stripe::RequestParams
|
895
|
+
# Type of registration to be created in `country`.
|
896
|
+
attr_accessor :type
|
897
|
+
|
898
|
+
def initialize(type: nil)
|
899
|
+
@type = type
|
900
|
+
end
|
901
|
+
end
|
902
|
+
|
903
|
+
class Ca < Stripe::RequestParams
|
904
|
+
class ProvinceStandard < Stripe::RequestParams
|
905
|
+
# Two-letter CA province code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
906
|
+
attr_accessor :province
|
907
|
+
|
908
|
+
def initialize(province: nil)
|
909
|
+
@province = province
|
910
|
+
end
|
911
|
+
end
|
912
|
+
# Options for the provincial tax registration.
|
913
|
+
attr_accessor :province_standard
|
914
|
+
|
915
|
+
# Type of registration to be created in Canada.
|
916
|
+
attr_accessor :type
|
917
|
+
|
918
|
+
def initialize(province_standard: nil, type: nil)
|
919
|
+
@province_standard = province_standard
|
920
|
+
@type = type
|
921
|
+
end
|
922
|
+
end
|
923
|
+
|
924
|
+
class Ch < Stripe::RequestParams
|
925
|
+
# Type of registration to be created in `country`.
|
926
|
+
attr_accessor :type
|
927
|
+
|
928
|
+
def initialize(type: nil)
|
929
|
+
@type = type
|
930
|
+
end
|
931
|
+
end
|
932
|
+
|
933
|
+
class Cl < Stripe::RequestParams
|
934
|
+
# Type of registration to be created in `country`.
|
935
|
+
attr_accessor :type
|
936
|
+
|
937
|
+
def initialize(type: nil)
|
938
|
+
@type = type
|
939
|
+
end
|
940
|
+
end
|
941
|
+
|
942
|
+
class Co < Stripe::RequestParams
|
943
|
+
# Type of registration to be created in `country`.
|
944
|
+
attr_accessor :type
|
945
|
+
|
946
|
+
def initialize(type: nil)
|
947
|
+
@type = type
|
948
|
+
end
|
949
|
+
end
|
950
|
+
|
951
|
+
class Cr < Stripe::RequestParams
|
952
|
+
# Type of registration to be created in `country`.
|
953
|
+
attr_accessor :type
|
954
|
+
|
955
|
+
def initialize(type: nil)
|
956
|
+
@type = type
|
957
|
+
end
|
958
|
+
end
|
959
|
+
|
960
|
+
class Cy < Stripe::RequestParams
|
961
|
+
class Standard < Stripe::RequestParams
|
962
|
+
# Place of supply scheme used in an EU standard registration.
|
963
|
+
attr_accessor :place_of_supply_scheme
|
964
|
+
|
965
|
+
def initialize(place_of_supply_scheme: nil)
|
966
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
967
|
+
end
|
968
|
+
end
|
969
|
+
# Options for the standard registration.
|
970
|
+
attr_accessor :standard
|
971
|
+
|
972
|
+
# Type of registration to be created in an EU country.
|
973
|
+
attr_accessor :type
|
974
|
+
|
975
|
+
def initialize(standard: nil, type: nil)
|
976
|
+
@standard = standard
|
977
|
+
@type = type
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
981
|
+
class Cz < Stripe::RequestParams
|
982
|
+
class Standard < Stripe::RequestParams
|
983
|
+
# Place of supply scheme used in an EU standard registration.
|
984
|
+
attr_accessor :place_of_supply_scheme
|
985
|
+
|
986
|
+
def initialize(place_of_supply_scheme: nil)
|
987
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
988
|
+
end
|
989
|
+
end
|
990
|
+
# Options for the standard registration.
|
991
|
+
attr_accessor :standard
|
992
|
+
|
993
|
+
# Type of registration to be created in an EU country.
|
994
|
+
attr_accessor :type
|
995
|
+
|
996
|
+
def initialize(standard: nil, type: nil)
|
997
|
+
@standard = standard
|
998
|
+
@type = type
|
999
|
+
end
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class De < Stripe::RequestParams
|
1003
|
+
class Standard < Stripe::RequestParams
|
1004
|
+
# Place of supply scheme used in an EU standard registration.
|
1005
|
+
attr_accessor :place_of_supply_scheme
|
1006
|
+
|
1007
|
+
def initialize(place_of_supply_scheme: nil)
|
1008
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1009
|
+
end
|
1010
|
+
end
|
1011
|
+
# Options for the standard registration.
|
1012
|
+
attr_accessor :standard
|
1013
|
+
|
1014
|
+
# Type of registration to be created in an EU country.
|
1015
|
+
attr_accessor :type
|
1016
|
+
|
1017
|
+
def initialize(standard: nil, type: nil)
|
1018
|
+
@standard = standard
|
1019
|
+
@type = type
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
class Dk < Stripe::RequestParams
|
1024
|
+
class Standard < Stripe::RequestParams
|
1025
|
+
# Place of supply scheme used in an EU standard registration.
|
1026
|
+
attr_accessor :place_of_supply_scheme
|
1027
|
+
|
1028
|
+
def initialize(place_of_supply_scheme: nil)
|
1029
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1030
|
+
end
|
1031
|
+
end
|
1032
|
+
# Options for the standard registration.
|
1033
|
+
attr_accessor :standard
|
1034
|
+
|
1035
|
+
# Type of registration to be created in an EU country.
|
1036
|
+
attr_accessor :type
|
1037
|
+
|
1038
|
+
def initialize(standard: nil, type: nil)
|
1039
|
+
@standard = standard
|
1040
|
+
@type = type
|
1041
|
+
end
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class Ec < Stripe::RequestParams
|
1045
|
+
# Type of registration to be created in `country`.
|
1046
|
+
attr_accessor :type
|
1047
|
+
|
1048
|
+
def initialize(type: nil)
|
1049
|
+
@type = type
|
1050
|
+
end
|
1051
|
+
end
|
1052
|
+
|
1053
|
+
class Ee < Stripe::RequestParams
|
1054
|
+
class Standard < Stripe::RequestParams
|
1055
|
+
# Place of supply scheme used in an EU standard registration.
|
1056
|
+
attr_accessor :place_of_supply_scheme
|
1057
|
+
|
1058
|
+
def initialize(place_of_supply_scheme: nil)
|
1059
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1060
|
+
end
|
1061
|
+
end
|
1062
|
+
# Options for the standard registration.
|
1063
|
+
attr_accessor :standard
|
1064
|
+
|
1065
|
+
# Type of registration to be created in an EU country.
|
1066
|
+
attr_accessor :type
|
1067
|
+
|
1068
|
+
def initialize(standard: nil, type: nil)
|
1069
|
+
@standard = standard
|
1070
|
+
@type = type
|
1071
|
+
end
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
class Eg < Stripe::RequestParams
|
1075
|
+
# Type of registration to be created in `country`.
|
1076
|
+
attr_accessor :type
|
1077
|
+
|
1078
|
+
def initialize(type: nil)
|
1079
|
+
@type = type
|
1080
|
+
end
|
1081
|
+
end
|
1082
|
+
|
1083
|
+
class Es < Stripe::RequestParams
|
1084
|
+
class Standard < Stripe::RequestParams
|
1085
|
+
# Place of supply scheme used in an EU standard registration.
|
1086
|
+
attr_accessor :place_of_supply_scheme
|
1087
|
+
|
1088
|
+
def initialize(place_of_supply_scheme: nil)
|
1089
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1090
|
+
end
|
1091
|
+
end
|
1092
|
+
# Options for the standard registration.
|
1093
|
+
attr_accessor :standard
|
1094
|
+
|
1095
|
+
# Type of registration to be created in an EU country.
|
1096
|
+
attr_accessor :type
|
1097
|
+
|
1098
|
+
def initialize(standard: nil, type: nil)
|
1099
|
+
@standard = standard
|
1100
|
+
@type = type
|
1101
|
+
end
|
1102
|
+
end
|
1103
|
+
|
1104
|
+
class Fi < Stripe::RequestParams
|
1105
|
+
class Standard < Stripe::RequestParams
|
1106
|
+
# Place of supply scheme used in an EU standard registration.
|
1107
|
+
attr_accessor :place_of_supply_scheme
|
1108
|
+
|
1109
|
+
def initialize(place_of_supply_scheme: nil)
|
1110
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1111
|
+
end
|
1112
|
+
end
|
1113
|
+
# Options for the standard registration.
|
1114
|
+
attr_accessor :standard
|
1115
|
+
|
1116
|
+
# Type of registration to be created in an EU country.
|
1117
|
+
attr_accessor :type
|
1118
|
+
|
1119
|
+
def initialize(standard: nil, type: nil)
|
1120
|
+
@standard = standard
|
1121
|
+
@type = type
|
1122
|
+
end
|
1123
|
+
end
|
1124
|
+
|
1125
|
+
class Fr < Stripe::RequestParams
|
1126
|
+
class Standard < Stripe::RequestParams
|
1127
|
+
# Place of supply scheme used in an EU standard registration.
|
1128
|
+
attr_accessor :place_of_supply_scheme
|
1129
|
+
|
1130
|
+
def initialize(place_of_supply_scheme: nil)
|
1131
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1132
|
+
end
|
1133
|
+
end
|
1134
|
+
# Options for the standard registration.
|
1135
|
+
attr_accessor :standard
|
1136
|
+
|
1137
|
+
# Type of registration to be created in an EU country.
|
1138
|
+
attr_accessor :type
|
1139
|
+
|
1140
|
+
def initialize(standard: nil, type: nil)
|
1141
|
+
@standard = standard
|
1142
|
+
@type = type
|
1143
|
+
end
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class Gb < Stripe::RequestParams
|
1147
|
+
# Type of registration to be created in `country`.
|
1148
|
+
attr_accessor :type
|
1149
|
+
|
1150
|
+
def initialize(type: nil)
|
1151
|
+
@type = type
|
1152
|
+
end
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class Ge < Stripe::RequestParams
|
1156
|
+
# Type of registration to be created in `country`.
|
1157
|
+
attr_accessor :type
|
1158
|
+
|
1159
|
+
def initialize(type: nil)
|
1160
|
+
@type = type
|
1161
|
+
end
|
1162
|
+
end
|
1163
|
+
|
1164
|
+
class Gr < Stripe::RequestParams
|
1165
|
+
class Standard < Stripe::RequestParams
|
1166
|
+
# Place of supply scheme used in an EU standard registration.
|
1167
|
+
attr_accessor :place_of_supply_scheme
|
1168
|
+
|
1169
|
+
def initialize(place_of_supply_scheme: nil)
|
1170
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1171
|
+
end
|
1172
|
+
end
|
1173
|
+
# Options for the standard registration.
|
1174
|
+
attr_accessor :standard
|
1175
|
+
|
1176
|
+
# Type of registration to be created in an EU country.
|
1177
|
+
attr_accessor :type
|
1178
|
+
|
1179
|
+
def initialize(standard: nil, type: nil)
|
1180
|
+
@standard = standard
|
1181
|
+
@type = type
|
1182
|
+
end
|
1183
|
+
end
|
1184
|
+
|
1185
|
+
class Hr < Stripe::RequestParams
|
1186
|
+
class Standard < Stripe::RequestParams
|
1187
|
+
# Place of supply scheme used in an EU standard registration.
|
1188
|
+
attr_accessor :place_of_supply_scheme
|
1189
|
+
|
1190
|
+
def initialize(place_of_supply_scheme: nil)
|
1191
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1192
|
+
end
|
1193
|
+
end
|
1194
|
+
# Options for the standard registration.
|
1195
|
+
attr_accessor :standard
|
1196
|
+
|
1197
|
+
# Type of registration to be created in an EU country.
|
1198
|
+
attr_accessor :type
|
1199
|
+
|
1200
|
+
def initialize(standard: nil, type: nil)
|
1201
|
+
@standard = standard
|
1202
|
+
@type = type
|
1203
|
+
end
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
class Hu < Stripe::RequestParams
|
1207
|
+
class Standard < Stripe::RequestParams
|
1208
|
+
# Place of supply scheme used in an EU standard registration.
|
1209
|
+
attr_accessor :place_of_supply_scheme
|
1210
|
+
|
1211
|
+
def initialize(place_of_supply_scheme: nil)
|
1212
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1213
|
+
end
|
1214
|
+
end
|
1215
|
+
# Options for the standard registration.
|
1216
|
+
attr_accessor :standard
|
1217
|
+
|
1218
|
+
# Type of registration to be created in an EU country.
|
1219
|
+
attr_accessor :type
|
1220
|
+
|
1221
|
+
def initialize(standard: nil, type: nil)
|
1222
|
+
@standard = standard
|
1223
|
+
@type = type
|
1224
|
+
end
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
class Id < Stripe::RequestParams
|
1228
|
+
# Type of registration to be created in `country`.
|
1229
|
+
attr_accessor :type
|
1230
|
+
|
1231
|
+
def initialize(type: nil)
|
1232
|
+
@type = type
|
1233
|
+
end
|
1234
|
+
end
|
1235
|
+
|
1236
|
+
class Ie < Stripe::RequestParams
|
1237
|
+
class Standard < Stripe::RequestParams
|
1238
|
+
# Place of supply scheme used in an EU standard registration.
|
1239
|
+
attr_accessor :place_of_supply_scheme
|
1240
|
+
|
1241
|
+
def initialize(place_of_supply_scheme: nil)
|
1242
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1243
|
+
end
|
1244
|
+
end
|
1245
|
+
# Options for the standard registration.
|
1246
|
+
attr_accessor :standard
|
1247
|
+
|
1248
|
+
# Type of registration to be created in an EU country.
|
1249
|
+
attr_accessor :type
|
1250
|
+
|
1251
|
+
def initialize(standard: nil, type: nil)
|
1252
|
+
@standard = standard
|
1253
|
+
@type = type
|
1254
|
+
end
|
1255
|
+
end
|
1256
|
+
|
1257
|
+
class Is < Stripe::RequestParams
|
1258
|
+
# Type of registration to be created in `country`.
|
1259
|
+
attr_accessor :type
|
1260
|
+
|
1261
|
+
def initialize(type: nil)
|
1262
|
+
@type = type
|
1263
|
+
end
|
1264
|
+
end
|
1265
|
+
|
1266
|
+
class It < Stripe::RequestParams
|
1267
|
+
class Standard < Stripe::RequestParams
|
1268
|
+
# Place of supply scheme used in an EU standard registration.
|
1269
|
+
attr_accessor :place_of_supply_scheme
|
1270
|
+
|
1271
|
+
def initialize(place_of_supply_scheme: nil)
|
1272
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1273
|
+
end
|
1274
|
+
end
|
1275
|
+
# Options for the standard registration.
|
1276
|
+
attr_accessor :standard
|
1277
|
+
|
1278
|
+
# Type of registration to be created in an EU country.
|
1279
|
+
attr_accessor :type
|
1280
|
+
|
1281
|
+
def initialize(standard: nil, type: nil)
|
1282
|
+
@standard = standard
|
1283
|
+
@type = type
|
1284
|
+
end
|
1285
|
+
end
|
1286
|
+
|
1287
|
+
class Jp < Stripe::RequestParams
|
1288
|
+
# Type of registration to be created in `country`.
|
1289
|
+
attr_accessor :type
|
1290
|
+
|
1291
|
+
def initialize(type: nil)
|
1292
|
+
@type = type
|
1293
|
+
end
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
class Ke < Stripe::RequestParams
|
1297
|
+
# Type of registration to be created in `country`.
|
1298
|
+
attr_accessor :type
|
1299
|
+
|
1300
|
+
def initialize(type: nil)
|
1301
|
+
@type = type
|
1302
|
+
end
|
1303
|
+
end
|
1304
|
+
|
1305
|
+
class Kr < Stripe::RequestParams
|
1306
|
+
# Type of registration to be created in `country`.
|
1307
|
+
attr_accessor :type
|
1308
|
+
|
1309
|
+
def initialize(type: nil)
|
1310
|
+
@type = type
|
1311
|
+
end
|
1312
|
+
end
|
1313
|
+
|
1314
|
+
class Kz < Stripe::RequestParams
|
1315
|
+
# Type of registration to be created in `country`.
|
1316
|
+
attr_accessor :type
|
1317
|
+
|
1318
|
+
def initialize(type: nil)
|
1319
|
+
@type = type
|
1320
|
+
end
|
1321
|
+
end
|
1322
|
+
|
1323
|
+
class Lt < Stripe::RequestParams
|
1324
|
+
class Standard < Stripe::RequestParams
|
1325
|
+
# Place of supply scheme used in an EU standard registration.
|
1326
|
+
attr_accessor :place_of_supply_scheme
|
1327
|
+
|
1328
|
+
def initialize(place_of_supply_scheme: nil)
|
1329
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1330
|
+
end
|
1331
|
+
end
|
1332
|
+
# Options for the standard registration.
|
1333
|
+
attr_accessor :standard
|
1334
|
+
|
1335
|
+
# Type of registration to be created in an EU country.
|
1336
|
+
attr_accessor :type
|
1337
|
+
|
1338
|
+
def initialize(standard: nil, type: nil)
|
1339
|
+
@standard = standard
|
1340
|
+
@type = type
|
1341
|
+
end
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class Lu < Stripe::RequestParams
|
1345
|
+
class Standard < Stripe::RequestParams
|
1346
|
+
# Place of supply scheme used in an EU standard registration.
|
1347
|
+
attr_accessor :place_of_supply_scheme
|
1348
|
+
|
1349
|
+
def initialize(place_of_supply_scheme: nil)
|
1350
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1351
|
+
end
|
1352
|
+
end
|
1353
|
+
# Options for the standard registration.
|
1354
|
+
attr_accessor :standard
|
1355
|
+
|
1356
|
+
# Type of registration to be created in an EU country.
|
1357
|
+
attr_accessor :type
|
1358
|
+
|
1359
|
+
def initialize(standard: nil, type: nil)
|
1360
|
+
@standard = standard
|
1361
|
+
@type = type
|
1362
|
+
end
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class Lv < Stripe::RequestParams
|
1366
|
+
class Standard < Stripe::RequestParams
|
1367
|
+
# Place of supply scheme used in an EU standard registration.
|
1368
|
+
attr_accessor :place_of_supply_scheme
|
1369
|
+
|
1370
|
+
def initialize(place_of_supply_scheme: nil)
|
1371
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1372
|
+
end
|
1373
|
+
end
|
1374
|
+
# Options for the standard registration.
|
1375
|
+
attr_accessor :standard
|
1376
|
+
|
1377
|
+
# Type of registration to be created in an EU country.
|
1378
|
+
attr_accessor :type
|
1379
|
+
|
1380
|
+
def initialize(standard: nil, type: nil)
|
1381
|
+
@standard = standard
|
1382
|
+
@type = type
|
1383
|
+
end
|
1384
|
+
end
|
1385
|
+
|
1386
|
+
class Ma < Stripe::RequestParams
|
1387
|
+
# Type of registration to be created in `country`.
|
1388
|
+
attr_accessor :type
|
1389
|
+
|
1390
|
+
def initialize(type: nil)
|
1391
|
+
@type = type
|
1392
|
+
end
|
1393
|
+
end
|
1394
|
+
|
1395
|
+
class Md < Stripe::RequestParams
|
1396
|
+
# Type of registration to be created in `country`.
|
1397
|
+
attr_accessor :type
|
1398
|
+
|
1399
|
+
def initialize(type: nil)
|
1400
|
+
@type = type
|
1401
|
+
end
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class Mt < Stripe::RequestParams
|
1405
|
+
class Standard < Stripe::RequestParams
|
1406
|
+
# Place of supply scheme used in an EU standard registration.
|
1407
|
+
attr_accessor :place_of_supply_scheme
|
1408
|
+
|
1409
|
+
def initialize(place_of_supply_scheme: nil)
|
1410
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1411
|
+
end
|
1412
|
+
end
|
1413
|
+
# Options for the standard registration.
|
1414
|
+
attr_accessor :standard
|
1415
|
+
|
1416
|
+
# Type of registration to be created in an EU country.
|
1417
|
+
attr_accessor :type
|
1418
|
+
|
1419
|
+
def initialize(standard: nil, type: nil)
|
1420
|
+
@standard = standard
|
1421
|
+
@type = type
|
1422
|
+
end
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
class Mx < Stripe::RequestParams
|
1426
|
+
# Type of registration to be created in `country`.
|
1427
|
+
attr_accessor :type
|
1428
|
+
|
1429
|
+
def initialize(type: nil)
|
1430
|
+
@type = type
|
1431
|
+
end
|
1432
|
+
end
|
1433
|
+
|
1434
|
+
class My < Stripe::RequestParams
|
1435
|
+
# Type of registration to be created in `country`.
|
1436
|
+
attr_accessor :type
|
1437
|
+
|
1438
|
+
def initialize(type: nil)
|
1439
|
+
@type = type
|
1440
|
+
end
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
class Ng < Stripe::RequestParams
|
1444
|
+
# Type of registration to be created in `country`.
|
1445
|
+
attr_accessor :type
|
1446
|
+
|
1447
|
+
def initialize(type: nil)
|
1448
|
+
@type = type
|
1449
|
+
end
|
1450
|
+
end
|
1451
|
+
|
1452
|
+
class Nl < Stripe::RequestParams
|
1453
|
+
class Standard < Stripe::RequestParams
|
1454
|
+
# Place of supply scheme used in an EU standard registration.
|
1455
|
+
attr_accessor :place_of_supply_scheme
|
1456
|
+
|
1457
|
+
def initialize(place_of_supply_scheme: nil)
|
1458
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1459
|
+
end
|
1460
|
+
end
|
1461
|
+
# Options for the standard registration.
|
1462
|
+
attr_accessor :standard
|
1463
|
+
|
1464
|
+
# Type of registration to be created in an EU country.
|
1465
|
+
attr_accessor :type
|
1466
|
+
|
1467
|
+
def initialize(standard: nil, type: nil)
|
1468
|
+
@standard = standard
|
1469
|
+
@type = type
|
1470
|
+
end
|
1471
|
+
end
|
1472
|
+
|
1473
|
+
class No < Stripe::RequestParams
|
1474
|
+
# Type of registration to be created in `country`.
|
1475
|
+
attr_accessor :type
|
1476
|
+
|
1477
|
+
def initialize(type: nil)
|
1478
|
+
@type = type
|
1479
|
+
end
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
class Nz < Stripe::RequestParams
|
1483
|
+
# Type of registration to be created in `country`.
|
1484
|
+
attr_accessor :type
|
1485
|
+
|
1486
|
+
def initialize(type: nil)
|
1487
|
+
@type = type
|
1488
|
+
end
|
1489
|
+
end
|
1490
|
+
|
1491
|
+
class Om < Stripe::RequestParams
|
1492
|
+
# Type of registration to be created in `country`.
|
1493
|
+
attr_accessor :type
|
1494
|
+
|
1495
|
+
def initialize(type: nil)
|
1496
|
+
@type = type
|
1497
|
+
end
|
1498
|
+
end
|
1499
|
+
|
1500
|
+
class Pl < Stripe::RequestParams
|
1501
|
+
class Standard < Stripe::RequestParams
|
1502
|
+
# Place of supply scheme used in an EU standard registration.
|
1503
|
+
attr_accessor :place_of_supply_scheme
|
1504
|
+
|
1505
|
+
def initialize(place_of_supply_scheme: nil)
|
1506
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1507
|
+
end
|
1508
|
+
end
|
1509
|
+
# Options for the standard registration.
|
1510
|
+
attr_accessor :standard
|
1511
|
+
|
1512
|
+
# Type of registration to be created in an EU country.
|
1513
|
+
attr_accessor :type
|
1514
|
+
|
1515
|
+
def initialize(standard: nil, type: nil)
|
1516
|
+
@standard = standard
|
1517
|
+
@type = type
|
1518
|
+
end
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
class Pt < Stripe::RequestParams
|
1522
|
+
class Standard < Stripe::RequestParams
|
1523
|
+
# Place of supply scheme used in an EU standard registration.
|
1524
|
+
attr_accessor :place_of_supply_scheme
|
1525
|
+
|
1526
|
+
def initialize(place_of_supply_scheme: nil)
|
1527
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1528
|
+
end
|
1529
|
+
end
|
1530
|
+
# Options for the standard registration.
|
1531
|
+
attr_accessor :standard
|
1532
|
+
|
1533
|
+
# Type of registration to be created in an EU country.
|
1534
|
+
attr_accessor :type
|
1535
|
+
|
1536
|
+
def initialize(standard: nil, type: nil)
|
1537
|
+
@standard = standard
|
1538
|
+
@type = type
|
1539
|
+
end
|
1540
|
+
end
|
1541
|
+
|
1542
|
+
class Ro < Stripe::RequestParams
|
1543
|
+
class Standard < Stripe::RequestParams
|
1544
|
+
# Place of supply scheme used in an EU standard registration.
|
1545
|
+
attr_accessor :place_of_supply_scheme
|
1546
|
+
|
1547
|
+
def initialize(place_of_supply_scheme: nil)
|
1548
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1549
|
+
end
|
1550
|
+
end
|
1551
|
+
# Options for the standard registration.
|
1552
|
+
attr_accessor :standard
|
1553
|
+
|
1554
|
+
# Type of registration to be created in an EU country.
|
1555
|
+
attr_accessor :type
|
1556
|
+
|
1557
|
+
def initialize(standard: nil, type: nil)
|
1558
|
+
@standard = standard
|
1559
|
+
@type = type
|
1560
|
+
end
|
1561
|
+
end
|
1562
|
+
|
1563
|
+
class Rs < Stripe::RequestParams
|
1564
|
+
# Type of registration to be created in `country`.
|
1565
|
+
attr_accessor :type
|
1566
|
+
|
1567
|
+
def initialize(type: nil)
|
1568
|
+
@type = type
|
1569
|
+
end
|
1570
|
+
end
|
1571
|
+
|
1572
|
+
class Ru < Stripe::RequestParams
|
1573
|
+
# Type of registration to be created in `country`.
|
1574
|
+
attr_accessor :type
|
1575
|
+
|
1576
|
+
def initialize(type: nil)
|
1577
|
+
@type = type
|
1578
|
+
end
|
1579
|
+
end
|
1580
|
+
|
1581
|
+
class Sa < Stripe::RequestParams
|
1582
|
+
# Type of registration to be created in `country`.
|
1583
|
+
attr_accessor :type
|
1584
|
+
|
1585
|
+
def initialize(type: nil)
|
1586
|
+
@type = type
|
1587
|
+
end
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
class Se < Stripe::RequestParams
|
1591
|
+
class Standard < Stripe::RequestParams
|
1592
|
+
# Place of supply scheme used in an EU standard registration.
|
1593
|
+
attr_accessor :place_of_supply_scheme
|
1594
|
+
|
1595
|
+
def initialize(place_of_supply_scheme: nil)
|
1596
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1597
|
+
end
|
1598
|
+
end
|
1599
|
+
# Options for the standard registration.
|
1600
|
+
attr_accessor :standard
|
1601
|
+
|
1602
|
+
# Type of registration to be created in an EU country.
|
1603
|
+
attr_accessor :type
|
1604
|
+
|
1605
|
+
def initialize(standard: nil, type: nil)
|
1606
|
+
@standard = standard
|
1607
|
+
@type = type
|
1608
|
+
end
|
1609
|
+
end
|
1610
|
+
|
1611
|
+
class Sg < Stripe::RequestParams
|
1612
|
+
# Type of registration to be created in `country`.
|
1613
|
+
attr_accessor :type
|
1614
|
+
|
1615
|
+
def initialize(type: nil)
|
1616
|
+
@type = type
|
1617
|
+
end
|
1618
|
+
end
|
1619
|
+
|
1620
|
+
class Si < Stripe::RequestParams
|
1621
|
+
class Standard < Stripe::RequestParams
|
1622
|
+
# Place of supply scheme used in an EU standard registration.
|
1623
|
+
attr_accessor :place_of_supply_scheme
|
1624
|
+
|
1625
|
+
def initialize(place_of_supply_scheme: nil)
|
1626
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1627
|
+
end
|
1628
|
+
end
|
1629
|
+
# Options for the standard registration.
|
1630
|
+
attr_accessor :standard
|
1631
|
+
|
1632
|
+
# Type of registration to be created in an EU country.
|
1633
|
+
attr_accessor :type
|
1634
|
+
|
1635
|
+
def initialize(standard: nil, type: nil)
|
1636
|
+
@standard = standard
|
1637
|
+
@type = type
|
1638
|
+
end
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
class Sk < Stripe::RequestParams
|
1642
|
+
class Standard < Stripe::RequestParams
|
1643
|
+
# Place of supply scheme used in an EU standard registration.
|
1644
|
+
attr_accessor :place_of_supply_scheme
|
1645
|
+
|
1646
|
+
def initialize(place_of_supply_scheme: nil)
|
1647
|
+
@place_of_supply_scheme = place_of_supply_scheme
|
1648
|
+
end
|
1649
|
+
end
|
1650
|
+
# Options for the standard registration.
|
1651
|
+
attr_accessor :standard
|
1652
|
+
|
1653
|
+
# Type of registration to be created in an EU country.
|
1654
|
+
attr_accessor :type
|
1655
|
+
|
1656
|
+
def initialize(standard: nil, type: nil)
|
1657
|
+
@standard = standard
|
1658
|
+
@type = type
|
1659
|
+
end
|
1660
|
+
end
|
1661
|
+
|
1662
|
+
class Th < Stripe::RequestParams
|
1663
|
+
# Type of registration to be created in `country`.
|
1664
|
+
attr_accessor :type
|
1665
|
+
|
1666
|
+
def initialize(type: nil)
|
1667
|
+
@type = type
|
1668
|
+
end
|
1669
|
+
end
|
1670
|
+
|
1671
|
+
class Tr < Stripe::RequestParams
|
1672
|
+
# Type of registration to be created in `country`.
|
1673
|
+
attr_accessor :type
|
1674
|
+
|
1675
|
+
def initialize(type: nil)
|
1676
|
+
@type = type
|
1677
|
+
end
|
1678
|
+
end
|
1679
|
+
|
1680
|
+
class Tz < Stripe::RequestParams
|
1681
|
+
# Type of registration to be created in `country`.
|
1682
|
+
attr_accessor :type
|
1683
|
+
|
1684
|
+
def initialize(type: nil)
|
1685
|
+
@type = type
|
1686
|
+
end
|
1687
|
+
end
|
1688
|
+
|
1689
|
+
class Us < Stripe::RequestParams
|
1690
|
+
class LocalAmusementTax < Stripe::RequestParams
|
1691
|
+
# 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), and `68081` (Schiller Park).
|
1692
|
+
attr_accessor :jurisdiction
|
1693
|
+
|
1694
|
+
def initialize(jurisdiction: nil)
|
1695
|
+
@jurisdiction = jurisdiction
|
1696
|
+
end
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
class LocalLeaseTax < Stripe::RequestParams
|
1700
|
+
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `14000` (Chicago).
|
1701
|
+
attr_accessor :jurisdiction
|
1702
|
+
|
1703
|
+
def initialize(jurisdiction: nil)
|
1704
|
+
@jurisdiction = jurisdiction
|
1705
|
+
end
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
class StateSalesTax < Stripe::RequestParams
|
1709
|
+
class Election < Stripe::RequestParams
|
1710
|
+
# A [FIPS code](https://www.census.gov/library/reference/code-lists/ansi.html) representing the local jurisdiction. Supported FIPS codes are: `003` (Allegheny County) and `60000` (Philadelphia City).
|
1711
|
+
attr_accessor :jurisdiction
|
1712
|
+
|
1713
|
+
# The type of the election for the state sales tax registration.
|
1714
|
+
attr_accessor :type
|
1715
|
+
|
1716
|
+
def initialize(jurisdiction: nil, type: nil)
|
1717
|
+
@jurisdiction = jurisdiction
|
1718
|
+
@type = type
|
1719
|
+
end
|
1720
|
+
end
|
1721
|
+
# Elections for the state sales tax registration.
|
1722
|
+
attr_accessor :elections
|
1723
|
+
|
1724
|
+
def initialize(elections: nil)
|
1725
|
+
@elections = elections
|
1726
|
+
end
|
1727
|
+
end
|
1728
|
+
# Options for the local amusement tax registration.
|
1729
|
+
attr_accessor :local_amusement_tax
|
1730
|
+
|
1731
|
+
# Options for the local lease tax registration.
|
1732
|
+
attr_accessor :local_lease_tax
|
1733
|
+
|
1734
|
+
# Two-letter US state code ([ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2)).
|
1735
|
+
attr_accessor :state
|
1736
|
+
|
1737
|
+
# Options for the state sales tax registration.
|
1738
|
+
attr_accessor :state_sales_tax
|
1739
|
+
|
1740
|
+
# Type of registration to be created in the US.
|
1741
|
+
attr_accessor :type
|
1742
|
+
|
1743
|
+
def initialize(
|
1744
|
+
local_amusement_tax: nil,
|
1745
|
+
local_lease_tax: nil,
|
1746
|
+
state: nil,
|
1747
|
+
state_sales_tax: nil,
|
1748
|
+
type: nil
|
1749
|
+
)
|
1750
|
+
@local_amusement_tax = local_amusement_tax
|
1751
|
+
@local_lease_tax = local_lease_tax
|
1752
|
+
@state = state
|
1753
|
+
@state_sales_tax = state_sales_tax
|
1754
|
+
@type = type
|
1755
|
+
end
|
1756
|
+
end
|
1757
|
+
|
1758
|
+
class Uz < Stripe::RequestParams
|
1759
|
+
# Type of registration to be created in `country`.
|
1760
|
+
attr_accessor :type
|
1761
|
+
|
1762
|
+
def initialize(type: nil)
|
1763
|
+
@type = type
|
1764
|
+
end
|
1765
|
+
end
|
1766
|
+
|
1767
|
+
class Vn < Stripe::RequestParams
|
1768
|
+
# Type of registration to be created in `country`.
|
1769
|
+
attr_accessor :type
|
1770
|
+
|
1771
|
+
def initialize(type: nil)
|
1772
|
+
@type = type
|
1773
|
+
end
|
1774
|
+
end
|
1775
|
+
|
1776
|
+
class Za < Stripe::RequestParams
|
1777
|
+
# Type of registration to be created in `country`.
|
1778
|
+
attr_accessor :type
|
1779
|
+
|
1780
|
+
def initialize(type: nil)
|
1781
|
+
@type = type
|
1782
|
+
end
|
1783
|
+
end
|
1784
|
+
# Options for the registration in AE.
|
1785
|
+
attr_accessor :ae
|
1786
|
+
|
1787
|
+
# Options for the registration in AT.
|
1788
|
+
attr_accessor :at
|
1789
|
+
|
1790
|
+
# Options for the registration in AU.
|
1791
|
+
attr_accessor :au
|
1792
|
+
|
1793
|
+
# Options for the registration in BE.
|
1794
|
+
attr_accessor :be
|
1795
|
+
|
1796
|
+
# Options for the registration in BG.
|
1797
|
+
attr_accessor :bg
|
1798
|
+
|
1799
|
+
# Options for the registration in BH.
|
1800
|
+
attr_accessor :bh
|
1801
|
+
|
1802
|
+
# Options for the registration in BY.
|
1803
|
+
attr_accessor :by
|
1804
|
+
|
1805
|
+
# Options for the registration in CA.
|
1806
|
+
attr_accessor :ca
|
1807
|
+
|
1808
|
+
# Options for the registration in CH.
|
1809
|
+
attr_accessor :ch
|
1810
|
+
|
1811
|
+
# Options for the registration in CL.
|
1812
|
+
attr_accessor :cl
|
1813
|
+
|
1814
|
+
# Options for the registration in CO.
|
1815
|
+
attr_accessor :co
|
1816
|
+
|
1817
|
+
# Options for the registration in CR.
|
1818
|
+
attr_accessor :cr
|
1819
|
+
|
1820
|
+
# Options for the registration in CY.
|
1821
|
+
attr_accessor :cy
|
1822
|
+
|
1823
|
+
# Options for the registration in CZ.
|
1824
|
+
attr_accessor :cz
|
1825
|
+
|
1826
|
+
# Options for the registration in DE.
|
1827
|
+
attr_accessor :de
|
1828
|
+
|
1829
|
+
# Options for the registration in DK.
|
1830
|
+
attr_accessor :dk
|
1831
|
+
|
1832
|
+
# Options for the registration in EC.
|
1833
|
+
attr_accessor :ec
|
1834
|
+
|
1835
|
+
# Options for the registration in EE.
|
1836
|
+
attr_accessor :ee
|
1837
|
+
|
1838
|
+
# Options for the registration in EG.
|
1839
|
+
attr_accessor :eg
|
1840
|
+
|
1841
|
+
# Options for the registration in ES.
|
1842
|
+
attr_accessor :es
|
1843
|
+
|
1844
|
+
# Options for the registration in FI.
|
1845
|
+
attr_accessor :fi
|
1846
|
+
|
1847
|
+
# Options for the registration in FR.
|
1848
|
+
attr_accessor :fr
|
1849
|
+
|
1850
|
+
# Options for the registration in GB.
|
1851
|
+
attr_accessor :gb
|
1852
|
+
|
1853
|
+
# Options for the registration in GE.
|
1854
|
+
attr_accessor :ge
|
1855
|
+
|
1856
|
+
# Options for the registration in GR.
|
1857
|
+
attr_accessor :gr
|
1858
|
+
|
1859
|
+
# Options for the registration in HR.
|
1860
|
+
attr_accessor :hr
|
1861
|
+
|
1862
|
+
# Options for the registration in HU.
|
1863
|
+
attr_accessor :hu
|
1864
|
+
|
1865
|
+
# Options for the registration in ID.
|
1866
|
+
attr_accessor :id
|
1867
|
+
|
1868
|
+
# Options for the registration in IE.
|
1869
|
+
attr_accessor :ie
|
1870
|
+
|
1871
|
+
# Options for the registration in IS.
|
1872
|
+
attr_accessor :is
|
1873
|
+
|
1874
|
+
# Options for the registration in IT.
|
1875
|
+
attr_accessor :it
|
1876
|
+
|
1877
|
+
# Options for the registration in JP.
|
1878
|
+
attr_accessor :jp
|
1879
|
+
|
1880
|
+
# Options for the registration in KE.
|
1881
|
+
attr_accessor :ke
|
1882
|
+
|
1883
|
+
# Options for the registration in KR.
|
1884
|
+
attr_accessor :kr
|
1885
|
+
|
1886
|
+
# Options for the registration in KZ.
|
1887
|
+
attr_accessor :kz
|
1888
|
+
|
1889
|
+
# Options for the registration in LT.
|
1890
|
+
attr_accessor :lt
|
1891
|
+
|
1892
|
+
# Options for the registration in LU.
|
1893
|
+
attr_accessor :lu
|
1894
|
+
|
1895
|
+
# Options for the registration in LV.
|
1896
|
+
attr_accessor :lv
|
1897
|
+
|
1898
|
+
# Options for the registration in MA.
|
1899
|
+
attr_accessor :ma
|
1900
|
+
|
1901
|
+
# Options for the registration in MD.
|
1902
|
+
attr_accessor :md
|
1903
|
+
|
1904
|
+
# Options for the registration in MT.
|
1905
|
+
attr_accessor :mt
|
1906
|
+
|
1907
|
+
# Options for the registration in MX.
|
1908
|
+
attr_accessor :mx
|
1909
|
+
|
1910
|
+
# Options for the registration in MY.
|
1911
|
+
attr_accessor :my
|
1912
|
+
|
1913
|
+
# Options for the registration in NG.
|
1914
|
+
attr_accessor :ng
|
1915
|
+
|
1916
|
+
# Options for the registration in NL.
|
1917
|
+
attr_accessor :nl
|
1918
|
+
|
1919
|
+
# Options for the registration in NO.
|
1920
|
+
attr_accessor :no
|
1921
|
+
|
1922
|
+
# Options for the registration in NZ.
|
1923
|
+
attr_accessor :nz
|
1924
|
+
|
1925
|
+
# Options for the registration in OM.
|
1926
|
+
attr_accessor :om
|
1927
|
+
|
1928
|
+
# Options for the registration in PL.
|
1929
|
+
attr_accessor :pl
|
1930
|
+
|
1931
|
+
# Options for the registration in PT.
|
1932
|
+
attr_accessor :pt
|
1933
|
+
|
1934
|
+
# Options for the registration in RO.
|
1935
|
+
attr_accessor :ro
|
1936
|
+
|
1937
|
+
# Options for the registration in RS.
|
1938
|
+
attr_accessor :rs
|
1939
|
+
|
1940
|
+
# Options for the registration in RU.
|
1941
|
+
attr_accessor :ru
|
1942
|
+
|
1943
|
+
# Options for the registration in SA.
|
1944
|
+
attr_accessor :sa
|
1945
|
+
|
1946
|
+
# Options for the registration in SE.
|
1947
|
+
attr_accessor :se
|
1948
|
+
|
1949
|
+
# Options for the registration in SG.
|
1950
|
+
attr_accessor :sg
|
1951
|
+
|
1952
|
+
# Options for the registration in SI.
|
1953
|
+
attr_accessor :si
|
1954
|
+
|
1955
|
+
# Options for the registration in SK.
|
1956
|
+
attr_accessor :sk
|
1957
|
+
|
1958
|
+
# Options for the registration in TH.
|
1959
|
+
attr_accessor :th
|
1960
|
+
|
1961
|
+
# Options for the registration in TR.
|
1962
|
+
attr_accessor :tr
|
1963
|
+
|
1964
|
+
# Options for the registration in TZ.
|
1965
|
+
attr_accessor :tz
|
1966
|
+
|
1967
|
+
# Options for the registration in US.
|
1968
|
+
attr_accessor :us
|
1969
|
+
|
1970
|
+
# Options for the registration in UZ.
|
1971
|
+
attr_accessor :uz
|
1972
|
+
|
1973
|
+
# Options for the registration in VN.
|
1974
|
+
attr_accessor :vn
|
1975
|
+
|
1976
|
+
# Options for the registration in ZA.
|
1977
|
+
attr_accessor :za
|
1978
|
+
|
1979
|
+
def initialize(
|
1980
|
+
ae: nil,
|
1981
|
+
at: nil,
|
1982
|
+
au: nil,
|
1983
|
+
be: nil,
|
1984
|
+
bg: nil,
|
1985
|
+
bh: nil,
|
1986
|
+
by: nil,
|
1987
|
+
ca: nil,
|
1988
|
+
ch: nil,
|
1989
|
+
cl: nil,
|
1990
|
+
co: nil,
|
1991
|
+
cr: nil,
|
1992
|
+
cy: nil,
|
1993
|
+
cz: nil,
|
1994
|
+
de: nil,
|
1995
|
+
dk: nil,
|
1996
|
+
ec: nil,
|
1997
|
+
ee: nil,
|
1998
|
+
eg: nil,
|
1999
|
+
es: nil,
|
2000
|
+
fi: nil,
|
2001
|
+
fr: nil,
|
2002
|
+
gb: nil,
|
2003
|
+
ge: nil,
|
2004
|
+
gr: nil,
|
2005
|
+
hr: nil,
|
2006
|
+
hu: nil,
|
2007
|
+
id: nil,
|
2008
|
+
ie: nil,
|
2009
|
+
is: nil,
|
2010
|
+
it: nil,
|
2011
|
+
jp: nil,
|
2012
|
+
ke: nil,
|
2013
|
+
kr: nil,
|
2014
|
+
kz: nil,
|
2015
|
+
lt: nil,
|
2016
|
+
lu: nil,
|
2017
|
+
lv: nil,
|
2018
|
+
ma: nil,
|
2019
|
+
md: nil,
|
2020
|
+
mt: nil,
|
2021
|
+
mx: nil,
|
2022
|
+
my: nil,
|
2023
|
+
ng: nil,
|
2024
|
+
nl: nil,
|
2025
|
+
no: nil,
|
2026
|
+
nz: nil,
|
2027
|
+
om: nil,
|
2028
|
+
pl: nil,
|
2029
|
+
pt: nil,
|
2030
|
+
ro: nil,
|
2031
|
+
rs: nil,
|
2032
|
+
ru: nil,
|
2033
|
+
sa: nil,
|
2034
|
+
se: nil,
|
2035
|
+
sg: nil,
|
2036
|
+
si: nil,
|
2037
|
+
sk: nil,
|
2038
|
+
th: nil,
|
2039
|
+
tr: nil,
|
2040
|
+
tz: nil,
|
2041
|
+
us: nil,
|
2042
|
+
uz: nil,
|
2043
|
+
vn: nil,
|
2044
|
+
za: nil
|
2045
|
+
)
|
2046
|
+
@ae = ae
|
2047
|
+
@at = at
|
2048
|
+
@au = au
|
2049
|
+
@be = be
|
2050
|
+
@bg = bg
|
2051
|
+
@bh = bh
|
2052
|
+
@by = by
|
2053
|
+
@ca = ca
|
2054
|
+
@ch = ch
|
2055
|
+
@cl = cl
|
2056
|
+
@co = co
|
2057
|
+
@cr = cr
|
2058
|
+
@cy = cy
|
2059
|
+
@cz = cz
|
2060
|
+
@de = de
|
2061
|
+
@dk = dk
|
2062
|
+
@ec = ec
|
2063
|
+
@ee = ee
|
2064
|
+
@eg = eg
|
2065
|
+
@es = es
|
2066
|
+
@fi = fi
|
2067
|
+
@fr = fr
|
2068
|
+
@gb = gb
|
2069
|
+
@ge = ge
|
2070
|
+
@gr = gr
|
2071
|
+
@hr = hr
|
2072
|
+
@hu = hu
|
2073
|
+
@id = id
|
2074
|
+
@ie = ie
|
2075
|
+
@is = is
|
2076
|
+
@it = it
|
2077
|
+
@jp = jp
|
2078
|
+
@ke = ke
|
2079
|
+
@kr = kr
|
2080
|
+
@kz = kz
|
2081
|
+
@lt = lt
|
2082
|
+
@lu = lu
|
2083
|
+
@lv = lv
|
2084
|
+
@ma = ma
|
2085
|
+
@md = md
|
2086
|
+
@mt = mt
|
2087
|
+
@mx = mx
|
2088
|
+
@my = my
|
2089
|
+
@ng = ng
|
2090
|
+
@nl = nl
|
2091
|
+
@no = no
|
2092
|
+
@nz = nz
|
2093
|
+
@om = om
|
2094
|
+
@pl = pl
|
2095
|
+
@pt = pt
|
2096
|
+
@ro = ro
|
2097
|
+
@rs = rs
|
2098
|
+
@ru = ru
|
2099
|
+
@sa = sa
|
2100
|
+
@se = se
|
2101
|
+
@sg = sg
|
2102
|
+
@si = si
|
2103
|
+
@sk = sk
|
2104
|
+
@th = th
|
2105
|
+
@tr = tr
|
2106
|
+
@tz = tz
|
2107
|
+
@us = us
|
2108
|
+
@uz = uz
|
2109
|
+
@vn = vn
|
2110
|
+
@za = za
|
2111
|
+
end
|
2112
|
+
end
|
2113
|
+
# Time at which the Tax Registration becomes active. It can be either `now` to indicate the current time, or a future timestamp measured in seconds since the Unix epoch.
|
2114
|
+
attr_accessor :active_from
|
2115
|
+
|
2116
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
2117
|
+
attr_accessor :country
|
2118
|
+
|
2119
|
+
# Specific options for a registration in the specified `country`.
|
2120
|
+
attr_accessor :country_options
|
2121
|
+
|
2122
|
+
# Specifies which fields in the response should be expanded.
|
2123
|
+
attr_accessor :expand
|
2124
|
+
|
2125
|
+
# If set, the Tax Registration stops being active at this time. If not set, the Tax Registration will be active indefinitely. Timestamp measured in seconds since the Unix epoch.
|
2126
|
+
attr_accessor :expires_at
|
2127
|
+
|
2128
|
+
def initialize(
|
2129
|
+
active_from: nil,
|
2130
|
+
country: nil,
|
2131
|
+
country_options: nil,
|
2132
|
+
expand: nil,
|
2133
|
+
expires_at: nil
|
2134
|
+
)
|
2135
|
+
@active_from = active_from
|
2136
|
+
@country = country
|
2137
|
+
@country_options = country_options
|
2138
|
+
@expand = expand
|
2139
|
+
@expires_at = expires_at
|
2140
|
+
end
|
2141
|
+
end
|
2142
|
+
|
2143
|
+
class RetrieveParams < Stripe::RequestParams
|
2144
|
+
# Specifies which fields in the response should be expanded.
|
2145
|
+
attr_accessor :expand
|
2146
|
+
|
2147
|
+
def initialize(expand: nil)
|
2148
|
+
@expand = expand
|
2149
|
+
end
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
class UpdateParams < Stripe::RequestParams
|
2153
|
+
# Time at which the registration becomes active. It can be either `now` to indicate the current time, or a timestamp measured in seconds since the Unix epoch.
|
2154
|
+
attr_accessor :active_from
|
2155
|
+
|
2156
|
+
# Specifies which fields in the response should be expanded.
|
2157
|
+
attr_accessor :expand
|
2158
|
+
|
2159
|
+
# If set, the registration stops being active at this time. If not set, the registration will be active indefinitely. It can be either `now` to indicate the current time, or a timestamp measured in seconds since the Unix epoch.
|
2160
|
+
attr_accessor :expires_at
|
2161
|
+
|
2162
|
+
def initialize(active_from: nil, expand: nil, expires_at: nil)
|
2163
|
+
@active_from = active_from
|
2164
|
+
@expand = expand
|
2165
|
+
@expires_at = expires_at
|
2166
|
+
end
|
2167
|
+
end
|
2168
|
+
# Time at which the registration becomes active. Measured in seconds since the Unix epoch.
|
2169
|
+
attr_reader :active_from
|
2170
|
+
|
2171
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
2172
|
+
attr_reader :country
|
2173
|
+
|
2174
|
+
# Attribute for field country_options
|
2175
|
+
attr_reader :country_options
|
2176
|
+
|
2177
|
+
# Time at which the object was created. Measured in seconds since the Unix epoch.
|
2178
|
+
attr_reader :created
|
2179
|
+
|
2180
|
+
# If set, the registration stops being active at this time. If not set, the registration will be active indefinitely. Measured in seconds since the Unix epoch.
|
2181
|
+
attr_reader :expires_at
|
2182
|
+
|
2183
|
+
# Unique identifier for the object.
|
2184
|
+
attr_reader :id
|
2185
|
+
|
2186
|
+
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
2187
|
+
attr_reader :livemode
|
2188
|
+
|
2189
|
+
# String representing the object's type. Objects of the same type share the same value.
|
2190
|
+
attr_reader :object
|
2191
|
+
|
2192
|
+
# The status of the registration. This field is present for convenience and can be deduced from `active_from` and `expires_at`.
|
2193
|
+
attr_reader :status
|
2194
|
+
|
21
2195
|
# Creates a new Tax Registration object.
|
22
2196
|
def self.create(params = {}, opts = {})
|
23
2197
|
request_stripe_object(
|