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,1077 @@
|
|
1
|
+
# File generated from our OpenAPI spec
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# typed: true
|
5
|
+
module Stripe
|
6
|
+
class AccountPersonService < StripeService
|
7
|
+
class DeleteParams < Stripe::RequestParams
|
8
|
+
|
9
|
+
end
|
10
|
+
class RetrieveParams < Stripe::RequestParams
|
11
|
+
# Specifies which fields in the response should be expanded.
|
12
|
+
sig { returns(T::Array[String]) }
|
13
|
+
attr_accessor :expand
|
14
|
+
|
15
|
+
sig { params(expand: T::Array[String]).void }
|
16
|
+
def initialize(expand: nil); end
|
17
|
+
end
|
18
|
+
class UpdateParams < Stripe::RequestParams
|
19
|
+
class AdditionalTosAcceptances < Stripe::RequestParams
|
20
|
+
class Account < Stripe::RequestParams
|
21
|
+
# The Unix timestamp marking when the account representative accepted the service agreement.
|
22
|
+
sig { returns(Integer) }
|
23
|
+
attr_accessor :date
|
24
|
+
|
25
|
+
# The IP address from which the account representative accepted the service agreement.
|
26
|
+
sig { returns(String) }
|
27
|
+
attr_accessor :ip
|
28
|
+
|
29
|
+
# The user agent of the browser from which the account representative accepted the service agreement.
|
30
|
+
sig { returns(T.nilable(String)) }
|
31
|
+
attr_accessor :user_agent
|
32
|
+
|
33
|
+
sig { params(date: Integer, ip: String, user_agent: T.nilable(String)).void }
|
34
|
+
def initialize(date: nil, ip: nil, user_agent: nil); end
|
35
|
+
end
|
36
|
+
# Details on the legal guardian's acceptance of the main Stripe service agreement.
|
37
|
+
sig {
|
38
|
+
returns(::Stripe::AccountPersonService::UpdateParams::AdditionalTosAcceptances::Account)
|
39
|
+
}
|
40
|
+
attr_accessor :account
|
41
|
+
|
42
|
+
sig {
|
43
|
+
params(account: ::Stripe::AccountPersonService::UpdateParams::AdditionalTosAcceptances::Account).void
|
44
|
+
}
|
45
|
+
def initialize(account: nil); end
|
46
|
+
end
|
47
|
+
class Address < Stripe::RequestParams
|
48
|
+
# City, district, suburb, town, or village.
|
49
|
+
sig { returns(String) }
|
50
|
+
attr_accessor :city
|
51
|
+
|
52
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
53
|
+
sig { returns(String) }
|
54
|
+
attr_accessor :country
|
55
|
+
|
56
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
57
|
+
sig { returns(String) }
|
58
|
+
attr_accessor :line1
|
59
|
+
|
60
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
61
|
+
sig { returns(String) }
|
62
|
+
attr_accessor :line2
|
63
|
+
|
64
|
+
# ZIP or postal code.
|
65
|
+
sig { returns(String) }
|
66
|
+
attr_accessor :postal_code
|
67
|
+
|
68
|
+
# State, county, province, or region.
|
69
|
+
sig { returns(String) }
|
70
|
+
attr_accessor :state
|
71
|
+
|
72
|
+
sig {
|
73
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String).void
|
74
|
+
}
|
75
|
+
def initialize(
|
76
|
+
city: nil,
|
77
|
+
country: nil,
|
78
|
+
line1: nil,
|
79
|
+
line2: nil,
|
80
|
+
postal_code: nil,
|
81
|
+
state: nil
|
82
|
+
); end
|
83
|
+
end
|
84
|
+
class AddressKana < Stripe::RequestParams
|
85
|
+
# City or ward.
|
86
|
+
sig { returns(String) }
|
87
|
+
attr_accessor :city
|
88
|
+
|
89
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
90
|
+
sig { returns(String) }
|
91
|
+
attr_accessor :country
|
92
|
+
|
93
|
+
# Block or building number.
|
94
|
+
sig { returns(String) }
|
95
|
+
attr_accessor :line1
|
96
|
+
|
97
|
+
# Building details.
|
98
|
+
sig { returns(String) }
|
99
|
+
attr_accessor :line2
|
100
|
+
|
101
|
+
# Postal code.
|
102
|
+
sig { returns(String) }
|
103
|
+
attr_accessor :postal_code
|
104
|
+
|
105
|
+
# Prefecture.
|
106
|
+
sig { returns(String) }
|
107
|
+
attr_accessor :state
|
108
|
+
|
109
|
+
# Town or cho-me.
|
110
|
+
sig { returns(String) }
|
111
|
+
attr_accessor :town
|
112
|
+
|
113
|
+
sig {
|
114
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String, town: String).void
|
115
|
+
}
|
116
|
+
def initialize(
|
117
|
+
city: nil,
|
118
|
+
country: nil,
|
119
|
+
line1: nil,
|
120
|
+
line2: nil,
|
121
|
+
postal_code: nil,
|
122
|
+
state: nil,
|
123
|
+
town: nil
|
124
|
+
); end
|
125
|
+
end
|
126
|
+
class AddressKanji < Stripe::RequestParams
|
127
|
+
# City or ward.
|
128
|
+
sig { returns(String) }
|
129
|
+
attr_accessor :city
|
130
|
+
|
131
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
132
|
+
sig { returns(String) }
|
133
|
+
attr_accessor :country
|
134
|
+
|
135
|
+
# Block or building number.
|
136
|
+
sig { returns(String) }
|
137
|
+
attr_accessor :line1
|
138
|
+
|
139
|
+
# Building details.
|
140
|
+
sig { returns(String) }
|
141
|
+
attr_accessor :line2
|
142
|
+
|
143
|
+
# Postal code.
|
144
|
+
sig { returns(String) }
|
145
|
+
attr_accessor :postal_code
|
146
|
+
|
147
|
+
# Prefecture.
|
148
|
+
sig { returns(String) }
|
149
|
+
attr_accessor :state
|
150
|
+
|
151
|
+
# Town or cho-me.
|
152
|
+
sig { returns(String) }
|
153
|
+
attr_accessor :town
|
154
|
+
|
155
|
+
sig {
|
156
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String, town: String).void
|
157
|
+
}
|
158
|
+
def initialize(
|
159
|
+
city: nil,
|
160
|
+
country: nil,
|
161
|
+
line1: nil,
|
162
|
+
line2: nil,
|
163
|
+
postal_code: nil,
|
164
|
+
state: nil,
|
165
|
+
town: nil
|
166
|
+
); end
|
167
|
+
end
|
168
|
+
class Dob < Stripe::RequestParams
|
169
|
+
# The day of birth, between 1 and 31.
|
170
|
+
sig { returns(Integer) }
|
171
|
+
attr_accessor :day
|
172
|
+
|
173
|
+
# The month of birth, between 1 and 12.
|
174
|
+
sig { returns(Integer) }
|
175
|
+
attr_accessor :month
|
176
|
+
|
177
|
+
# The four-digit year of birth.
|
178
|
+
sig { returns(Integer) }
|
179
|
+
attr_accessor :year
|
180
|
+
|
181
|
+
sig { params(day: Integer, month: Integer, year: Integer).void }
|
182
|
+
def initialize(day: nil, month: nil, year: nil); end
|
183
|
+
end
|
184
|
+
class Documents < Stripe::RequestParams
|
185
|
+
class CompanyAuthorization < Stripe::RequestParams
|
186
|
+
# One or more document ids returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `account_requirement`.
|
187
|
+
sig { returns(T::Array[String]) }
|
188
|
+
attr_accessor :files
|
189
|
+
|
190
|
+
sig { params(files: T::Array[String]).void }
|
191
|
+
def initialize(files: nil); end
|
192
|
+
end
|
193
|
+
class Passport < Stripe::RequestParams
|
194
|
+
# One or more document ids returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `account_requirement`.
|
195
|
+
sig { returns(T::Array[String]) }
|
196
|
+
attr_accessor :files
|
197
|
+
|
198
|
+
sig { params(files: T::Array[String]).void }
|
199
|
+
def initialize(files: nil); end
|
200
|
+
end
|
201
|
+
class Visa < Stripe::RequestParams
|
202
|
+
# One or more document ids returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `account_requirement`.
|
203
|
+
sig { returns(T::Array[String]) }
|
204
|
+
attr_accessor :files
|
205
|
+
|
206
|
+
sig { params(files: T::Array[String]).void }
|
207
|
+
def initialize(files: nil); end
|
208
|
+
end
|
209
|
+
# One or more documents that demonstrate proof that this person is authorized to represent the company.
|
210
|
+
sig {
|
211
|
+
returns(::Stripe::AccountPersonService::UpdateParams::Documents::CompanyAuthorization)
|
212
|
+
}
|
213
|
+
attr_accessor :company_authorization
|
214
|
+
|
215
|
+
# One or more documents showing the person's passport page with photo and personal data.
|
216
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Documents::Passport) }
|
217
|
+
attr_accessor :passport
|
218
|
+
|
219
|
+
# One or more documents showing the person's visa required for living in the country where they are residing.
|
220
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Documents::Visa) }
|
221
|
+
attr_accessor :visa
|
222
|
+
|
223
|
+
sig {
|
224
|
+
params(company_authorization: ::Stripe::AccountPersonService::UpdateParams::Documents::CompanyAuthorization, passport: ::Stripe::AccountPersonService::UpdateParams::Documents::Passport, visa: ::Stripe::AccountPersonService::UpdateParams::Documents::Visa).void
|
225
|
+
}
|
226
|
+
def initialize(company_authorization: nil, passport: nil, visa: nil); end
|
227
|
+
end
|
228
|
+
class RegisteredAddress < Stripe::RequestParams
|
229
|
+
# City, district, suburb, town, or village.
|
230
|
+
sig { returns(String) }
|
231
|
+
attr_accessor :city
|
232
|
+
|
233
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
234
|
+
sig { returns(String) }
|
235
|
+
attr_accessor :country
|
236
|
+
|
237
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
238
|
+
sig { returns(String) }
|
239
|
+
attr_accessor :line1
|
240
|
+
|
241
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
242
|
+
sig { returns(String) }
|
243
|
+
attr_accessor :line2
|
244
|
+
|
245
|
+
# ZIP or postal code.
|
246
|
+
sig { returns(String) }
|
247
|
+
attr_accessor :postal_code
|
248
|
+
|
249
|
+
# State, county, province, or region.
|
250
|
+
sig { returns(String) }
|
251
|
+
attr_accessor :state
|
252
|
+
|
253
|
+
sig {
|
254
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String).void
|
255
|
+
}
|
256
|
+
def initialize(
|
257
|
+
city: nil,
|
258
|
+
country: nil,
|
259
|
+
line1: nil,
|
260
|
+
line2: nil,
|
261
|
+
postal_code: nil,
|
262
|
+
state: nil
|
263
|
+
); end
|
264
|
+
end
|
265
|
+
class Relationship < Stripe::RequestParams
|
266
|
+
# Whether the person is the authorizer of the account's representative.
|
267
|
+
sig { returns(T::Boolean) }
|
268
|
+
attr_accessor :authorizer
|
269
|
+
|
270
|
+
# Whether the person is a director of the account's legal entity. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.
|
271
|
+
sig { returns(T::Boolean) }
|
272
|
+
attr_accessor :director
|
273
|
+
|
274
|
+
# Whether the person has significant responsibility to control, manage, or direct the organization.
|
275
|
+
sig { returns(T::Boolean) }
|
276
|
+
attr_accessor :executive
|
277
|
+
|
278
|
+
# Whether the person is the legal guardian of the account's representative.
|
279
|
+
sig { returns(T::Boolean) }
|
280
|
+
attr_accessor :legal_guardian
|
281
|
+
|
282
|
+
# Whether the person is an owner of the account’s legal entity.
|
283
|
+
sig { returns(T::Boolean) }
|
284
|
+
attr_accessor :owner
|
285
|
+
|
286
|
+
# The percent owned by the person of the account's legal entity.
|
287
|
+
sig { returns(T.nilable(Float)) }
|
288
|
+
attr_accessor :percent_ownership
|
289
|
+
|
290
|
+
# Whether the person is authorized as the primary representative of the account. This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.
|
291
|
+
sig { returns(T::Boolean) }
|
292
|
+
attr_accessor :representative
|
293
|
+
|
294
|
+
# The person's title (e.g., CEO, Support Engineer).
|
295
|
+
sig { returns(String) }
|
296
|
+
attr_accessor :title
|
297
|
+
|
298
|
+
sig {
|
299
|
+
params(authorizer: T::Boolean, director: T::Boolean, executive: T::Boolean, legal_guardian: T::Boolean, owner: T::Boolean, percent_ownership: T.nilable(Float), representative: T::Boolean, title: String).void
|
300
|
+
}
|
301
|
+
def initialize(
|
302
|
+
authorizer: nil,
|
303
|
+
director: nil,
|
304
|
+
executive: nil,
|
305
|
+
legal_guardian: nil,
|
306
|
+
owner: nil,
|
307
|
+
percent_ownership: nil,
|
308
|
+
representative: nil,
|
309
|
+
title: nil
|
310
|
+
); end
|
311
|
+
end
|
312
|
+
class Verification < Stripe::RequestParams
|
313
|
+
class AdditionalDocument < Stripe::RequestParams
|
314
|
+
# The back of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
315
|
+
sig { returns(String) }
|
316
|
+
attr_accessor :back
|
317
|
+
|
318
|
+
# The front of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
319
|
+
sig { returns(String) }
|
320
|
+
attr_accessor :front
|
321
|
+
|
322
|
+
sig { params(back: String, front: String).void }
|
323
|
+
def initialize(back: nil, front: nil); end
|
324
|
+
end
|
325
|
+
class Document < Stripe::RequestParams
|
326
|
+
# The back of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
327
|
+
sig { returns(String) }
|
328
|
+
attr_accessor :back
|
329
|
+
|
330
|
+
# The front of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
331
|
+
sig { returns(String) }
|
332
|
+
attr_accessor :front
|
333
|
+
|
334
|
+
sig { params(back: String, front: String).void }
|
335
|
+
def initialize(back: nil, front: nil); end
|
336
|
+
end
|
337
|
+
# A document showing address, either a passport, local ID card, or utility bill from a well-known utility company.
|
338
|
+
sig {
|
339
|
+
returns(::Stripe::AccountPersonService::UpdateParams::Verification::AdditionalDocument)
|
340
|
+
}
|
341
|
+
attr_accessor :additional_document
|
342
|
+
|
343
|
+
# An identifying document, either a passport or local ID card.
|
344
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Verification::Document) }
|
345
|
+
attr_accessor :document
|
346
|
+
|
347
|
+
sig {
|
348
|
+
params(additional_document: ::Stripe::AccountPersonService::UpdateParams::Verification::AdditionalDocument, document: ::Stripe::AccountPersonService::UpdateParams::Verification::Document).void
|
349
|
+
}
|
350
|
+
def initialize(additional_document: nil, document: nil); end
|
351
|
+
end
|
352
|
+
# Details on the legal guardian's or authorizer's acceptance of the required Stripe agreements.
|
353
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::AdditionalTosAcceptances) }
|
354
|
+
attr_accessor :additional_tos_acceptances
|
355
|
+
|
356
|
+
# The person's address.
|
357
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Address) }
|
358
|
+
attr_accessor :address
|
359
|
+
|
360
|
+
# The Kana variation of the person's address (Japan only).
|
361
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::AddressKana) }
|
362
|
+
attr_accessor :address_kana
|
363
|
+
|
364
|
+
# The Kanji variation of the person's address (Japan only).
|
365
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::AddressKanji) }
|
366
|
+
attr_accessor :address_kanji
|
367
|
+
|
368
|
+
# The person's date of birth.
|
369
|
+
sig { returns(T.nilable(::Stripe::AccountPersonService::UpdateParams::Dob)) }
|
370
|
+
attr_accessor :dob
|
371
|
+
|
372
|
+
# Documents that may be submitted to satisfy various informational requests.
|
373
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Documents) }
|
374
|
+
attr_accessor :documents
|
375
|
+
|
376
|
+
# The person's email address.
|
377
|
+
sig { returns(String) }
|
378
|
+
attr_accessor :email
|
379
|
+
|
380
|
+
# Specifies which fields in the response should be expanded.
|
381
|
+
sig { returns(T::Array[String]) }
|
382
|
+
attr_accessor :expand
|
383
|
+
|
384
|
+
# The person's first name.
|
385
|
+
sig { returns(String) }
|
386
|
+
attr_accessor :first_name
|
387
|
+
|
388
|
+
# The Kana variation of the person's first name (Japan only).
|
389
|
+
sig { returns(String) }
|
390
|
+
attr_accessor :first_name_kana
|
391
|
+
|
392
|
+
# The Kanji variation of the person's first name (Japan only).
|
393
|
+
sig { returns(String) }
|
394
|
+
attr_accessor :first_name_kanji
|
395
|
+
|
396
|
+
# A list of alternate names or aliases that the person is known by.
|
397
|
+
sig { returns(T.nilable(T::Array[String])) }
|
398
|
+
attr_accessor :full_name_aliases
|
399
|
+
|
400
|
+
# The person's gender (International regulations require either "male" or "female").
|
401
|
+
sig { returns(String) }
|
402
|
+
attr_accessor :gender
|
403
|
+
|
404
|
+
# The person's ID number, as appropriate for their country. For example, a social security number in the U.S., social insurance number in Canada, etc. Instead of the number itself, you can also provide a [PII token provided by Stripe.js](https://docs.stripe.com/js/tokens/create_token?type=pii).
|
405
|
+
sig { returns(String) }
|
406
|
+
attr_accessor :id_number
|
407
|
+
|
408
|
+
# The person's secondary ID number, as appropriate for their country, will be used for enhanced verification checks. In Thailand, this would be the laser code found on the back of an ID card. Instead of the number itself, you can also provide a [PII token provided by Stripe.js](https://docs.stripe.com/js/tokens/create_token?type=pii).
|
409
|
+
sig { returns(String) }
|
410
|
+
attr_accessor :id_number_secondary
|
411
|
+
|
412
|
+
# The person's last name.
|
413
|
+
sig { returns(String) }
|
414
|
+
attr_accessor :last_name
|
415
|
+
|
416
|
+
# The Kana variation of the person's last name (Japan only).
|
417
|
+
sig { returns(String) }
|
418
|
+
attr_accessor :last_name_kana
|
419
|
+
|
420
|
+
# The Kanji variation of the person's last name (Japan only).
|
421
|
+
sig { returns(String) }
|
422
|
+
attr_accessor :last_name_kanji
|
423
|
+
|
424
|
+
# The person's maiden name.
|
425
|
+
sig { returns(String) }
|
426
|
+
attr_accessor :maiden_name
|
427
|
+
|
428
|
+
# Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
429
|
+
sig { returns(T.nilable(T::Hash[String, String])) }
|
430
|
+
attr_accessor :metadata
|
431
|
+
|
432
|
+
# The country where the person is a national. Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)), or "XX" if unavailable.
|
433
|
+
sig { returns(String) }
|
434
|
+
attr_accessor :nationality
|
435
|
+
|
436
|
+
# A [person token](https://docs.stripe.com/connect/account-tokens), used to securely provide details to the person.
|
437
|
+
sig { returns(String) }
|
438
|
+
attr_accessor :person_token
|
439
|
+
|
440
|
+
# The person's phone number.
|
441
|
+
sig { returns(String) }
|
442
|
+
attr_accessor :phone
|
443
|
+
|
444
|
+
# Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction.
|
445
|
+
sig { returns(String) }
|
446
|
+
attr_accessor :political_exposure
|
447
|
+
|
448
|
+
# The person's registered address.
|
449
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::RegisteredAddress) }
|
450
|
+
attr_accessor :registered_address
|
451
|
+
|
452
|
+
# The relationship that this person has with the account's legal entity.
|
453
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Relationship) }
|
454
|
+
attr_accessor :relationship
|
455
|
+
|
456
|
+
# The last four digits of the person's Social Security number (U.S. only).
|
457
|
+
sig { returns(String) }
|
458
|
+
attr_accessor :ssn_last_4
|
459
|
+
|
460
|
+
# The person's verification status.
|
461
|
+
sig { returns(::Stripe::AccountPersonService::UpdateParams::Verification) }
|
462
|
+
attr_accessor :verification
|
463
|
+
|
464
|
+
sig {
|
465
|
+
params(additional_tos_acceptances: ::Stripe::AccountPersonService::UpdateParams::AdditionalTosAcceptances, address: ::Stripe::AccountPersonService::UpdateParams::Address, address_kana: ::Stripe::AccountPersonService::UpdateParams::AddressKana, address_kanji: ::Stripe::AccountPersonService::UpdateParams::AddressKanji, dob: T.nilable(::Stripe::AccountPersonService::UpdateParams::Dob), documents: ::Stripe::AccountPersonService::UpdateParams::Documents, email: String, expand: T::Array[String], first_name: String, first_name_kana: String, first_name_kanji: String, full_name_aliases: T.nilable(T::Array[String]), gender: String, id_number: String, id_number_secondary: String, last_name: String, last_name_kana: String, last_name_kanji: String, maiden_name: String, metadata: T.nilable(T::Hash[String, String]), nationality: String, person_token: String, phone: String, political_exposure: String, registered_address: ::Stripe::AccountPersonService::UpdateParams::RegisteredAddress, relationship: ::Stripe::AccountPersonService::UpdateParams::Relationship, ssn_last_4: String, verification: ::Stripe::AccountPersonService::UpdateParams::Verification).void
|
466
|
+
}
|
467
|
+
def initialize(
|
468
|
+
additional_tos_acceptances: nil,
|
469
|
+
address: nil,
|
470
|
+
address_kana: nil,
|
471
|
+
address_kanji: nil,
|
472
|
+
dob: nil,
|
473
|
+
documents: nil,
|
474
|
+
email: nil,
|
475
|
+
expand: nil,
|
476
|
+
first_name: nil,
|
477
|
+
first_name_kana: nil,
|
478
|
+
first_name_kanji: nil,
|
479
|
+
full_name_aliases: nil,
|
480
|
+
gender: nil,
|
481
|
+
id_number: nil,
|
482
|
+
id_number_secondary: nil,
|
483
|
+
last_name: nil,
|
484
|
+
last_name_kana: nil,
|
485
|
+
last_name_kanji: nil,
|
486
|
+
maiden_name: nil,
|
487
|
+
metadata: nil,
|
488
|
+
nationality: nil,
|
489
|
+
person_token: nil,
|
490
|
+
phone: nil,
|
491
|
+
political_exposure: nil,
|
492
|
+
registered_address: nil,
|
493
|
+
relationship: nil,
|
494
|
+
ssn_last_4: nil,
|
495
|
+
verification: nil
|
496
|
+
); end
|
497
|
+
end
|
498
|
+
class ListParams < Stripe::RequestParams
|
499
|
+
class Relationship < Stripe::RequestParams
|
500
|
+
# A filter on the list of people returned based on whether these people are authorizers of the account's representative.
|
501
|
+
sig { returns(T::Boolean) }
|
502
|
+
attr_accessor :authorizer
|
503
|
+
|
504
|
+
# A filter on the list of people returned based on whether these people are directors of the account's company.
|
505
|
+
sig { returns(T::Boolean) }
|
506
|
+
attr_accessor :director
|
507
|
+
|
508
|
+
# A filter on the list of people returned based on whether these people are executives of the account's company.
|
509
|
+
sig { returns(T::Boolean) }
|
510
|
+
attr_accessor :executive
|
511
|
+
|
512
|
+
# A filter on the list of people returned based on whether these people are legal guardians of the account's representative.
|
513
|
+
sig { returns(T::Boolean) }
|
514
|
+
attr_accessor :legal_guardian
|
515
|
+
|
516
|
+
# A filter on the list of people returned based on whether these people are owners of the account's company.
|
517
|
+
sig { returns(T::Boolean) }
|
518
|
+
attr_accessor :owner
|
519
|
+
|
520
|
+
# A filter on the list of people returned based on whether these people are the representative of the account's company.
|
521
|
+
sig { returns(T::Boolean) }
|
522
|
+
attr_accessor :representative
|
523
|
+
|
524
|
+
sig {
|
525
|
+
params(authorizer: T::Boolean, director: T::Boolean, executive: T::Boolean, legal_guardian: T::Boolean, owner: T::Boolean, representative: T::Boolean).void
|
526
|
+
}
|
527
|
+
def initialize(
|
528
|
+
authorizer: nil,
|
529
|
+
director: nil,
|
530
|
+
executive: nil,
|
531
|
+
legal_guardian: nil,
|
532
|
+
owner: nil,
|
533
|
+
representative: nil
|
534
|
+
); end
|
535
|
+
end
|
536
|
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
|
537
|
+
sig { returns(String) }
|
538
|
+
attr_accessor :ending_before
|
539
|
+
|
540
|
+
# Specifies which fields in the response should be expanded.
|
541
|
+
sig { returns(T::Array[String]) }
|
542
|
+
attr_accessor :expand
|
543
|
+
|
544
|
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
|
545
|
+
sig { returns(Integer) }
|
546
|
+
attr_accessor :limit
|
547
|
+
|
548
|
+
# Filters on the list of people returned based on the person's relationship to the account's company.
|
549
|
+
sig { returns(::Stripe::AccountPersonService::ListParams::Relationship) }
|
550
|
+
attr_accessor :relationship
|
551
|
+
|
552
|
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
|
553
|
+
sig { returns(String) }
|
554
|
+
attr_accessor :starting_after
|
555
|
+
|
556
|
+
sig {
|
557
|
+
params(ending_before: String, expand: T::Array[String], limit: Integer, relationship: ::Stripe::AccountPersonService::ListParams::Relationship, starting_after: String).void
|
558
|
+
}
|
559
|
+
def initialize(
|
560
|
+
ending_before: nil,
|
561
|
+
expand: nil,
|
562
|
+
limit: nil,
|
563
|
+
relationship: nil,
|
564
|
+
starting_after: nil
|
565
|
+
); end
|
566
|
+
end
|
567
|
+
class CreateParams < Stripe::RequestParams
|
568
|
+
class AdditionalTosAcceptances < Stripe::RequestParams
|
569
|
+
class Account < Stripe::RequestParams
|
570
|
+
# The Unix timestamp marking when the account representative accepted the service agreement.
|
571
|
+
sig { returns(Integer) }
|
572
|
+
attr_accessor :date
|
573
|
+
|
574
|
+
# The IP address from which the account representative accepted the service agreement.
|
575
|
+
sig { returns(String) }
|
576
|
+
attr_accessor :ip
|
577
|
+
|
578
|
+
# The user agent of the browser from which the account representative accepted the service agreement.
|
579
|
+
sig { returns(T.nilable(String)) }
|
580
|
+
attr_accessor :user_agent
|
581
|
+
|
582
|
+
sig { params(date: Integer, ip: String, user_agent: T.nilable(String)).void }
|
583
|
+
def initialize(date: nil, ip: nil, user_agent: nil); end
|
584
|
+
end
|
585
|
+
# Details on the legal guardian's acceptance of the main Stripe service agreement.
|
586
|
+
sig {
|
587
|
+
returns(::Stripe::AccountPersonService::CreateParams::AdditionalTosAcceptances::Account)
|
588
|
+
}
|
589
|
+
attr_accessor :account
|
590
|
+
|
591
|
+
sig {
|
592
|
+
params(account: ::Stripe::AccountPersonService::CreateParams::AdditionalTosAcceptances::Account).void
|
593
|
+
}
|
594
|
+
def initialize(account: nil); end
|
595
|
+
end
|
596
|
+
class Address < Stripe::RequestParams
|
597
|
+
# City, district, suburb, town, or village.
|
598
|
+
sig { returns(String) }
|
599
|
+
attr_accessor :city
|
600
|
+
|
601
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
602
|
+
sig { returns(String) }
|
603
|
+
attr_accessor :country
|
604
|
+
|
605
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
606
|
+
sig { returns(String) }
|
607
|
+
attr_accessor :line1
|
608
|
+
|
609
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
610
|
+
sig { returns(String) }
|
611
|
+
attr_accessor :line2
|
612
|
+
|
613
|
+
# ZIP or postal code.
|
614
|
+
sig { returns(String) }
|
615
|
+
attr_accessor :postal_code
|
616
|
+
|
617
|
+
# State, county, province, or region.
|
618
|
+
sig { returns(String) }
|
619
|
+
attr_accessor :state
|
620
|
+
|
621
|
+
sig {
|
622
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String).void
|
623
|
+
}
|
624
|
+
def initialize(
|
625
|
+
city: nil,
|
626
|
+
country: nil,
|
627
|
+
line1: nil,
|
628
|
+
line2: nil,
|
629
|
+
postal_code: nil,
|
630
|
+
state: nil
|
631
|
+
); end
|
632
|
+
end
|
633
|
+
class AddressKana < Stripe::RequestParams
|
634
|
+
# City or ward.
|
635
|
+
sig { returns(String) }
|
636
|
+
attr_accessor :city
|
637
|
+
|
638
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
639
|
+
sig { returns(String) }
|
640
|
+
attr_accessor :country
|
641
|
+
|
642
|
+
# Block or building number.
|
643
|
+
sig { returns(String) }
|
644
|
+
attr_accessor :line1
|
645
|
+
|
646
|
+
# Building details.
|
647
|
+
sig { returns(String) }
|
648
|
+
attr_accessor :line2
|
649
|
+
|
650
|
+
# Postal code.
|
651
|
+
sig { returns(String) }
|
652
|
+
attr_accessor :postal_code
|
653
|
+
|
654
|
+
# Prefecture.
|
655
|
+
sig { returns(String) }
|
656
|
+
attr_accessor :state
|
657
|
+
|
658
|
+
# Town or cho-me.
|
659
|
+
sig { returns(String) }
|
660
|
+
attr_accessor :town
|
661
|
+
|
662
|
+
sig {
|
663
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String, town: String).void
|
664
|
+
}
|
665
|
+
def initialize(
|
666
|
+
city: nil,
|
667
|
+
country: nil,
|
668
|
+
line1: nil,
|
669
|
+
line2: nil,
|
670
|
+
postal_code: nil,
|
671
|
+
state: nil,
|
672
|
+
town: nil
|
673
|
+
); end
|
674
|
+
end
|
675
|
+
class AddressKanji < Stripe::RequestParams
|
676
|
+
# City or ward.
|
677
|
+
sig { returns(String) }
|
678
|
+
attr_accessor :city
|
679
|
+
|
680
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
681
|
+
sig { returns(String) }
|
682
|
+
attr_accessor :country
|
683
|
+
|
684
|
+
# Block or building number.
|
685
|
+
sig { returns(String) }
|
686
|
+
attr_accessor :line1
|
687
|
+
|
688
|
+
# Building details.
|
689
|
+
sig { returns(String) }
|
690
|
+
attr_accessor :line2
|
691
|
+
|
692
|
+
# Postal code.
|
693
|
+
sig { returns(String) }
|
694
|
+
attr_accessor :postal_code
|
695
|
+
|
696
|
+
# Prefecture.
|
697
|
+
sig { returns(String) }
|
698
|
+
attr_accessor :state
|
699
|
+
|
700
|
+
# Town or cho-me.
|
701
|
+
sig { returns(String) }
|
702
|
+
attr_accessor :town
|
703
|
+
|
704
|
+
sig {
|
705
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String, town: String).void
|
706
|
+
}
|
707
|
+
def initialize(
|
708
|
+
city: nil,
|
709
|
+
country: nil,
|
710
|
+
line1: nil,
|
711
|
+
line2: nil,
|
712
|
+
postal_code: nil,
|
713
|
+
state: nil,
|
714
|
+
town: nil
|
715
|
+
); end
|
716
|
+
end
|
717
|
+
class Dob < Stripe::RequestParams
|
718
|
+
# The day of birth, between 1 and 31.
|
719
|
+
sig { returns(Integer) }
|
720
|
+
attr_accessor :day
|
721
|
+
|
722
|
+
# The month of birth, between 1 and 12.
|
723
|
+
sig { returns(Integer) }
|
724
|
+
attr_accessor :month
|
725
|
+
|
726
|
+
# The four-digit year of birth.
|
727
|
+
sig { returns(Integer) }
|
728
|
+
attr_accessor :year
|
729
|
+
|
730
|
+
sig { params(day: Integer, month: Integer, year: Integer).void }
|
731
|
+
def initialize(day: nil, month: nil, year: nil); end
|
732
|
+
end
|
733
|
+
class Documents < Stripe::RequestParams
|
734
|
+
class CompanyAuthorization < Stripe::RequestParams
|
735
|
+
# One or more document ids returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `account_requirement`.
|
736
|
+
sig { returns(T::Array[String]) }
|
737
|
+
attr_accessor :files
|
738
|
+
|
739
|
+
sig { params(files: T::Array[String]).void }
|
740
|
+
def initialize(files: nil); end
|
741
|
+
end
|
742
|
+
class Passport < Stripe::RequestParams
|
743
|
+
# One or more document ids returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `account_requirement`.
|
744
|
+
sig { returns(T::Array[String]) }
|
745
|
+
attr_accessor :files
|
746
|
+
|
747
|
+
sig { params(files: T::Array[String]).void }
|
748
|
+
def initialize(files: nil); end
|
749
|
+
end
|
750
|
+
class Visa < Stripe::RequestParams
|
751
|
+
# One or more document ids returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `account_requirement`.
|
752
|
+
sig { returns(T::Array[String]) }
|
753
|
+
attr_accessor :files
|
754
|
+
|
755
|
+
sig { params(files: T::Array[String]).void }
|
756
|
+
def initialize(files: nil); end
|
757
|
+
end
|
758
|
+
# One or more documents that demonstrate proof that this person is authorized to represent the company.
|
759
|
+
sig {
|
760
|
+
returns(::Stripe::AccountPersonService::CreateParams::Documents::CompanyAuthorization)
|
761
|
+
}
|
762
|
+
attr_accessor :company_authorization
|
763
|
+
|
764
|
+
# One or more documents showing the person's passport page with photo and personal data.
|
765
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Documents::Passport) }
|
766
|
+
attr_accessor :passport
|
767
|
+
|
768
|
+
# One or more documents showing the person's visa required for living in the country where they are residing.
|
769
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Documents::Visa) }
|
770
|
+
attr_accessor :visa
|
771
|
+
|
772
|
+
sig {
|
773
|
+
params(company_authorization: ::Stripe::AccountPersonService::CreateParams::Documents::CompanyAuthorization, passport: ::Stripe::AccountPersonService::CreateParams::Documents::Passport, visa: ::Stripe::AccountPersonService::CreateParams::Documents::Visa).void
|
774
|
+
}
|
775
|
+
def initialize(company_authorization: nil, passport: nil, visa: nil); end
|
776
|
+
end
|
777
|
+
class RegisteredAddress < Stripe::RequestParams
|
778
|
+
# City, district, suburb, town, or village.
|
779
|
+
sig { returns(String) }
|
780
|
+
attr_accessor :city
|
781
|
+
|
782
|
+
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
783
|
+
sig { returns(String) }
|
784
|
+
attr_accessor :country
|
785
|
+
|
786
|
+
# Address line 1 (e.g., street, PO Box, or company name).
|
787
|
+
sig { returns(String) }
|
788
|
+
attr_accessor :line1
|
789
|
+
|
790
|
+
# Address line 2 (e.g., apartment, suite, unit, or building).
|
791
|
+
sig { returns(String) }
|
792
|
+
attr_accessor :line2
|
793
|
+
|
794
|
+
# ZIP or postal code.
|
795
|
+
sig { returns(String) }
|
796
|
+
attr_accessor :postal_code
|
797
|
+
|
798
|
+
# State, county, province, or region.
|
799
|
+
sig { returns(String) }
|
800
|
+
attr_accessor :state
|
801
|
+
|
802
|
+
sig {
|
803
|
+
params(city: String, country: String, line1: String, line2: String, postal_code: String, state: String).void
|
804
|
+
}
|
805
|
+
def initialize(
|
806
|
+
city: nil,
|
807
|
+
country: nil,
|
808
|
+
line1: nil,
|
809
|
+
line2: nil,
|
810
|
+
postal_code: nil,
|
811
|
+
state: nil
|
812
|
+
); end
|
813
|
+
end
|
814
|
+
class Relationship < Stripe::RequestParams
|
815
|
+
# Whether the person is the authorizer of the account's representative.
|
816
|
+
sig { returns(T::Boolean) }
|
817
|
+
attr_accessor :authorizer
|
818
|
+
|
819
|
+
# Whether the person is a director of the account's legal entity. Directors are typically members of the governing board of the company, or responsible for ensuring the company meets its regulatory obligations.
|
820
|
+
sig { returns(T::Boolean) }
|
821
|
+
attr_accessor :director
|
822
|
+
|
823
|
+
# Whether the person has significant responsibility to control, manage, or direct the organization.
|
824
|
+
sig { returns(T::Boolean) }
|
825
|
+
attr_accessor :executive
|
826
|
+
|
827
|
+
# Whether the person is the legal guardian of the account's representative.
|
828
|
+
sig { returns(T::Boolean) }
|
829
|
+
attr_accessor :legal_guardian
|
830
|
+
|
831
|
+
# Whether the person is an owner of the account’s legal entity.
|
832
|
+
sig { returns(T::Boolean) }
|
833
|
+
attr_accessor :owner
|
834
|
+
|
835
|
+
# The percent owned by the person of the account's legal entity.
|
836
|
+
sig { returns(T.nilable(Float)) }
|
837
|
+
attr_accessor :percent_ownership
|
838
|
+
|
839
|
+
# Whether the person is authorized as the primary representative of the account. This is the person nominated by the business to provide information about themselves, and general information about the account. There can only be one representative at any given time. At the time the account is created, this person should be set to the person responsible for opening the account.
|
840
|
+
sig { returns(T::Boolean) }
|
841
|
+
attr_accessor :representative
|
842
|
+
|
843
|
+
# The person's title (e.g., CEO, Support Engineer).
|
844
|
+
sig { returns(String) }
|
845
|
+
attr_accessor :title
|
846
|
+
|
847
|
+
sig {
|
848
|
+
params(authorizer: T::Boolean, director: T::Boolean, executive: T::Boolean, legal_guardian: T::Boolean, owner: T::Boolean, percent_ownership: T.nilable(Float), representative: T::Boolean, title: String).void
|
849
|
+
}
|
850
|
+
def initialize(
|
851
|
+
authorizer: nil,
|
852
|
+
director: nil,
|
853
|
+
executive: nil,
|
854
|
+
legal_guardian: nil,
|
855
|
+
owner: nil,
|
856
|
+
percent_ownership: nil,
|
857
|
+
representative: nil,
|
858
|
+
title: nil
|
859
|
+
); end
|
860
|
+
end
|
861
|
+
class Verification < Stripe::RequestParams
|
862
|
+
class AdditionalDocument < Stripe::RequestParams
|
863
|
+
# The back of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
864
|
+
sig { returns(String) }
|
865
|
+
attr_accessor :back
|
866
|
+
|
867
|
+
# The front of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
868
|
+
sig { returns(String) }
|
869
|
+
attr_accessor :front
|
870
|
+
|
871
|
+
sig { params(back: String, front: String).void }
|
872
|
+
def initialize(back: nil, front: nil); end
|
873
|
+
end
|
874
|
+
class Document < Stripe::RequestParams
|
875
|
+
# The back of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
876
|
+
sig { returns(String) }
|
877
|
+
attr_accessor :back
|
878
|
+
|
879
|
+
# The front of an ID returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `identity_document`. The uploaded file needs to be a color image (smaller than 8,000px by 8,000px), in JPG, PNG, or PDF format, and less than 10 MB in size.
|
880
|
+
sig { returns(String) }
|
881
|
+
attr_accessor :front
|
882
|
+
|
883
|
+
sig { params(back: String, front: String).void }
|
884
|
+
def initialize(back: nil, front: nil); end
|
885
|
+
end
|
886
|
+
# A document showing address, either a passport, local ID card, or utility bill from a well-known utility company.
|
887
|
+
sig {
|
888
|
+
returns(::Stripe::AccountPersonService::CreateParams::Verification::AdditionalDocument)
|
889
|
+
}
|
890
|
+
attr_accessor :additional_document
|
891
|
+
|
892
|
+
# An identifying document, either a passport or local ID card.
|
893
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Verification::Document) }
|
894
|
+
attr_accessor :document
|
895
|
+
|
896
|
+
sig {
|
897
|
+
params(additional_document: ::Stripe::AccountPersonService::CreateParams::Verification::AdditionalDocument, document: ::Stripe::AccountPersonService::CreateParams::Verification::Document).void
|
898
|
+
}
|
899
|
+
def initialize(additional_document: nil, document: nil); end
|
900
|
+
end
|
901
|
+
# Details on the legal guardian's or authorizer's acceptance of the required Stripe agreements.
|
902
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::AdditionalTosAcceptances) }
|
903
|
+
attr_accessor :additional_tos_acceptances
|
904
|
+
|
905
|
+
# The person's address.
|
906
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Address) }
|
907
|
+
attr_accessor :address
|
908
|
+
|
909
|
+
# The Kana variation of the person's address (Japan only).
|
910
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::AddressKana) }
|
911
|
+
attr_accessor :address_kana
|
912
|
+
|
913
|
+
# The Kanji variation of the person's address (Japan only).
|
914
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::AddressKanji) }
|
915
|
+
attr_accessor :address_kanji
|
916
|
+
|
917
|
+
# The person's date of birth.
|
918
|
+
sig { returns(T.nilable(::Stripe::AccountPersonService::CreateParams::Dob)) }
|
919
|
+
attr_accessor :dob
|
920
|
+
|
921
|
+
# Documents that may be submitted to satisfy various informational requests.
|
922
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Documents) }
|
923
|
+
attr_accessor :documents
|
924
|
+
|
925
|
+
# The person's email address.
|
926
|
+
sig { returns(String) }
|
927
|
+
attr_accessor :email
|
928
|
+
|
929
|
+
# Specifies which fields in the response should be expanded.
|
930
|
+
sig { returns(T::Array[String]) }
|
931
|
+
attr_accessor :expand
|
932
|
+
|
933
|
+
# The person's first name.
|
934
|
+
sig { returns(String) }
|
935
|
+
attr_accessor :first_name
|
936
|
+
|
937
|
+
# The Kana variation of the person's first name (Japan only).
|
938
|
+
sig { returns(String) }
|
939
|
+
attr_accessor :first_name_kana
|
940
|
+
|
941
|
+
# The Kanji variation of the person's first name (Japan only).
|
942
|
+
sig { returns(String) }
|
943
|
+
attr_accessor :first_name_kanji
|
944
|
+
|
945
|
+
# A list of alternate names or aliases that the person is known by.
|
946
|
+
sig { returns(T.nilable(T::Array[String])) }
|
947
|
+
attr_accessor :full_name_aliases
|
948
|
+
|
949
|
+
# The person's gender (International regulations require either "male" or "female").
|
950
|
+
sig { returns(String) }
|
951
|
+
attr_accessor :gender
|
952
|
+
|
953
|
+
# The person's ID number, as appropriate for their country. For example, a social security number in the U.S., social insurance number in Canada, etc. Instead of the number itself, you can also provide a [PII token provided by Stripe.js](https://docs.stripe.com/js/tokens/create_token?type=pii).
|
954
|
+
sig { returns(String) }
|
955
|
+
attr_accessor :id_number
|
956
|
+
|
957
|
+
# The person's secondary ID number, as appropriate for their country, will be used for enhanced verification checks. In Thailand, this would be the laser code found on the back of an ID card. Instead of the number itself, you can also provide a [PII token provided by Stripe.js](https://docs.stripe.com/js/tokens/create_token?type=pii).
|
958
|
+
sig { returns(String) }
|
959
|
+
attr_accessor :id_number_secondary
|
960
|
+
|
961
|
+
# The person's last name.
|
962
|
+
sig { returns(String) }
|
963
|
+
attr_accessor :last_name
|
964
|
+
|
965
|
+
# The Kana variation of the person's last name (Japan only).
|
966
|
+
sig { returns(String) }
|
967
|
+
attr_accessor :last_name_kana
|
968
|
+
|
969
|
+
# The Kanji variation of the person's last name (Japan only).
|
970
|
+
sig { returns(String) }
|
971
|
+
attr_accessor :last_name_kanji
|
972
|
+
|
973
|
+
# The person's maiden name.
|
974
|
+
sig { returns(String) }
|
975
|
+
attr_accessor :maiden_name
|
976
|
+
|
977
|
+
# Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
978
|
+
sig { returns(T.nilable(T::Hash[String, String])) }
|
979
|
+
attr_accessor :metadata
|
980
|
+
|
981
|
+
# The country where the person is a national. Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)), or "XX" if unavailable.
|
982
|
+
sig { returns(String) }
|
983
|
+
attr_accessor :nationality
|
984
|
+
|
985
|
+
# A [person token](https://docs.stripe.com/connect/account-tokens), used to securely provide details to the person.
|
986
|
+
sig { returns(String) }
|
987
|
+
attr_accessor :person_token
|
988
|
+
|
989
|
+
# The person's phone number.
|
990
|
+
sig { returns(String) }
|
991
|
+
attr_accessor :phone
|
992
|
+
|
993
|
+
# Indicates if the person or any of their representatives, family members, or other closely related persons, declares that they hold or have held an important public job or function, in any jurisdiction.
|
994
|
+
sig { returns(String) }
|
995
|
+
attr_accessor :political_exposure
|
996
|
+
|
997
|
+
# The person's registered address.
|
998
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::RegisteredAddress) }
|
999
|
+
attr_accessor :registered_address
|
1000
|
+
|
1001
|
+
# The relationship that this person has with the account's legal entity.
|
1002
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Relationship) }
|
1003
|
+
attr_accessor :relationship
|
1004
|
+
|
1005
|
+
# The last four digits of the person's Social Security number (U.S. only).
|
1006
|
+
sig { returns(String) }
|
1007
|
+
attr_accessor :ssn_last_4
|
1008
|
+
|
1009
|
+
# The person's verification status.
|
1010
|
+
sig { returns(::Stripe::AccountPersonService::CreateParams::Verification) }
|
1011
|
+
attr_accessor :verification
|
1012
|
+
|
1013
|
+
sig {
|
1014
|
+
params(additional_tos_acceptances: ::Stripe::AccountPersonService::CreateParams::AdditionalTosAcceptances, address: ::Stripe::AccountPersonService::CreateParams::Address, address_kana: ::Stripe::AccountPersonService::CreateParams::AddressKana, address_kanji: ::Stripe::AccountPersonService::CreateParams::AddressKanji, dob: T.nilable(::Stripe::AccountPersonService::CreateParams::Dob), documents: ::Stripe::AccountPersonService::CreateParams::Documents, email: String, expand: T::Array[String], first_name: String, first_name_kana: String, first_name_kanji: String, full_name_aliases: T.nilable(T::Array[String]), gender: String, id_number: String, id_number_secondary: String, last_name: String, last_name_kana: String, last_name_kanji: String, maiden_name: String, metadata: T.nilable(T::Hash[String, String]), nationality: String, person_token: String, phone: String, political_exposure: String, registered_address: ::Stripe::AccountPersonService::CreateParams::RegisteredAddress, relationship: ::Stripe::AccountPersonService::CreateParams::Relationship, ssn_last_4: String, verification: ::Stripe::AccountPersonService::CreateParams::Verification).void
|
1015
|
+
}
|
1016
|
+
def initialize(
|
1017
|
+
additional_tos_acceptances: nil,
|
1018
|
+
address: nil,
|
1019
|
+
address_kana: nil,
|
1020
|
+
address_kanji: nil,
|
1021
|
+
dob: nil,
|
1022
|
+
documents: nil,
|
1023
|
+
email: nil,
|
1024
|
+
expand: nil,
|
1025
|
+
first_name: nil,
|
1026
|
+
first_name_kana: nil,
|
1027
|
+
first_name_kanji: nil,
|
1028
|
+
full_name_aliases: nil,
|
1029
|
+
gender: nil,
|
1030
|
+
id_number: nil,
|
1031
|
+
id_number_secondary: nil,
|
1032
|
+
last_name: nil,
|
1033
|
+
last_name_kana: nil,
|
1034
|
+
last_name_kanji: nil,
|
1035
|
+
maiden_name: nil,
|
1036
|
+
metadata: nil,
|
1037
|
+
nationality: nil,
|
1038
|
+
person_token: nil,
|
1039
|
+
phone: nil,
|
1040
|
+
political_exposure: nil,
|
1041
|
+
registered_address: nil,
|
1042
|
+
relationship: nil,
|
1043
|
+
ssn_last_4: nil,
|
1044
|
+
verification: nil
|
1045
|
+
); end
|
1046
|
+
end
|
1047
|
+
# Creates a new person.
|
1048
|
+
sig {
|
1049
|
+
params(account: String, params: T.any(::Stripe::AccountPersonService::CreateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Person)
|
1050
|
+
}
|
1051
|
+
def create(account, params = {}, opts = {}); end
|
1052
|
+
|
1053
|
+
# Deletes an existing person's relationship to the account's legal entity. Any person with a relationship for an account can be deleted through the API, except if the person is the account_opener. If your integration is using the executive parameter, you cannot delete the only verified executive on file.
|
1054
|
+
sig {
|
1055
|
+
params(account: String, person: String, params: T.any(::Stripe::AccountPersonService::DeleteParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Person)
|
1056
|
+
}
|
1057
|
+
def delete(account, person, params = {}, opts = {}); end
|
1058
|
+
|
1059
|
+
# Returns a list of people associated with the account's legal entity. The people are returned sorted by creation date, with the most recent people appearing first.
|
1060
|
+
sig {
|
1061
|
+
params(account: String, params: T.any(::Stripe::AccountPersonService::ListParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::ListObject)
|
1062
|
+
}
|
1063
|
+
def list(account, params = {}, opts = {}); end
|
1064
|
+
|
1065
|
+
# Retrieves an existing person.
|
1066
|
+
sig {
|
1067
|
+
params(account: String, person: String, params: T.any(::Stripe::AccountPersonService::RetrieveParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Person)
|
1068
|
+
}
|
1069
|
+
def retrieve(account, person, params = {}, opts = {}); end
|
1070
|
+
|
1071
|
+
# Updates an existing person.
|
1072
|
+
sig {
|
1073
|
+
params(account: String, person: String, params: T.any(::Stripe::AccountPersonService::UpdateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Person)
|
1074
|
+
}
|
1075
|
+
def update(account, person, params = {}, opts = {}); end
|
1076
|
+
end
|
1077
|
+
end
|