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
@@ -0,0 +1,107 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# typed: true
|
5
|
+
module Stripe
|
6
|
+
module Tax
|
7
|
+
# A Tax Association exposes the Tax Transactions that Stripe attempted to create on your behalf based on the PaymentIntent input
|
8
|
+
class Association < APIResource
|
9
|
+
class StatusDetails < Stripe::StripeObject
|
10
|
+
class Committed < Stripe::StripeObject
|
11
|
+
class Reversal < Stripe::StripeObject
|
12
|
+
class StatusDetails < Stripe::StripeObject
|
13
|
+
class Committed < Stripe::StripeObject
|
14
|
+
# The [Tax Transaction](https://stripe.com/docs/api/tax/transaction/object)
|
15
|
+
sig { returns(String) }
|
16
|
+
attr_reader :transaction
|
17
|
+
end
|
18
|
+
class Errored < Stripe::StripeObject
|
19
|
+
# Details on why we could not commit the reversal Tax Transaction
|
20
|
+
sig { returns(String) }
|
21
|
+
attr_reader :reason
|
22
|
+
|
23
|
+
# The [Refund](https://stripe.com/docs/api/refunds/object) ID that should have created a tax reversal.
|
24
|
+
sig { returns(String) }
|
25
|
+
attr_reader :refund_id
|
26
|
+
end
|
27
|
+
# Attribute for field committed
|
28
|
+
sig { returns(Committed) }
|
29
|
+
attr_reader :committed
|
30
|
+
|
31
|
+
# Attribute for field errored
|
32
|
+
sig { returns(Errored) }
|
33
|
+
attr_reader :errored
|
34
|
+
end
|
35
|
+
# Status of the attempted Tax Transaction reversal.
|
36
|
+
sig { returns(String) }
|
37
|
+
attr_reader :status
|
38
|
+
|
39
|
+
# Attribute for field status_details
|
40
|
+
sig { returns(StatusDetails) }
|
41
|
+
attr_reader :status_details
|
42
|
+
end
|
43
|
+
# Attempts to create Tax Transaction reversals
|
44
|
+
sig { returns(T::Array[Reversal]) }
|
45
|
+
attr_reader :reversals
|
46
|
+
|
47
|
+
# The [Tax Transaction](https://stripe.com/docs/api/tax/transaction/object)
|
48
|
+
sig { returns(String) }
|
49
|
+
attr_reader :transaction
|
50
|
+
end
|
51
|
+
class Errored < Stripe::StripeObject
|
52
|
+
# Details on why we could not commit the Tax Transaction
|
53
|
+
sig { returns(String) }
|
54
|
+
attr_reader :reason
|
55
|
+
end
|
56
|
+
# Attribute for field committed
|
57
|
+
sig { returns(Committed) }
|
58
|
+
attr_reader :committed
|
59
|
+
|
60
|
+
# Attribute for field errored
|
61
|
+
sig { returns(Errored) }
|
62
|
+
attr_reader :errored
|
63
|
+
end
|
64
|
+
# The [Tax Calculation](https://stripe.com/docs/api/tax/calculations/object) that was included in PaymentIntent.
|
65
|
+
sig { returns(String) }
|
66
|
+
attr_reader :calculation
|
67
|
+
|
68
|
+
# Unique identifier for the object.
|
69
|
+
sig { returns(String) }
|
70
|
+
attr_reader :id
|
71
|
+
|
72
|
+
# String representing the object's type. Objects of the same type share the same value.
|
73
|
+
sig { returns(String) }
|
74
|
+
attr_reader :object
|
75
|
+
|
76
|
+
# The [PaymentIntent](https://stripe.com/docs/api/payment_intents/object) that this Tax Association is tracking.
|
77
|
+
sig { returns(String) }
|
78
|
+
attr_reader :payment_intent
|
79
|
+
|
80
|
+
# Status of the Tax Association.
|
81
|
+
sig { returns(String) }
|
82
|
+
attr_reader :status
|
83
|
+
|
84
|
+
# Attribute for field status_details
|
85
|
+
sig { returns(StatusDetails) }
|
86
|
+
attr_reader :status_details
|
87
|
+
|
88
|
+
class FindParams < Stripe::RequestParams
|
89
|
+
# Specifies which fields in the response should be expanded.
|
90
|
+
sig { returns(T::Array[String]) }
|
91
|
+
attr_accessor :expand
|
92
|
+
|
93
|
+
# Valid [PaymentIntent](https://stripe.com/docs/api/payment_intents/object) id
|
94
|
+
sig { returns(String) }
|
95
|
+
attr_accessor :payment_intent
|
96
|
+
|
97
|
+
sig { params(expand: T::Array[String], payment_intent: String).void }
|
98
|
+
def initialize(expand: nil, payment_intent: nil); end
|
99
|
+
end
|
100
|
+
# Finds a tax association object by PaymentIntent id.
|
101
|
+
sig {
|
102
|
+
params(params: T.any(::Stripe::Tax::Association::FindParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Tax::Association)
|
103
|
+
}
|
104
|
+
def self.find(params = {}, opts = {}); end
|
105
|
+
end
|
106
|
+
end
|
107
|
+
end
|
@@ -0,0 +1,577 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# typed: true
|
5
|
+
module Stripe
|
6
|
+
module Tax
|
7
|
+
# A Tax Calculation allows you to calculate the tax to collect from your customer.
|
8
|
+
#
|
9
|
+
# Related guide: [Calculate tax in your custom payment flow](https://stripe.com/docs/tax/custom)
|
10
|
+
class Calculation < APIResource
|
11
|
+
class CustomerDetails < Stripe::StripeObject
|
12
|
+
class Address < Stripe::StripeObject
|
13
|
+
# City, district, suburb, town, or village.
|
14
|
+
sig { returns(T.nilable(String)) }
|
15
|
+
attr_reader :city
|
16
|
+
|
17
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
18
|
+
sig { returns(String) }
|
19
|
+
attr_reader :country
|
20
|
+
|
21
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
22
|
+
sig { returns(T.nilable(String)) }
|
23
|
+
attr_reader :line1
|
24
|
+
|
25
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
26
|
+
sig { returns(T.nilable(String)) }
|
27
|
+
attr_reader :line2
|
28
|
+
|
29
|
+
# ZIP or postal code.
|
30
|
+
sig { returns(T.nilable(String)) }
|
31
|
+
attr_reader :postal_code
|
32
|
+
|
33
|
+
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
34
|
+
sig { returns(T.nilable(String)) }
|
35
|
+
attr_reader :state
|
36
|
+
end
|
37
|
+
class TaxId < Stripe::StripeObject
|
38
|
+
# The type of the tax ID, one of `ad_nrt`, `ar_cuit`, `eu_vat`, `bo_tin`, `br_cnpj`, `br_cpf`, `cn_tin`, `co_nit`, `cr_tin`, `do_rcn`, `ec_ruc`, `eu_oss_vat`, `hr_oib`, `pe_ruc`, `ro_tin`, `rs_pib`, `sv_nit`, `uy_ruc`, `ve_rif`, `vn_tin`, `gb_vat`, `nz_gst`, `au_abn`, `au_arn`, `in_gst`, `no_vat`, `no_voec`, `za_vat`, `ch_vat`, `mx_rfc`, `sg_uen`, `ru_inn`, `ru_kpp`, `ca_bn`, `hk_br`, `es_cif`, `tw_vat`, `th_vat`, `jp_cn`, `jp_rn`, `jp_trn`, `li_uid`, `li_vat`, `my_itn`, `us_ein`, `kr_brn`, `ca_qst`, `ca_gst_hst`, `ca_pst_bc`, `ca_pst_mb`, `ca_pst_sk`, `my_sst`, `sg_gst`, `ae_trn`, `cl_tin`, `sa_vat`, `id_npwp`, `my_frp`, `il_vat`, `ge_vat`, `ua_vat`, `is_vat`, `bg_uic`, `hu_tin`, `si_tin`, `ke_pin`, `tr_tin`, `eg_tin`, `ph_tin`, `bh_vat`, `kz_bin`, `ng_tin`, `om_vat`, `de_stn`, `ch_uid`, `tz_vat`, `uz_vat`, `uz_tin`, `md_vat`, `ma_vat`, `by_tin`, `ao_tin`, `bs_tin`, `bb_tin`, `cd_nif`, `mr_nif`, `me_pib`, `zw_tin`, `ba_tin`, `gn_nif`, `mk_vat`, `sr_fin`, `sn_ninea`, `am_tin`, `np_pan`, `tj_tin`, `ug_tin`, `zm_tin`, `kh_tin`, or `unknown`
|
39
|
+
sig { returns(String) }
|
40
|
+
attr_reader :type
|
41
|
+
|
42
|
+
# The value of the tax ID.
|
43
|
+
sig { returns(String) }
|
44
|
+
attr_reader :value
|
45
|
+
end
|
46
|
+
# The customer's postal address (for example, home or business location).
|
47
|
+
sig { returns(T.nilable(Address)) }
|
48
|
+
attr_reader :address
|
49
|
+
|
50
|
+
# The type of customer address provided.
|
51
|
+
sig { returns(T.nilable(String)) }
|
52
|
+
attr_reader :address_source
|
53
|
+
|
54
|
+
# The customer's IP address (IPv4 or IPv6).
|
55
|
+
sig { returns(T.nilable(String)) }
|
56
|
+
attr_reader :ip_address
|
57
|
+
|
58
|
+
# The customer's tax IDs (for example, EU VAT numbers).
|
59
|
+
sig { returns(T::Array[TaxId]) }
|
60
|
+
attr_reader :tax_ids
|
61
|
+
|
62
|
+
# The taxability override used for taxation.
|
63
|
+
sig { returns(String) }
|
64
|
+
attr_reader :taxability_override
|
65
|
+
end
|
66
|
+
class ShipFromDetails < Stripe::StripeObject
|
67
|
+
class Address < Stripe::StripeObject
|
68
|
+
# City, district, suburb, town, or village.
|
69
|
+
sig { returns(T.nilable(String)) }
|
70
|
+
attr_reader :city
|
71
|
+
|
72
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
73
|
+
sig { returns(String) }
|
74
|
+
attr_reader :country
|
75
|
+
|
76
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
77
|
+
sig { returns(T.nilable(String)) }
|
78
|
+
attr_reader :line1
|
79
|
+
|
80
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
81
|
+
sig { returns(T.nilable(String)) }
|
82
|
+
attr_reader :line2
|
83
|
+
|
84
|
+
# ZIP or postal code.
|
85
|
+
sig { returns(T.nilable(String)) }
|
86
|
+
attr_reader :postal_code
|
87
|
+
|
88
|
+
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
89
|
+
sig { returns(T.nilable(String)) }
|
90
|
+
attr_reader :state
|
91
|
+
end
|
92
|
+
# Attribute for field address
|
93
|
+
sig { returns(Address) }
|
94
|
+
attr_reader :address
|
95
|
+
end
|
96
|
+
class ShippingCost < Stripe::StripeObject
|
97
|
+
class TaxBreakdown < Stripe::StripeObject
|
98
|
+
class Jurisdiction < Stripe::StripeObject
|
99
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
100
|
+
sig { returns(String) }
|
101
|
+
attr_reader :country
|
102
|
+
|
103
|
+
# A human-readable name for the jurisdiction imposing the tax.
|
104
|
+
sig { returns(String) }
|
105
|
+
attr_reader :display_name
|
106
|
+
|
107
|
+
# Indicates the level of the jurisdiction imposing the tax.
|
108
|
+
sig { returns(String) }
|
109
|
+
attr_reader :level
|
110
|
+
|
111
|
+
# [ISO 3166-2 subdivision code](https://en.wikipedia.org/wiki/ISO_3166-2:US), without country prefix. For example, "NY" for New York, United States.
|
112
|
+
sig { returns(T.nilable(String)) }
|
113
|
+
attr_reader :state
|
114
|
+
end
|
115
|
+
class TaxRateDetails < Stripe::StripeObject
|
116
|
+
# A localized display name for tax type, intended to be human-readable. For example, "Local Sales and Use Tax", "Value-added tax (VAT)", or "Umsatzsteuer (USt.)".
|
117
|
+
sig { returns(String) }
|
118
|
+
attr_reader :display_name
|
119
|
+
|
120
|
+
# The tax rate percentage as a string. For example, 8.5% is represented as "8.5".
|
121
|
+
sig { returns(String) }
|
122
|
+
attr_reader :percentage_decimal
|
123
|
+
|
124
|
+
# The tax type, such as `vat` or `sales_tax`.
|
125
|
+
sig { returns(String) }
|
126
|
+
attr_reader :tax_type
|
127
|
+
end
|
128
|
+
# The amount of tax, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
129
|
+
sig { returns(Integer) }
|
130
|
+
attr_reader :amount
|
131
|
+
|
132
|
+
# Attribute for field jurisdiction
|
133
|
+
sig { returns(Jurisdiction) }
|
134
|
+
attr_reader :jurisdiction
|
135
|
+
|
136
|
+
# Indicates whether the jurisdiction was determined by the origin (merchant's address) or destination (customer's address).
|
137
|
+
sig { returns(String) }
|
138
|
+
attr_reader :sourcing
|
139
|
+
|
140
|
+
# Details regarding the rate for this tax. This field will be `null` when the tax is not imposed, for example if the product is exempt from tax.
|
141
|
+
sig { returns(T.nilable(TaxRateDetails)) }
|
142
|
+
attr_reader :tax_rate_details
|
143
|
+
|
144
|
+
# The reasoning behind this tax, for example, if the product is tax exempt. The possible values for this field may be extended as new tax rules are supported.
|
145
|
+
sig { returns(String) }
|
146
|
+
attr_reader :taxability_reason
|
147
|
+
|
148
|
+
# The amount on which tax is calculated, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
149
|
+
sig { returns(Integer) }
|
150
|
+
attr_reader :taxable_amount
|
151
|
+
end
|
152
|
+
# The shipping amount in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal). If `tax_behavior=inclusive`, then this amount includes taxes. Otherwise, taxes were calculated on top of this amount.
|
153
|
+
sig { returns(Integer) }
|
154
|
+
attr_reader :amount
|
155
|
+
|
156
|
+
# The amount of tax calculated for shipping, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
157
|
+
sig { returns(Integer) }
|
158
|
+
attr_reader :amount_tax
|
159
|
+
|
160
|
+
# The ID of an existing [ShippingRate](https://stripe.com/docs/api/shipping_rates/object).
|
161
|
+
sig { returns(String) }
|
162
|
+
attr_reader :shipping_rate
|
163
|
+
|
164
|
+
# Specifies whether the `amount` includes taxes. If `tax_behavior=inclusive`, then the amount includes taxes.
|
165
|
+
sig { returns(String) }
|
166
|
+
attr_reader :tax_behavior
|
167
|
+
|
168
|
+
# Detailed account of taxes relevant to shipping cost.
|
169
|
+
sig { returns(T::Array[TaxBreakdown]) }
|
170
|
+
attr_reader :tax_breakdown
|
171
|
+
|
172
|
+
# The [tax code](https://stripe.com/docs/tax/tax-categories) ID used for shipping.
|
173
|
+
sig { returns(String) }
|
174
|
+
attr_reader :tax_code
|
175
|
+
end
|
176
|
+
class TaxBreakdown < Stripe::StripeObject
|
177
|
+
class TaxRateDetails < Stripe::StripeObject
|
178
|
+
class FlatAmount < Stripe::StripeObject
|
179
|
+
# Amount of the tax when the `rate_type` is `flat_amount`. This positive integer represents how much to charge in the smallest currency unit (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).
|
180
|
+
sig { returns(Integer) }
|
181
|
+
attr_reader :amount
|
182
|
+
|
183
|
+
# Three-letter ISO currency code, in lowercase.
|
184
|
+
sig { returns(String) }
|
185
|
+
attr_reader :currency
|
186
|
+
end
|
187
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
188
|
+
sig { returns(T.nilable(String)) }
|
189
|
+
attr_reader :country
|
190
|
+
|
191
|
+
# The amount of the tax rate when the `rate_type` is `flat_amount`. Tax rates with `rate_type` `percentage` can vary based on the transaction, resulting in this field being `null`. This field exposes the amount and currency of the flat tax rate.
|
192
|
+
sig { returns(T.nilable(FlatAmount)) }
|
193
|
+
attr_reader :flat_amount
|
194
|
+
|
195
|
+
# The tax rate percentage as a string. For example, 8.5% is represented as `"8.5"`.
|
196
|
+
sig { returns(String) }
|
197
|
+
attr_reader :percentage_decimal
|
198
|
+
|
199
|
+
# Indicates the type of tax rate applied to the taxable amount. This value can be `null` when no tax applies to the location.
|
200
|
+
sig { returns(T.nilable(String)) }
|
201
|
+
attr_reader :rate_type
|
202
|
+
|
203
|
+
# State, county, province, or region.
|
204
|
+
sig { returns(T.nilable(String)) }
|
205
|
+
attr_reader :state
|
206
|
+
|
207
|
+
# The tax type, such as `vat` or `sales_tax`.
|
208
|
+
sig { returns(T.nilable(String)) }
|
209
|
+
attr_reader :tax_type
|
210
|
+
end
|
211
|
+
# The amount of tax, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
212
|
+
sig { returns(Integer) }
|
213
|
+
attr_reader :amount
|
214
|
+
|
215
|
+
# Specifies whether the tax amount is included in the line item amount.
|
216
|
+
sig { returns(T::Boolean) }
|
217
|
+
attr_reader :inclusive
|
218
|
+
|
219
|
+
# Attribute for field tax_rate_details
|
220
|
+
sig { returns(TaxRateDetails) }
|
221
|
+
attr_reader :tax_rate_details
|
222
|
+
|
223
|
+
# The reasoning behind this tax, for example, if the product is tax exempt. We might extend the possible values for this field to support new tax rules.
|
224
|
+
sig { returns(String) }
|
225
|
+
attr_reader :taxability_reason
|
226
|
+
|
227
|
+
# The amount on which tax is calculated, in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
228
|
+
sig { returns(Integer) }
|
229
|
+
attr_reader :taxable_amount
|
230
|
+
end
|
231
|
+
# Total amount after taxes in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
232
|
+
sig { returns(Integer) }
|
233
|
+
attr_reader :amount_total
|
234
|
+
|
235
|
+
# Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
|
236
|
+
sig { returns(String) }
|
237
|
+
attr_reader :currency
|
238
|
+
|
239
|
+
# The ID of an existing [Customer](https://stripe.com/docs/api/customers/object) used for the resource.
|
240
|
+
sig { returns(T.nilable(String)) }
|
241
|
+
attr_reader :customer
|
242
|
+
|
243
|
+
# Attribute for field customer_details
|
244
|
+
sig { returns(CustomerDetails) }
|
245
|
+
attr_reader :customer_details
|
246
|
+
|
247
|
+
# Timestamp of date at which the tax calculation will expire.
|
248
|
+
sig { returns(T.nilable(Integer)) }
|
249
|
+
attr_reader :expires_at
|
250
|
+
|
251
|
+
# Unique identifier for the calculation.
|
252
|
+
sig { returns(T.nilable(String)) }
|
253
|
+
attr_reader :id
|
254
|
+
|
255
|
+
# The list of items the customer is purchasing.
|
256
|
+
sig { returns(T.nilable(Stripe::ListObject)) }
|
257
|
+
attr_reader :line_items
|
258
|
+
|
259
|
+
# Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
260
|
+
sig { returns(T::Boolean) }
|
261
|
+
attr_reader :livemode
|
262
|
+
|
263
|
+
# String representing the object's type. Objects of the same type share the same value.
|
264
|
+
sig { returns(String) }
|
265
|
+
attr_reader :object
|
266
|
+
|
267
|
+
# The details of the ship from location, such as the address.
|
268
|
+
sig { returns(T.nilable(ShipFromDetails)) }
|
269
|
+
attr_reader :ship_from_details
|
270
|
+
|
271
|
+
# The shipping cost details for the calculation.
|
272
|
+
sig { returns(T.nilable(ShippingCost)) }
|
273
|
+
attr_reader :shipping_cost
|
274
|
+
|
275
|
+
# The amount of tax to be collected on top of the line item prices.
|
276
|
+
sig { returns(Integer) }
|
277
|
+
attr_reader :tax_amount_exclusive
|
278
|
+
|
279
|
+
# The amount of tax already included in the line item prices.
|
280
|
+
sig { returns(Integer) }
|
281
|
+
attr_reader :tax_amount_inclusive
|
282
|
+
|
283
|
+
# Breakdown of individual tax amounts that add up to the total.
|
284
|
+
sig { returns(T::Array[TaxBreakdown]) }
|
285
|
+
attr_reader :tax_breakdown
|
286
|
+
|
287
|
+
# Timestamp of date at which the tax rules and rates in effect applies for the calculation.
|
288
|
+
sig { returns(Integer) }
|
289
|
+
attr_reader :tax_date
|
290
|
+
|
291
|
+
class RetrieveParams < Stripe::RequestParams
|
292
|
+
# Specifies which fields in the response should be expanded.
|
293
|
+
sig { returns(T::Array[String]) }
|
294
|
+
attr_accessor :expand
|
295
|
+
|
296
|
+
sig { params(expand: T::Array[String]).void }
|
297
|
+
def initialize(expand: nil); end
|
298
|
+
end
|
299
|
+
class ListLineItemsParams < Stripe::RequestParams
|
300
|
+
# 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.
|
301
|
+
sig { returns(String) }
|
302
|
+
attr_accessor :ending_before
|
303
|
+
|
304
|
+
# Specifies which fields in the response should be expanded.
|
305
|
+
sig { returns(T::Array[String]) }
|
306
|
+
attr_accessor :expand
|
307
|
+
|
308
|
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
|
309
|
+
sig { returns(Integer) }
|
310
|
+
attr_accessor :limit
|
311
|
+
|
312
|
+
# 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.
|
313
|
+
sig { returns(String) }
|
314
|
+
attr_accessor :starting_after
|
315
|
+
|
316
|
+
sig {
|
317
|
+
params(ending_before: String, expand: T::Array[String], limit: Integer, starting_after: String).void
|
318
|
+
}
|
319
|
+
def initialize(ending_before: nil, expand: nil, limit: nil, starting_after: nil); end
|
320
|
+
end
|
321
|
+
class CreateParams < Stripe::RequestParams
|
322
|
+
class CustomerDetails < Stripe::RequestParams
|
323
|
+
class Address < Stripe::RequestParams
|
324
|
+
# City, district, suburb, town, or village.
|
325
|
+
sig { returns(T.nilable(String)) }
|
326
|
+
attr_accessor :city
|
327
|
+
|
328
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
329
|
+
sig { returns(String) }
|
330
|
+
attr_accessor :country
|
331
|
+
|
332
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
333
|
+
sig { returns(T.nilable(String)) }
|
334
|
+
attr_accessor :line1
|
335
|
+
|
336
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
337
|
+
sig { returns(T.nilable(String)) }
|
338
|
+
attr_accessor :line2
|
339
|
+
|
340
|
+
# ZIP or postal code.
|
341
|
+
sig { returns(T.nilable(String)) }
|
342
|
+
attr_accessor :postal_code
|
343
|
+
|
344
|
+
# State, county, province, or region. We recommend sending [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code value when possible.
|
345
|
+
sig { returns(T.nilable(String)) }
|
346
|
+
attr_accessor :state
|
347
|
+
|
348
|
+
sig {
|
349
|
+
params(city: T.nilable(String), country: String, line1: T.nilable(String), line2: T.nilable(String), postal_code: T.nilable(String), state: T.nilable(String)).void
|
350
|
+
}
|
351
|
+
def initialize(
|
352
|
+
city: nil,
|
353
|
+
country: nil,
|
354
|
+
line1: nil,
|
355
|
+
line2: nil,
|
356
|
+
postal_code: nil,
|
357
|
+
state: nil
|
358
|
+
); end
|
359
|
+
end
|
360
|
+
class TaxId < Stripe::RequestParams
|
361
|
+
# Type of the tax ID, one of `ad_nrt`, `ae_trn`, `am_tin`, `ao_tin`, `ar_cuit`, `au_abn`, `au_arn`, `ba_tin`, `bb_tin`, `bg_uic`, `bh_vat`, `bo_tin`, `br_cnpj`, `br_cpf`, `bs_tin`, `by_tin`, `ca_bn`, `ca_gst_hst`, `ca_pst_bc`, `ca_pst_mb`, `ca_pst_sk`, `ca_qst`, `cd_nif`, `ch_uid`, `ch_vat`, `cl_tin`, `cn_tin`, `co_nit`, `cr_tin`, `de_stn`, `do_rcn`, `ec_ruc`, `eg_tin`, `es_cif`, `eu_oss_vat`, `eu_vat`, `gb_vat`, `ge_vat`, `gn_nif`, `hk_br`, `hr_oib`, `hu_tin`, `id_npwp`, `il_vat`, `in_gst`, `is_vat`, `jp_cn`, `jp_rn`, `jp_trn`, `ke_pin`, `kh_tin`, `kr_brn`, `kz_bin`, `li_uid`, `li_vat`, `ma_vat`, `md_vat`, `me_pib`, `mk_vat`, `mr_nif`, `mx_rfc`, `my_frp`, `my_itn`, `my_sst`, `ng_tin`, `no_vat`, `no_voec`, `np_pan`, `nz_gst`, `om_vat`, `pe_ruc`, `ph_tin`, `ro_tin`, `rs_pib`, `ru_inn`, `ru_kpp`, `sa_vat`, `sg_gst`, `sg_uen`, `si_tin`, `sn_ninea`, `sr_fin`, `sv_nit`, `th_vat`, `tj_tin`, `tr_tin`, `tw_vat`, `tz_vat`, `ua_vat`, `ug_tin`, `us_ein`, `uy_ruc`, `uz_tin`, `uz_vat`, `ve_rif`, `vn_tin`, `za_vat`, `zm_tin`, or `zw_tin`
|
362
|
+
sig { returns(String) }
|
363
|
+
attr_accessor :type
|
364
|
+
|
365
|
+
# Value of the tax ID.
|
366
|
+
sig { returns(String) }
|
367
|
+
attr_accessor :value
|
368
|
+
|
369
|
+
sig { params(type: String, value: String).void }
|
370
|
+
def initialize(type: nil, value: nil); end
|
371
|
+
end
|
372
|
+
# The customer's postal address (for example, home or business location).
|
373
|
+
sig { returns(::Stripe::Tax::Calculation::CreateParams::CustomerDetails::Address) }
|
374
|
+
attr_accessor :address
|
375
|
+
|
376
|
+
# The type of customer address provided.
|
377
|
+
sig { returns(String) }
|
378
|
+
attr_accessor :address_source
|
379
|
+
|
380
|
+
# The customer's IP address (IPv4 or IPv6).
|
381
|
+
sig { returns(String) }
|
382
|
+
attr_accessor :ip_address
|
383
|
+
|
384
|
+
# The customer's tax IDs. Stripe Tax might consider a transaction with applicable tax IDs to be B2B, which might affect the tax calculation result. Stripe Tax doesn't validate tax IDs for correctness.
|
385
|
+
sig {
|
386
|
+
returns(T::Array[::Stripe::Tax::Calculation::CreateParams::CustomerDetails::TaxId])
|
387
|
+
}
|
388
|
+
attr_accessor :tax_ids
|
389
|
+
|
390
|
+
# Overrides the tax calculation result to allow you to not collect tax from your customer. Use this if you've manually checked your customer's tax exemptions. Prefer providing the customer's `tax_ids` where possible, which automatically determines whether `reverse_charge` applies.
|
391
|
+
sig { returns(String) }
|
392
|
+
attr_accessor :taxability_override
|
393
|
+
|
394
|
+
sig {
|
395
|
+
params(address: ::Stripe::Tax::Calculation::CreateParams::CustomerDetails::Address, address_source: String, ip_address: String, tax_ids: T::Array[::Stripe::Tax::Calculation::CreateParams::CustomerDetails::TaxId], taxability_override: String).void
|
396
|
+
}
|
397
|
+
def initialize(
|
398
|
+
address: nil,
|
399
|
+
address_source: nil,
|
400
|
+
ip_address: nil,
|
401
|
+
tax_ids: nil,
|
402
|
+
taxability_override: nil
|
403
|
+
); end
|
404
|
+
end
|
405
|
+
class LineItem < Stripe::RequestParams
|
406
|
+
# A positive integer representing the line item's total price in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
407
|
+
# If `tax_behavior=inclusive`, then this amount includes taxes. Otherwise, taxes are calculated on top of this amount.
|
408
|
+
sig { returns(Integer) }
|
409
|
+
attr_accessor :amount
|
410
|
+
|
411
|
+
# If provided, the product's `tax_code` will be used as the line item's `tax_code`.
|
412
|
+
sig { returns(String) }
|
413
|
+
attr_accessor :product
|
414
|
+
|
415
|
+
# The number of units of the item being purchased. Used to calculate the per-unit price from the total `amount` for the line. For example, if `amount=100` and `quantity=4`, the calculated unit price is 25.
|
416
|
+
sig { returns(Integer) }
|
417
|
+
attr_accessor :quantity
|
418
|
+
|
419
|
+
# A custom identifier for this line item, which must be unique across the line items in the calculation. The reference helps identify each line item in exported [tax reports](https://stripe.com/docs/tax/reports).
|
420
|
+
sig { returns(String) }
|
421
|
+
attr_accessor :reference
|
422
|
+
|
423
|
+
# Specifies whether the `amount` includes taxes. Defaults to `exclusive`.
|
424
|
+
sig { returns(String) }
|
425
|
+
attr_accessor :tax_behavior
|
426
|
+
|
427
|
+
# A [tax code](https://stripe.com/docs/tax/tax-categories) ID to use for this line item. If not provided, we will use the tax code from the provided `product` param. If neither `tax_code` nor `product` is provided, we will use the default tax code from your Tax Settings.
|
428
|
+
sig { returns(String) }
|
429
|
+
attr_accessor :tax_code
|
430
|
+
|
431
|
+
sig {
|
432
|
+
params(amount: Integer, product: String, quantity: Integer, reference: String, tax_behavior: String, tax_code: String).void
|
433
|
+
}
|
434
|
+
def initialize(
|
435
|
+
amount: nil,
|
436
|
+
product: nil,
|
437
|
+
quantity: nil,
|
438
|
+
reference: nil,
|
439
|
+
tax_behavior: nil,
|
440
|
+
tax_code: nil
|
441
|
+
); end
|
442
|
+
end
|
443
|
+
class ShipFromDetails < Stripe::RequestParams
|
444
|
+
class Address < Stripe::RequestParams
|
445
|
+
# City, district, suburb, town, or village.
|
446
|
+
sig { returns(T.nilable(String)) }
|
447
|
+
attr_accessor :city
|
448
|
+
|
449
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
450
|
+
sig { returns(String) }
|
451
|
+
attr_accessor :country
|
452
|
+
|
453
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
454
|
+
sig { returns(T.nilable(String)) }
|
455
|
+
attr_accessor :line1
|
456
|
+
|
457
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
458
|
+
sig { returns(T.nilable(String)) }
|
459
|
+
attr_accessor :line2
|
460
|
+
|
461
|
+
# ZIP or postal code.
|
462
|
+
sig { returns(T.nilable(String)) }
|
463
|
+
attr_accessor :postal_code
|
464
|
+
|
465
|
+
# State/province as an [ISO 3166-2](https://en.wikipedia.org/wiki/ISO_3166-2) subdivision code, without country prefix. Example: "NY" or "TX".
|
466
|
+
sig { returns(T.nilable(String)) }
|
467
|
+
attr_accessor :state
|
468
|
+
|
469
|
+
sig {
|
470
|
+
params(city: T.nilable(String), country: String, line1: T.nilable(String), line2: T.nilable(String), postal_code: T.nilable(String), state: T.nilable(String)).void
|
471
|
+
}
|
472
|
+
def initialize(
|
473
|
+
city: nil,
|
474
|
+
country: nil,
|
475
|
+
line1: nil,
|
476
|
+
line2: nil,
|
477
|
+
postal_code: nil,
|
478
|
+
state: nil
|
479
|
+
); end
|
480
|
+
end
|
481
|
+
# The address from which the goods are being shipped from.
|
482
|
+
sig { returns(::Stripe::Tax::Calculation::CreateParams::ShipFromDetails::Address) }
|
483
|
+
attr_accessor :address
|
484
|
+
|
485
|
+
sig {
|
486
|
+
params(address: ::Stripe::Tax::Calculation::CreateParams::ShipFromDetails::Address).void
|
487
|
+
}
|
488
|
+
def initialize(address: nil); end
|
489
|
+
end
|
490
|
+
class ShippingCost < Stripe::RequestParams
|
491
|
+
# A positive integer in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) representing the shipping charge. If `tax_behavior=inclusive`, then this amount includes taxes. Otherwise, taxes are calculated on top of this amount.
|
492
|
+
sig { returns(Integer) }
|
493
|
+
attr_accessor :amount
|
494
|
+
|
495
|
+
# If provided, the [shipping rate](https://stripe.com/docs/api/shipping_rates/object)'s `amount`, `tax_code` and `tax_behavior` are used. If you provide a shipping rate, then you cannot pass the `amount`, `tax_code`, or `tax_behavior` parameters.
|
496
|
+
sig { returns(String) }
|
497
|
+
attr_accessor :shipping_rate
|
498
|
+
|
499
|
+
# Specifies whether the `amount` includes taxes. If `tax_behavior=inclusive`, then the amount includes taxes. Defaults to `exclusive`.
|
500
|
+
sig { returns(String) }
|
501
|
+
attr_accessor :tax_behavior
|
502
|
+
|
503
|
+
# The [tax code](https://stripe.com/docs/tax/tax-categories) used to calculate tax on shipping. If not provided, the default shipping tax code from your [Tax Settings](https://dashboard.stripe.com/settings/tax) is used.
|
504
|
+
sig { returns(String) }
|
505
|
+
attr_accessor :tax_code
|
506
|
+
|
507
|
+
sig {
|
508
|
+
params(amount: Integer, shipping_rate: String, tax_behavior: String, tax_code: String).void
|
509
|
+
}
|
510
|
+
def initialize(amount: nil, shipping_rate: nil, tax_behavior: nil, tax_code: nil); end
|
511
|
+
end
|
512
|
+
# Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
|
513
|
+
sig { returns(String) }
|
514
|
+
attr_accessor :currency
|
515
|
+
|
516
|
+
# The ID of an existing customer to use for this calculation. If provided, the customer's address and tax IDs are copied to `customer_details`.
|
517
|
+
sig { returns(String) }
|
518
|
+
attr_accessor :customer
|
519
|
+
|
520
|
+
# Details about the customer, including address and tax IDs.
|
521
|
+
sig { returns(::Stripe::Tax::Calculation::CreateParams::CustomerDetails) }
|
522
|
+
attr_accessor :customer_details
|
523
|
+
|
524
|
+
# Specifies which fields in the response should be expanded.
|
525
|
+
sig { returns(T::Array[String]) }
|
526
|
+
attr_accessor :expand
|
527
|
+
|
528
|
+
# A list of items the customer is purchasing.
|
529
|
+
sig { returns(T::Array[::Stripe::Tax::Calculation::CreateParams::LineItem]) }
|
530
|
+
attr_accessor :line_items
|
531
|
+
|
532
|
+
# Details about the address from which the goods are being shipped.
|
533
|
+
sig { returns(::Stripe::Tax::Calculation::CreateParams::ShipFromDetails) }
|
534
|
+
attr_accessor :ship_from_details
|
535
|
+
|
536
|
+
# Shipping cost details to be used for the calculation.
|
537
|
+
sig { returns(::Stripe::Tax::Calculation::CreateParams::ShippingCost) }
|
538
|
+
attr_accessor :shipping_cost
|
539
|
+
|
540
|
+
# Timestamp of date at which the tax rules and rates in effect applies for the calculation. Measured in seconds since the Unix epoch. Can be up to 48 hours in the past, and up to 48 hours in the future.
|
541
|
+
sig { returns(Integer) }
|
542
|
+
attr_accessor :tax_date
|
543
|
+
|
544
|
+
sig {
|
545
|
+
params(currency: String, customer: String, customer_details: ::Stripe::Tax::Calculation::CreateParams::CustomerDetails, expand: T::Array[String], line_items: T::Array[::Stripe::Tax::Calculation::CreateParams::LineItem], ship_from_details: ::Stripe::Tax::Calculation::CreateParams::ShipFromDetails, shipping_cost: ::Stripe::Tax::Calculation::CreateParams::ShippingCost, tax_date: Integer).void
|
546
|
+
}
|
547
|
+
def initialize(
|
548
|
+
currency: nil,
|
549
|
+
customer: nil,
|
550
|
+
customer_details: nil,
|
551
|
+
expand: nil,
|
552
|
+
line_items: nil,
|
553
|
+
ship_from_details: nil,
|
554
|
+
shipping_cost: nil,
|
555
|
+
tax_date: nil
|
556
|
+
); end
|
557
|
+
end
|
558
|
+
# Calculates tax based on the input and returns a Tax Calculation object.
|
559
|
+
sig {
|
560
|
+
params(params: T.any(::Stripe::Tax::Calculation::CreateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Tax::Calculation)
|
561
|
+
}
|
562
|
+
def self.create(params = {}, opts = {}); end
|
563
|
+
|
564
|
+
# Retrieves the line items of a tax calculation as a collection, if the calculation hasn't expired.
|
565
|
+
sig {
|
566
|
+
params(params: T.any(::Stripe::Tax::Calculation::ListLineItemsParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::ListObject)
|
567
|
+
}
|
568
|
+
def list_line_items(params = {}, opts = {}); end
|
569
|
+
|
570
|
+
# Retrieves the line items of a tax calculation as a collection, if the calculation hasn't expired.
|
571
|
+
sig {
|
572
|
+
params(calculation: String, params: T.any(::Stripe::Tax::Calculation::ListLineItemsParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::ListObject)
|
573
|
+
}
|
574
|
+
def self.list_line_items(calculation, params = {}, opts = {}); end
|
575
|
+
end
|
576
|
+
end
|
577
|
+
end
|