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,974 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# typed: true
|
5
|
+
module Stripe
|
6
|
+
module TestHelpers
|
7
|
+
module Issuing
|
8
|
+
class AuthorizationService < StripeService
|
9
|
+
class CreateParams < Stripe::RequestParams
|
10
|
+
class AmountDetails < Stripe::RequestParams
|
11
|
+
# The ATM withdrawal fee.
|
12
|
+
sig { returns(Integer) }
|
13
|
+
attr_accessor :atm_fee
|
14
|
+
|
15
|
+
# The amount of cash requested by the cardholder.
|
16
|
+
sig { returns(Integer) }
|
17
|
+
attr_accessor :cashback_amount
|
18
|
+
|
19
|
+
sig { params(atm_fee: Integer, cashback_amount: Integer).void }
|
20
|
+
def initialize(atm_fee: nil, cashback_amount: nil); end
|
21
|
+
end
|
22
|
+
class Fleet < Stripe::RequestParams
|
23
|
+
class CardholderPromptData < Stripe::RequestParams
|
24
|
+
# Driver ID.
|
25
|
+
sig { returns(String) }
|
26
|
+
attr_accessor :driver_id
|
27
|
+
|
28
|
+
# Odometer reading.
|
29
|
+
sig { returns(Integer) }
|
30
|
+
attr_accessor :odometer
|
31
|
+
|
32
|
+
# An alphanumeric ID. This field is used when a vehicle ID, driver ID, or generic ID is entered by the cardholder, but the merchant or card network did not specify the prompt type.
|
33
|
+
sig { returns(String) }
|
34
|
+
attr_accessor :unspecified_id
|
35
|
+
|
36
|
+
# User ID.
|
37
|
+
sig { returns(String) }
|
38
|
+
attr_accessor :user_id
|
39
|
+
|
40
|
+
# Vehicle number.
|
41
|
+
sig { returns(String) }
|
42
|
+
attr_accessor :vehicle_number
|
43
|
+
|
44
|
+
sig {
|
45
|
+
params(driver_id: String, odometer: Integer, unspecified_id: String, user_id: String, vehicle_number: String).void
|
46
|
+
}
|
47
|
+
def initialize(
|
48
|
+
driver_id: nil,
|
49
|
+
odometer: nil,
|
50
|
+
unspecified_id: nil,
|
51
|
+
user_id: nil,
|
52
|
+
vehicle_number: nil
|
53
|
+
); end
|
54
|
+
end
|
55
|
+
class ReportedBreakdown < Stripe::RequestParams
|
56
|
+
class Fuel < Stripe::RequestParams
|
57
|
+
# Gross fuel amount that should equal Fuel Volume multipled by Fuel Unit Cost, inclusive of taxes.
|
58
|
+
sig { returns(String) }
|
59
|
+
attr_accessor :gross_amount_decimal
|
60
|
+
|
61
|
+
sig { params(gross_amount_decimal: String).void }
|
62
|
+
def initialize(gross_amount_decimal: nil); end
|
63
|
+
end
|
64
|
+
class NonFuel < Stripe::RequestParams
|
65
|
+
# Gross non-fuel amount that should equal the sum of the line items, inclusive of taxes.
|
66
|
+
sig { returns(String) }
|
67
|
+
attr_accessor :gross_amount_decimal
|
68
|
+
|
69
|
+
sig { params(gross_amount_decimal: String).void }
|
70
|
+
def initialize(gross_amount_decimal: nil); end
|
71
|
+
end
|
72
|
+
class Tax < Stripe::RequestParams
|
73
|
+
# Amount of state or provincial Sales Tax included in the transaction amount. Null if not reported by merchant or not subject to tax.
|
74
|
+
sig { returns(String) }
|
75
|
+
attr_accessor :local_amount_decimal
|
76
|
+
|
77
|
+
# Amount of national Sales Tax or VAT included in the transaction amount. Null if not reported by merchant or not subject to tax.
|
78
|
+
sig { returns(String) }
|
79
|
+
attr_accessor :national_amount_decimal
|
80
|
+
|
81
|
+
sig { params(local_amount_decimal: String, national_amount_decimal: String).void }
|
82
|
+
def initialize(local_amount_decimal: nil, national_amount_decimal: nil); end
|
83
|
+
end
|
84
|
+
# Breakdown of fuel portion of the purchase.
|
85
|
+
sig {
|
86
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown::Fuel)
|
87
|
+
}
|
88
|
+
attr_accessor :fuel
|
89
|
+
|
90
|
+
# Breakdown of non-fuel portion of the purchase.
|
91
|
+
sig {
|
92
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown::NonFuel)
|
93
|
+
}
|
94
|
+
attr_accessor :non_fuel
|
95
|
+
|
96
|
+
# Information about tax included in this transaction.
|
97
|
+
sig {
|
98
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown::Tax)
|
99
|
+
}
|
100
|
+
attr_accessor :tax
|
101
|
+
|
102
|
+
sig {
|
103
|
+
params(fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown::Fuel, non_fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown::NonFuel, tax: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown::Tax).void
|
104
|
+
}
|
105
|
+
def initialize(fuel: nil, non_fuel: nil, tax: nil); end
|
106
|
+
end
|
107
|
+
# Answers to prompts presented to the cardholder at the point of sale. Prompted fields vary depending on the configuration of your physical fleet cards. Typical points of sale support only numeric entry.
|
108
|
+
sig {
|
109
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::CardholderPromptData)
|
110
|
+
}
|
111
|
+
attr_accessor :cardholder_prompt_data
|
112
|
+
|
113
|
+
# The type of purchase. One of `fuel_purchase`, `non_fuel_purchase`, or `fuel_and_non_fuel_purchase`.
|
114
|
+
sig { returns(String) }
|
115
|
+
attr_accessor :purchase_type
|
116
|
+
|
117
|
+
# More information about the total amount. This information is not guaranteed to be accurate as some merchants may provide unreliable data.
|
118
|
+
sig {
|
119
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown)
|
120
|
+
}
|
121
|
+
attr_accessor :reported_breakdown
|
122
|
+
|
123
|
+
# The type of fuel service. One of `non_fuel_transaction`, `full_service`, or `self_service`.
|
124
|
+
sig { returns(String) }
|
125
|
+
attr_accessor :service_type
|
126
|
+
|
127
|
+
sig {
|
128
|
+
params(cardholder_prompt_data: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::CardholderPromptData, purchase_type: String, reported_breakdown: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet::ReportedBreakdown, service_type: String).void
|
129
|
+
}
|
130
|
+
def initialize(
|
131
|
+
cardholder_prompt_data: nil,
|
132
|
+
purchase_type: nil,
|
133
|
+
reported_breakdown: nil,
|
134
|
+
service_type: nil
|
135
|
+
); end
|
136
|
+
end
|
137
|
+
class Fuel < Stripe::RequestParams
|
138
|
+
# [Conexxus Payment System Product Code](https://www.conexxus.org/conexxus-payment-system-product-codes) identifying the primary fuel product purchased.
|
139
|
+
sig { returns(String) }
|
140
|
+
attr_accessor :industry_product_code
|
141
|
+
|
142
|
+
# The quantity of `unit`s of fuel that was dispensed, represented as a decimal string with at most 12 decimal places.
|
143
|
+
sig { returns(String) }
|
144
|
+
attr_accessor :quantity_decimal
|
145
|
+
|
146
|
+
# The type of fuel that was purchased. One of `diesel`, `unleaded_plus`, `unleaded_regular`, `unleaded_super`, or `other`.
|
147
|
+
sig { returns(String) }
|
148
|
+
attr_accessor :type
|
149
|
+
|
150
|
+
# The units for `quantity_decimal`. One of `charging_minute`, `imperial_gallon`, `kilogram`, `kilowatt_hour`, `liter`, `pound`, `us_gallon`, or `other`.
|
151
|
+
sig { returns(String) }
|
152
|
+
attr_accessor :unit
|
153
|
+
|
154
|
+
# The cost in cents per each unit of fuel, represented as a decimal string with at most 12 decimal places.
|
155
|
+
sig { returns(String) }
|
156
|
+
attr_accessor :unit_cost_decimal
|
157
|
+
|
158
|
+
sig {
|
159
|
+
params(industry_product_code: String, quantity_decimal: String, type: String, unit: String, unit_cost_decimal: String).void
|
160
|
+
}
|
161
|
+
def initialize(
|
162
|
+
industry_product_code: nil,
|
163
|
+
quantity_decimal: nil,
|
164
|
+
type: nil,
|
165
|
+
unit: nil,
|
166
|
+
unit_cost_decimal: nil
|
167
|
+
); end
|
168
|
+
end
|
169
|
+
class MerchantData < Stripe::RequestParams
|
170
|
+
# A categorization of the seller's type of business. See our [merchant categories guide](https://stripe.com/docs/issuing/merchant-categories) for a list of possible values.
|
171
|
+
sig { returns(String) }
|
172
|
+
attr_accessor :category
|
173
|
+
|
174
|
+
# City where the seller is located
|
175
|
+
sig { returns(String) }
|
176
|
+
attr_accessor :city
|
177
|
+
|
178
|
+
# Country where the seller is located
|
179
|
+
sig { returns(String) }
|
180
|
+
attr_accessor :country
|
181
|
+
|
182
|
+
# Name of the seller
|
183
|
+
sig { returns(String) }
|
184
|
+
attr_accessor :name
|
185
|
+
|
186
|
+
# Identifier assigned to the seller by the card network. Different card networks may assign different network_id fields to the same merchant.
|
187
|
+
sig { returns(String) }
|
188
|
+
attr_accessor :network_id
|
189
|
+
|
190
|
+
# Postal code where the seller is located
|
191
|
+
sig { returns(String) }
|
192
|
+
attr_accessor :postal_code
|
193
|
+
|
194
|
+
# State where the seller is located
|
195
|
+
sig { returns(String) }
|
196
|
+
attr_accessor :state
|
197
|
+
|
198
|
+
# An ID assigned by the seller to the location of the sale.
|
199
|
+
sig { returns(String) }
|
200
|
+
attr_accessor :terminal_id
|
201
|
+
|
202
|
+
# URL provided by the merchant on a 3DS request
|
203
|
+
sig { returns(String) }
|
204
|
+
attr_accessor :url
|
205
|
+
|
206
|
+
sig {
|
207
|
+
params(category: String, city: String, country: String, name: String, network_id: String, postal_code: String, state: String, terminal_id: String, url: String).void
|
208
|
+
}
|
209
|
+
def initialize(
|
210
|
+
category: nil,
|
211
|
+
city: nil,
|
212
|
+
country: nil,
|
213
|
+
name: nil,
|
214
|
+
network_id: nil,
|
215
|
+
postal_code: nil,
|
216
|
+
state: nil,
|
217
|
+
terminal_id: nil,
|
218
|
+
url: nil
|
219
|
+
); end
|
220
|
+
end
|
221
|
+
class NetworkData < Stripe::RequestParams
|
222
|
+
# Identifier assigned to the acquirer by the card network.
|
223
|
+
sig { returns(String) }
|
224
|
+
attr_accessor :acquiring_institution_id
|
225
|
+
|
226
|
+
sig { params(acquiring_institution_id: String).void }
|
227
|
+
def initialize(acquiring_institution_id: nil); end
|
228
|
+
end
|
229
|
+
class VerificationData < Stripe::RequestParams
|
230
|
+
class AuthenticationExemption < Stripe::RequestParams
|
231
|
+
# The entity that requested the exemption, either the acquiring merchant or the Issuing user.
|
232
|
+
sig { returns(String) }
|
233
|
+
attr_accessor :claimed_by
|
234
|
+
|
235
|
+
# The specific exemption claimed for this authorization.
|
236
|
+
sig { returns(String) }
|
237
|
+
attr_accessor :type
|
238
|
+
|
239
|
+
sig { params(claimed_by: String, type: String).void }
|
240
|
+
def initialize(claimed_by: nil, type: nil); end
|
241
|
+
end
|
242
|
+
class ThreeDSecure < Stripe::RequestParams
|
243
|
+
# The outcome of the 3D Secure authentication request.
|
244
|
+
sig { returns(String) }
|
245
|
+
attr_accessor :result
|
246
|
+
|
247
|
+
sig { params(result: String).void }
|
248
|
+
def initialize(result: nil); end
|
249
|
+
end
|
250
|
+
# Whether the cardholder provided an address first line and if it matched the cardholder’s `billing.address.line1`.
|
251
|
+
sig { returns(String) }
|
252
|
+
attr_accessor :address_line1_check
|
253
|
+
|
254
|
+
# Whether the cardholder provided a postal code and if it matched the cardholder’s `billing.address.postal_code`.
|
255
|
+
sig { returns(String) }
|
256
|
+
attr_accessor :address_postal_code_check
|
257
|
+
|
258
|
+
# The exemption applied to this authorization.
|
259
|
+
sig {
|
260
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::AuthenticationExemption)
|
261
|
+
}
|
262
|
+
attr_accessor :authentication_exemption
|
263
|
+
|
264
|
+
# Whether the cardholder provided a CVC and if it matched Stripe’s record.
|
265
|
+
sig { returns(String) }
|
266
|
+
attr_accessor :cvc_check
|
267
|
+
|
268
|
+
# Whether the cardholder provided an expiry date and if it matched Stripe’s record.
|
269
|
+
sig { returns(String) }
|
270
|
+
attr_accessor :expiry_check
|
271
|
+
|
272
|
+
# 3D Secure details.
|
273
|
+
sig {
|
274
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::ThreeDSecure)
|
275
|
+
}
|
276
|
+
attr_accessor :three_d_secure
|
277
|
+
|
278
|
+
sig {
|
279
|
+
params(address_line1_check: String, address_postal_code_check: String, authentication_exemption: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::AuthenticationExemption, cvc_check: String, expiry_check: String, three_d_secure: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData::ThreeDSecure).void
|
280
|
+
}
|
281
|
+
def initialize(
|
282
|
+
address_line1_check: nil,
|
283
|
+
address_postal_code_check: nil,
|
284
|
+
authentication_exemption: nil,
|
285
|
+
cvc_check: nil,
|
286
|
+
expiry_check: nil,
|
287
|
+
three_d_secure: nil
|
288
|
+
); end
|
289
|
+
end
|
290
|
+
# The total amount to attempt to authorize. This amount is in the provided currency, or defaults to the card's currency, and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
291
|
+
sig { returns(Integer) }
|
292
|
+
attr_accessor :amount
|
293
|
+
|
294
|
+
# Detailed breakdown of amount components. These amounts are denominated in `currency` and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
295
|
+
sig {
|
296
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::AmountDetails)
|
297
|
+
}
|
298
|
+
attr_accessor :amount_details
|
299
|
+
|
300
|
+
# How the card details were provided. Defaults to online.
|
301
|
+
sig { returns(String) }
|
302
|
+
attr_accessor :authorization_method
|
303
|
+
|
304
|
+
# Card associated with this authorization.
|
305
|
+
sig { returns(String) }
|
306
|
+
attr_accessor :card
|
307
|
+
|
308
|
+
# The currency of the authorization. If not provided, defaults to the currency of the card. 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).
|
309
|
+
sig { returns(String) }
|
310
|
+
attr_accessor :currency
|
311
|
+
|
312
|
+
# Specifies which fields in the response should be expanded.
|
313
|
+
sig { returns(T::Array[String]) }
|
314
|
+
attr_accessor :expand
|
315
|
+
|
316
|
+
# Fleet-specific information for authorizations using Fleet cards.
|
317
|
+
sig { returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet) }
|
318
|
+
attr_accessor :fleet
|
319
|
+
|
320
|
+
# Information about fuel that was purchased with this transaction.
|
321
|
+
sig { returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fuel) }
|
322
|
+
attr_accessor :fuel
|
323
|
+
|
324
|
+
# If set `true`, you may provide [amount](https://stripe.com/docs/api/issuing/authorizations/approve#approve_issuing_authorization-amount) to control how much to hold for the authorization.
|
325
|
+
sig { returns(T::Boolean) }
|
326
|
+
attr_accessor :is_amount_controllable
|
327
|
+
|
328
|
+
# The total amount to attempt to authorize. This amount is in the provided merchant currency, and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
329
|
+
sig { returns(Integer) }
|
330
|
+
attr_accessor :merchant_amount
|
331
|
+
|
332
|
+
# The currency of the authorization. If not provided, defaults to the currency of the card. 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).
|
333
|
+
sig { returns(String) }
|
334
|
+
attr_accessor :merchant_currency
|
335
|
+
|
336
|
+
# Details about the seller (grocery store, e-commerce website, etc.) where the card authorization happened.
|
337
|
+
sig {
|
338
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::MerchantData)
|
339
|
+
}
|
340
|
+
attr_accessor :merchant_data
|
341
|
+
|
342
|
+
# Details about the authorization, such as identifiers, set by the card network.
|
343
|
+
sig {
|
344
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::NetworkData)
|
345
|
+
}
|
346
|
+
attr_accessor :network_data
|
347
|
+
|
348
|
+
# Verifications that Stripe performed on information that the cardholder provided to the merchant.
|
349
|
+
sig {
|
350
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData)
|
351
|
+
}
|
352
|
+
attr_accessor :verification_data
|
353
|
+
|
354
|
+
# The digital wallet used for this transaction. One of `apple_pay`, `google_pay`, or `samsung_pay`. Will populate as `null` when no digital wallet was utilized.
|
355
|
+
sig { returns(String) }
|
356
|
+
attr_accessor :wallet
|
357
|
+
|
358
|
+
sig {
|
359
|
+
params(amount: Integer, amount_details: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::AmountDetails, authorization_method: String, card: String, currency: String, expand: T::Array[String], fleet: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fleet, fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::Fuel, is_amount_controllable: T::Boolean, merchant_amount: Integer, merchant_currency: String, merchant_data: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::MerchantData, network_data: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::NetworkData, verification_data: ::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams::VerificationData, wallet: String).void
|
360
|
+
}
|
361
|
+
def initialize(
|
362
|
+
amount: nil,
|
363
|
+
amount_details: nil,
|
364
|
+
authorization_method: nil,
|
365
|
+
card: nil,
|
366
|
+
currency: nil,
|
367
|
+
expand: nil,
|
368
|
+
fleet: nil,
|
369
|
+
fuel: nil,
|
370
|
+
is_amount_controllable: nil,
|
371
|
+
merchant_amount: nil,
|
372
|
+
merchant_currency: nil,
|
373
|
+
merchant_data: nil,
|
374
|
+
network_data: nil,
|
375
|
+
verification_data: nil,
|
376
|
+
wallet: nil
|
377
|
+
); end
|
378
|
+
end
|
379
|
+
class CaptureParams < Stripe::RequestParams
|
380
|
+
class PurchaseDetails < Stripe::RequestParams
|
381
|
+
class Fleet < Stripe::RequestParams
|
382
|
+
class CardholderPromptData < Stripe::RequestParams
|
383
|
+
# Driver ID.
|
384
|
+
sig { returns(String) }
|
385
|
+
attr_accessor :driver_id
|
386
|
+
|
387
|
+
# Odometer reading.
|
388
|
+
sig { returns(Integer) }
|
389
|
+
attr_accessor :odometer
|
390
|
+
|
391
|
+
# An alphanumeric ID. This field is used when a vehicle ID, driver ID, or generic ID is entered by the cardholder, but the merchant or card network did not specify the prompt type.
|
392
|
+
sig { returns(String) }
|
393
|
+
attr_accessor :unspecified_id
|
394
|
+
|
395
|
+
# User ID.
|
396
|
+
sig { returns(String) }
|
397
|
+
attr_accessor :user_id
|
398
|
+
|
399
|
+
# Vehicle number.
|
400
|
+
sig { returns(String) }
|
401
|
+
attr_accessor :vehicle_number
|
402
|
+
|
403
|
+
sig {
|
404
|
+
params(driver_id: String, odometer: Integer, unspecified_id: String, user_id: String, vehicle_number: String).void
|
405
|
+
}
|
406
|
+
def initialize(
|
407
|
+
driver_id: nil,
|
408
|
+
odometer: nil,
|
409
|
+
unspecified_id: nil,
|
410
|
+
user_id: nil,
|
411
|
+
vehicle_number: nil
|
412
|
+
); end
|
413
|
+
end
|
414
|
+
class ReportedBreakdown < Stripe::RequestParams
|
415
|
+
class Fuel < Stripe::RequestParams
|
416
|
+
# Gross fuel amount that should equal Fuel Volume multipled by Fuel Unit Cost, inclusive of taxes.
|
417
|
+
sig { returns(String) }
|
418
|
+
attr_accessor :gross_amount_decimal
|
419
|
+
|
420
|
+
sig { params(gross_amount_decimal: String).void }
|
421
|
+
def initialize(gross_amount_decimal: nil); end
|
422
|
+
end
|
423
|
+
class NonFuel < Stripe::RequestParams
|
424
|
+
# Gross non-fuel amount that should equal the sum of the line items, inclusive of taxes.
|
425
|
+
sig { returns(String) }
|
426
|
+
attr_accessor :gross_amount_decimal
|
427
|
+
|
428
|
+
sig { params(gross_amount_decimal: String).void }
|
429
|
+
def initialize(gross_amount_decimal: nil); end
|
430
|
+
end
|
431
|
+
class Tax < Stripe::RequestParams
|
432
|
+
# Amount of state or provincial Sales Tax included in the transaction amount. Null if not reported by merchant or not subject to tax.
|
433
|
+
sig { returns(String) }
|
434
|
+
attr_accessor :local_amount_decimal
|
435
|
+
|
436
|
+
# Amount of national Sales Tax or VAT included in the transaction amount. Null if not reported by merchant or not subject to tax.
|
437
|
+
sig { returns(String) }
|
438
|
+
attr_accessor :national_amount_decimal
|
439
|
+
|
440
|
+
sig { params(local_amount_decimal: String, national_amount_decimal: String).void }
|
441
|
+
def initialize(local_amount_decimal: nil, national_amount_decimal: nil); end
|
442
|
+
end
|
443
|
+
# Breakdown of fuel portion of the purchase.
|
444
|
+
sig {
|
445
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown::Fuel)
|
446
|
+
}
|
447
|
+
attr_accessor :fuel
|
448
|
+
|
449
|
+
# Breakdown of non-fuel portion of the purchase.
|
450
|
+
sig {
|
451
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown::NonFuel)
|
452
|
+
}
|
453
|
+
attr_accessor :non_fuel
|
454
|
+
|
455
|
+
# Information about tax included in this transaction.
|
456
|
+
sig {
|
457
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown::Tax)
|
458
|
+
}
|
459
|
+
attr_accessor :tax
|
460
|
+
|
461
|
+
sig {
|
462
|
+
params(fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown::Fuel, non_fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown::NonFuel, tax: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown::Tax).void
|
463
|
+
}
|
464
|
+
def initialize(fuel: nil, non_fuel: nil, tax: nil); end
|
465
|
+
end
|
466
|
+
# Answers to prompts presented to the cardholder at the point of sale. Prompted fields vary depending on the configuration of your physical fleet cards. Typical points of sale support only numeric entry.
|
467
|
+
sig {
|
468
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::CardholderPromptData)
|
469
|
+
}
|
470
|
+
attr_accessor :cardholder_prompt_data
|
471
|
+
|
472
|
+
# The type of purchase. One of `fuel_purchase`, `non_fuel_purchase`, or `fuel_and_non_fuel_purchase`.
|
473
|
+
sig { returns(String) }
|
474
|
+
attr_accessor :purchase_type
|
475
|
+
|
476
|
+
# More information about the total amount. This information is not guaranteed to be accurate as some merchants may provide unreliable data.
|
477
|
+
sig {
|
478
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown)
|
479
|
+
}
|
480
|
+
attr_accessor :reported_breakdown
|
481
|
+
|
482
|
+
# The type of fuel service. One of `non_fuel_transaction`, `full_service`, or `self_service`.
|
483
|
+
sig { returns(String) }
|
484
|
+
attr_accessor :service_type
|
485
|
+
|
486
|
+
sig {
|
487
|
+
params(cardholder_prompt_data: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::CardholderPromptData, purchase_type: String, reported_breakdown: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown, service_type: String).void
|
488
|
+
}
|
489
|
+
def initialize(
|
490
|
+
cardholder_prompt_data: nil,
|
491
|
+
purchase_type: nil,
|
492
|
+
reported_breakdown: nil,
|
493
|
+
service_type: nil
|
494
|
+
); end
|
495
|
+
end
|
496
|
+
class Flight < Stripe::RequestParams
|
497
|
+
class Segment < Stripe::RequestParams
|
498
|
+
# The three-letter IATA airport code of the flight's destination.
|
499
|
+
sig { returns(String) }
|
500
|
+
attr_accessor :arrival_airport_code
|
501
|
+
|
502
|
+
# The airline carrier code.
|
503
|
+
sig { returns(String) }
|
504
|
+
attr_accessor :carrier
|
505
|
+
|
506
|
+
# The three-letter IATA airport code that the flight departed from.
|
507
|
+
sig { returns(String) }
|
508
|
+
attr_accessor :departure_airport_code
|
509
|
+
|
510
|
+
# The flight number.
|
511
|
+
sig { returns(String) }
|
512
|
+
attr_accessor :flight_number
|
513
|
+
|
514
|
+
# The flight's service class.
|
515
|
+
sig { returns(String) }
|
516
|
+
attr_accessor :service_class
|
517
|
+
|
518
|
+
# Whether a stopover is allowed on this flight.
|
519
|
+
sig { returns(T::Boolean) }
|
520
|
+
attr_accessor :stopover_allowed
|
521
|
+
|
522
|
+
sig {
|
523
|
+
params(arrival_airport_code: String, carrier: String, departure_airport_code: String, flight_number: String, service_class: String, stopover_allowed: T::Boolean).void
|
524
|
+
}
|
525
|
+
def initialize(
|
526
|
+
arrival_airport_code: nil,
|
527
|
+
carrier: nil,
|
528
|
+
departure_airport_code: nil,
|
529
|
+
flight_number: nil,
|
530
|
+
service_class: nil,
|
531
|
+
stopover_allowed: nil
|
532
|
+
); end
|
533
|
+
end
|
534
|
+
# The time that the flight departed.
|
535
|
+
sig { returns(Integer) }
|
536
|
+
attr_accessor :departure_at
|
537
|
+
|
538
|
+
# The name of the passenger.
|
539
|
+
sig { returns(String) }
|
540
|
+
attr_accessor :passenger_name
|
541
|
+
|
542
|
+
# Whether the ticket is refundable.
|
543
|
+
sig { returns(T::Boolean) }
|
544
|
+
attr_accessor :refundable
|
545
|
+
|
546
|
+
# The legs of the trip.
|
547
|
+
sig {
|
548
|
+
returns(T::Array[::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Flight::Segment])
|
549
|
+
}
|
550
|
+
attr_accessor :segments
|
551
|
+
|
552
|
+
# The travel agency that issued the ticket.
|
553
|
+
sig { returns(String) }
|
554
|
+
attr_accessor :travel_agency
|
555
|
+
|
556
|
+
sig {
|
557
|
+
params(departure_at: Integer, passenger_name: String, refundable: T::Boolean, segments: T::Array[::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Flight::Segment], travel_agency: String).void
|
558
|
+
}
|
559
|
+
def initialize(
|
560
|
+
departure_at: nil,
|
561
|
+
passenger_name: nil,
|
562
|
+
refundable: nil,
|
563
|
+
segments: nil,
|
564
|
+
travel_agency: nil
|
565
|
+
); end
|
566
|
+
end
|
567
|
+
class Fuel < Stripe::RequestParams
|
568
|
+
# [Conexxus Payment System Product Code](https://www.conexxus.org/conexxus-payment-system-product-codes) identifying the primary fuel product purchased.
|
569
|
+
sig { returns(String) }
|
570
|
+
attr_accessor :industry_product_code
|
571
|
+
|
572
|
+
# The quantity of `unit`s of fuel that was dispensed, represented as a decimal string with at most 12 decimal places.
|
573
|
+
sig { returns(String) }
|
574
|
+
attr_accessor :quantity_decimal
|
575
|
+
|
576
|
+
# The type of fuel that was purchased. One of `diesel`, `unleaded_plus`, `unleaded_regular`, `unleaded_super`, or `other`.
|
577
|
+
sig { returns(String) }
|
578
|
+
attr_accessor :type
|
579
|
+
|
580
|
+
# The units for `quantity_decimal`. One of `charging_minute`, `imperial_gallon`, `kilogram`, `kilowatt_hour`, `liter`, `pound`, `us_gallon`, or `other`.
|
581
|
+
sig { returns(String) }
|
582
|
+
attr_accessor :unit
|
583
|
+
|
584
|
+
# The cost in cents per each unit of fuel, represented as a decimal string with at most 12 decimal places.
|
585
|
+
sig { returns(String) }
|
586
|
+
attr_accessor :unit_cost_decimal
|
587
|
+
|
588
|
+
sig {
|
589
|
+
params(industry_product_code: String, quantity_decimal: String, type: String, unit: String, unit_cost_decimal: String).void
|
590
|
+
}
|
591
|
+
def initialize(
|
592
|
+
industry_product_code: nil,
|
593
|
+
quantity_decimal: nil,
|
594
|
+
type: nil,
|
595
|
+
unit: nil,
|
596
|
+
unit_cost_decimal: nil
|
597
|
+
); end
|
598
|
+
end
|
599
|
+
class Lodging < Stripe::RequestParams
|
600
|
+
# The time of checking into the lodging.
|
601
|
+
sig { returns(Integer) }
|
602
|
+
attr_accessor :check_in_at
|
603
|
+
|
604
|
+
# The number of nights stayed at the lodging.
|
605
|
+
sig { returns(Integer) }
|
606
|
+
attr_accessor :nights
|
607
|
+
|
608
|
+
sig { params(check_in_at: Integer, nights: Integer).void }
|
609
|
+
def initialize(check_in_at: nil, nights: nil); end
|
610
|
+
end
|
611
|
+
class Receipt < Stripe::RequestParams
|
612
|
+
# Attribute for param field description
|
613
|
+
sig { returns(String) }
|
614
|
+
attr_accessor :description
|
615
|
+
|
616
|
+
# Attribute for param field quantity
|
617
|
+
sig { returns(String) }
|
618
|
+
attr_accessor :quantity
|
619
|
+
|
620
|
+
# Attribute for param field total
|
621
|
+
sig { returns(Integer) }
|
622
|
+
attr_accessor :total
|
623
|
+
|
624
|
+
# Attribute for param field unit_cost
|
625
|
+
sig { returns(Integer) }
|
626
|
+
attr_accessor :unit_cost
|
627
|
+
|
628
|
+
sig {
|
629
|
+
params(description: String, quantity: String, total: Integer, unit_cost: Integer).void
|
630
|
+
}
|
631
|
+
def initialize(description: nil, quantity: nil, total: nil, unit_cost: nil); end
|
632
|
+
end
|
633
|
+
# Fleet-specific information for transactions using Fleet cards.
|
634
|
+
sig {
|
635
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet)
|
636
|
+
}
|
637
|
+
attr_accessor :fleet
|
638
|
+
|
639
|
+
# Information about the flight that was purchased with this transaction.
|
640
|
+
sig {
|
641
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Flight)
|
642
|
+
}
|
643
|
+
attr_accessor :flight
|
644
|
+
|
645
|
+
# Information about fuel that was purchased with this transaction.
|
646
|
+
sig {
|
647
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fuel)
|
648
|
+
}
|
649
|
+
attr_accessor :fuel
|
650
|
+
|
651
|
+
# Information about lodging that was purchased with this transaction.
|
652
|
+
sig {
|
653
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Lodging)
|
654
|
+
}
|
655
|
+
attr_accessor :lodging
|
656
|
+
|
657
|
+
# The line items in the purchase.
|
658
|
+
sig {
|
659
|
+
returns(T::Array[::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Receipt])
|
660
|
+
}
|
661
|
+
attr_accessor :receipt
|
662
|
+
|
663
|
+
# A merchant-specific order number.
|
664
|
+
sig { returns(String) }
|
665
|
+
attr_accessor :reference
|
666
|
+
|
667
|
+
sig {
|
668
|
+
params(fleet: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fleet, flight: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Flight, fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Fuel, lodging: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Lodging, receipt: T::Array[::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails::Receipt], reference: String).void
|
669
|
+
}
|
670
|
+
def initialize(
|
671
|
+
fleet: nil,
|
672
|
+
flight: nil,
|
673
|
+
fuel: nil,
|
674
|
+
lodging: nil,
|
675
|
+
receipt: nil,
|
676
|
+
reference: nil
|
677
|
+
); end
|
678
|
+
end
|
679
|
+
# The amount to capture from the authorization. If not provided, the full amount of the authorization will be captured. This amount is in the authorization currency and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
680
|
+
sig { returns(Integer) }
|
681
|
+
attr_accessor :capture_amount
|
682
|
+
|
683
|
+
# Whether to close the authorization after capture. Defaults to true. Set to false to enable multi-capture flows.
|
684
|
+
sig { returns(T::Boolean) }
|
685
|
+
attr_accessor :close_authorization
|
686
|
+
|
687
|
+
# Specifies which fields in the response should be expanded.
|
688
|
+
sig { returns(T::Array[String]) }
|
689
|
+
attr_accessor :expand
|
690
|
+
|
691
|
+
# Additional purchase information that is optionally provided by the merchant.
|
692
|
+
sig {
|
693
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails)
|
694
|
+
}
|
695
|
+
attr_accessor :purchase_details
|
696
|
+
|
697
|
+
sig {
|
698
|
+
params(capture_amount: Integer, close_authorization: T::Boolean, expand: T::Array[String], purchase_details: ::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams::PurchaseDetails).void
|
699
|
+
}
|
700
|
+
def initialize(
|
701
|
+
capture_amount: nil,
|
702
|
+
close_authorization: nil,
|
703
|
+
expand: nil,
|
704
|
+
purchase_details: nil
|
705
|
+
); end
|
706
|
+
end
|
707
|
+
class ExpireParams < Stripe::RequestParams
|
708
|
+
# Specifies which fields in the response should be expanded.
|
709
|
+
sig { returns(T::Array[String]) }
|
710
|
+
attr_accessor :expand
|
711
|
+
|
712
|
+
sig { params(expand: T::Array[String]).void }
|
713
|
+
def initialize(expand: nil); end
|
714
|
+
end
|
715
|
+
class FinalizeAmountParams < Stripe::RequestParams
|
716
|
+
class Fleet < Stripe::RequestParams
|
717
|
+
class CardholderPromptData < Stripe::RequestParams
|
718
|
+
# Driver ID.
|
719
|
+
sig { returns(String) }
|
720
|
+
attr_accessor :driver_id
|
721
|
+
|
722
|
+
# Odometer reading.
|
723
|
+
sig { returns(Integer) }
|
724
|
+
attr_accessor :odometer
|
725
|
+
|
726
|
+
# An alphanumeric ID. This field is used when a vehicle ID, driver ID, or generic ID is entered by the cardholder, but the merchant or card network did not specify the prompt type.
|
727
|
+
sig { returns(String) }
|
728
|
+
attr_accessor :unspecified_id
|
729
|
+
|
730
|
+
# User ID.
|
731
|
+
sig { returns(String) }
|
732
|
+
attr_accessor :user_id
|
733
|
+
|
734
|
+
# Vehicle number.
|
735
|
+
sig { returns(String) }
|
736
|
+
attr_accessor :vehicle_number
|
737
|
+
|
738
|
+
sig {
|
739
|
+
params(driver_id: String, odometer: Integer, unspecified_id: String, user_id: String, vehicle_number: String).void
|
740
|
+
}
|
741
|
+
def initialize(
|
742
|
+
driver_id: nil,
|
743
|
+
odometer: nil,
|
744
|
+
unspecified_id: nil,
|
745
|
+
user_id: nil,
|
746
|
+
vehicle_number: nil
|
747
|
+
); end
|
748
|
+
end
|
749
|
+
class ReportedBreakdown < Stripe::RequestParams
|
750
|
+
class Fuel < Stripe::RequestParams
|
751
|
+
# Gross fuel amount that should equal Fuel Volume multipled by Fuel Unit Cost, inclusive of taxes.
|
752
|
+
sig { returns(String) }
|
753
|
+
attr_accessor :gross_amount_decimal
|
754
|
+
|
755
|
+
sig { params(gross_amount_decimal: String).void }
|
756
|
+
def initialize(gross_amount_decimal: nil); end
|
757
|
+
end
|
758
|
+
class NonFuel < Stripe::RequestParams
|
759
|
+
# Gross non-fuel amount that should equal the sum of the line items, inclusive of taxes.
|
760
|
+
sig { returns(String) }
|
761
|
+
attr_accessor :gross_amount_decimal
|
762
|
+
|
763
|
+
sig { params(gross_amount_decimal: String).void }
|
764
|
+
def initialize(gross_amount_decimal: nil); end
|
765
|
+
end
|
766
|
+
class Tax < Stripe::RequestParams
|
767
|
+
# Amount of state or provincial Sales Tax included in the transaction amount. Null if not reported by merchant or not subject to tax.
|
768
|
+
sig { returns(String) }
|
769
|
+
attr_accessor :local_amount_decimal
|
770
|
+
|
771
|
+
# Amount of national Sales Tax or VAT included in the transaction amount. Null if not reported by merchant or not subject to tax.
|
772
|
+
sig { returns(String) }
|
773
|
+
attr_accessor :national_amount_decimal
|
774
|
+
|
775
|
+
sig { params(local_amount_decimal: String, national_amount_decimal: String).void }
|
776
|
+
def initialize(local_amount_decimal: nil, national_amount_decimal: nil); end
|
777
|
+
end
|
778
|
+
# Breakdown of fuel portion of the purchase.
|
779
|
+
sig {
|
780
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown::Fuel)
|
781
|
+
}
|
782
|
+
attr_accessor :fuel
|
783
|
+
|
784
|
+
# Breakdown of non-fuel portion of the purchase.
|
785
|
+
sig {
|
786
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown::NonFuel)
|
787
|
+
}
|
788
|
+
attr_accessor :non_fuel
|
789
|
+
|
790
|
+
# Information about tax included in this transaction.
|
791
|
+
sig {
|
792
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown::Tax)
|
793
|
+
}
|
794
|
+
attr_accessor :tax
|
795
|
+
|
796
|
+
sig {
|
797
|
+
params(fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown::Fuel, non_fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown::NonFuel, tax: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown::Tax).void
|
798
|
+
}
|
799
|
+
def initialize(fuel: nil, non_fuel: nil, tax: nil); end
|
800
|
+
end
|
801
|
+
# Answers to prompts presented to the cardholder at the point of sale. Prompted fields vary depending on the configuration of your physical fleet cards. Typical points of sale support only numeric entry.
|
802
|
+
sig {
|
803
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::CardholderPromptData)
|
804
|
+
}
|
805
|
+
attr_accessor :cardholder_prompt_data
|
806
|
+
|
807
|
+
# The type of purchase. One of `fuel_purchase`, `non_fuel_purchase`, or `fuel_and_non_fuel_purchase`.
|
808
|
+
sig { returns(String) }
|
809
|
+
attr_accessor :purchase_type
|
810
|
+
|
811
|
+
# More information about the total amount. This information is not guaranteed to be accurate as some merchants may provide unreliable data.
|
812
|
+
sig {
|
813
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown)
|
814
|
+
}
|
815
|
+
attr_accessor :reported_breakdown
|
816
|
+
|
817
|
+
# The type of fuel service. One of `non_fuel_transaction`, `full_service`, or `self_service`.
|
818
|
+
sig { returns(String) }
|
819
|
+
attr_accessor :service_type
|
820
|
+
|
821
|
+
sig {
|
822
|
+
params(cardholder_prompt_data: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::CardholderPromptData, purchase_type: String, reported_breakdown: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet::ReportedBreakdown, service_type: String).void
|
823
|
+
}
|
824
|
+
def initialize(
|
825
|
+
cardholder_prompt_data: nil,
|
826
|
+
purchase_type: nil,
|
827
|
+
reported_breakdown: nil,
|
828
|
+
service_type: nil
|
829
|
+
); end
|
830
|
+
end
|
831
|
+
class Fuel < Stripe::RequestParams
|
832
|
+
# [Conexxus Payment System Product Code](https://www.conexxus.org/conexxus-payment-system-product-codes) identifying the primary fuel product purchased.
|
833
|
+
sig { returns(String) }
|
834
|
+
attr_accessor :industry_product_code
|
835
|
+
|
836
|
+
# The quantity of `unit`s of fuel that was dispensed, represented as a decimal string with at most 12 decimal places.
|
837
|
+
sig { returns(String) }
|
838
|
+
attr_accessor :quantity_decimal
|
839
|
+
|
840
|
+
# The type of fuel that was purchased. One of `diesel`, `unleaded_plus`, `unleaded_regular`, `unleaded_super`, or `other`.
|
841
|
+
sig { returns(String) }
|
842
|
+
attr_accessor :type
|
843
|
+
|
844
|
+
# The units for `quantity_decimal`. One of `charging_minute`, `imperial_gallon`, `kilogram`, `kilowatt_hour`, `liter`, `pound`, `us_gallon`, or `other`.
|
845
|
+
sig { returns(String) }
|
846
|
+
attr_accessor :unit
|
847
|
+
|
848
|
+
# The cost in cents per each unit of fuel, represented as a decimal string with at most 12 decimal places.
|
849
|
+
sig { returns(String) }
|
850
|
+
attr_accessor :unit_cost_decimal
|
851
|
+
|
852
|
+
sig {
|
853
|
+
params(industry_product_code: String, quantity_decimal: String, type: String, unit: String, unit_cost_decimal: String).void
|
854
|
+
}
|
855
|
+
def initialize(
|
856
|
+
industry_product_code: nil,
|
857
|
+
quantity_decimal: nil,
|
858
|
+
type: nil,
|
859
|
+
unit: nil,
|
860
|
+
unit_cost_decimal: nil
|
861
|
+
); end
|
862
|
+
end
|
863
|
+
# Specifies which fields in the response should be expanded.
|
864
|
+
sig { returns(T::Array[String]) }
|
865
|
+
attr_accessor :expand
|
866
|
+
|
867
|
+
# The final authorization amount that will be captured by the merchant. This amount is in the authorization currency and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
868
|
+
sig { returns(Integer) }
|
869
|
+
attr_accessor :final_amount
|
870
|
+
|
871
|
+
# Fleet-specific information for authorizations using Fleet cards.
|
872
|
+
sig {
|
873
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet)
|
874
|
+
}
|
875
|
+
attr_accessor :fleet
|
876
|
+
|
877
|
+
# Information about fuel that was purchased with this transaction.
|
878
|
+
sig {
|
879
|
+
returns(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fuel)
|
880
|
+
}
|
881
|
+
attr_accessor :fuel
|
882
|
+
|
883
|
+
sig {
|
884
|
+
params(expand: T::Array[String], final_amount: Integer, fleet: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fleet, fuel: ::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams::Fuel).void
|
885
|
+
}
|
886
|
+
def initialize(expand: nil, final_amount: nil, fleet: nil, fuel: nil); end
|
887
|
+
end
|
888
|
+
class RespondParams < Stripe::RequestParams
|
889
|
+
# Whether to simulate the user confirming that the transaction was legitimate (true) or telling Stripe that it was fraudulent (false).
|
890
|
+
sig { returns(T::Boolean) }
|
891
|
+
attr_accessor :confirmed
|
892
|
+
|
893
|
+
# Specifies which fields in the response should be expanded.
|
894
|
+
sig { returns(T::Array[String]) }
|
895
|
+
attr_accessor :expand
|
896
|
+
|
897
|
+
sig { params(confirmed: T::Boolean, expand: T::Array[String]).void }
|
898
|
+
def initialize(confirmed: nil, expand: nil); end
|
899
|
+
end
|
900
|
+
class IncrementParams < Stripe::RequestParams
|
901
|
+
# Specifies which fields in the response should be expanded.
|
902
|
+
sig { returns(T::Array[String]) }
|
903
|
+
attr_accessor :expand
|
904
|
+
|
905
|
+
# The amount to increment the authorization by. This amount is in the authorization currency and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
906
|
+
sig { returns(Integer) }
|
907
|
+
attr_accessor :increment_amount
|
908
|
+
|
909
|
+
# If set `true`, you may provide [amount](https://stripe.com/docs/api/issuing/authorizations/approve#approve_issuing_authorization-amount) to control how much to hold for the authorization.
|
910
|
+
sig { returns(T::Boolean) }
|
911
|
+
attr_accessor :is_amount_controllable
|
912
|
+
|
913
|
+
sig {
|
914
|
+
params(expand: T::Array[String], increment_amount: Integer, is_amount_controllable: T::Boolean).void
|
915
|
+
}
|
916
|
+
def initialize(expand: nil, increment_amount: nil, is_amount_controllable: nil); end
|
917
|
+
end
|
918
|
+
class ReverseParams < Stripe::RequestParams
|
919
|
+
# Specifies which fields in the response should be expanded.
|
920
|
+
sig { returns(T::Array[String]) }
|
921
|
+
attr_accessor :expand
|
922
|
+
|
923
|
+
# The amount to reverse from the authorization. If not provided, the full amount of the authorization will be reversed. This amount is in the authorization currency and in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
|
924
|
+
sig { returns(Integer) }
|
925
|
+
attr_accessor :reverse_amount
|
926
|
+
|
927
|
+
sig { params(expand: T::Array[String], reverse_amount: Integer).void }
|
928
|
+
def initialize(expand: nil, reverse_amount: nil); end
|
929
|
+
end
|
930
|
+
# Capture a test-mode authorization.
|
931
|
+
sig {
|
932
|
+
params(authorization: String, params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::CaptureParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
933
|
+
}
|
934
|
+
def capture(authorization, params = {}, opts = {}); end
|
935
|
+
|
936
|
+
# Create a test-mode authorization.
|
937
|
+
sig {
|
938
|
+
params(params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::CreateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
939
|
+
}
|
940
|
+
def create(params = {}, opts = {}); end
|
941
|
+
|
942
|
+
# Expire a test-mode Authorization.
|
943
|
+
sig {
|
944
|
+
params(authorization: String, params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::ExpireParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
945
|
+
}
|
946
|
+
def expire(authorization, params = {}, opts = {}); end
|
947
|
+
|
948
|
+
# Finalize the amount on an Authorization prior to capture, when the initial authorization was for an estimated amount.
|
949
|
+
sig {
|
950
|
+
params(authorization: String, params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::FinalizeAmountParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
951
|
+
}
|
952
|
+
def finalize_amount(authorization, params = {}, opts = {}); end
|
953
|
+
|
954
|
+
# Increment a test-mode Authorization.
|
955
|
+
sig {
|
956
|
+
params(authorization: String, params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::IncrementParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
957
|
+
}
|
958
|
+
def increment(authorization, params = {}, opts = {}); end
|
959
|
+
|
960
|
+
# Respond to a fraud challenge on a testmode Issuing authorization, simulating either a confirmation of fraud or a correction of legitimacy.
|
961
|
+
sig {
|
962
|
+
params(authorization: String, params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::RespondParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
963
|
+
}
|
964
|
+
def respond(authorization, params = {}, opts = {}); end
|
965
|
+
|
966
|
+
# Reverse a test-mode Authorization.
|
967
|
+
sig {
|
968
|
+
params(authorization: String, params: T.any(::Stripe::TestHelpers::Issuing::AuthorizationService::ReverseParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Issuing::Authorization)
|
969
|
+
}
|
970
|
+
def reverse(authorization, params = {}, opts = {}); end
|
971
|
+
end
|
972
|
+
end
|
973
|
+
end
|
974
|
+
end
|