stripe 15.3.0.pre.beta.1 → 15.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/API_VERSION +1 -0
- data/CHANGELOG.md +683 -1581
- data/OPENAPI_VERSION +1 -1
- data/README.md +14 -50
- data/VERSION +1 -1
- data/lib/stripe/api_requestor.rb +0 -28
- data/lib/stripe/api_version.rb +2 -1
- data/lib/stripe/errors.rb +0 -54
- data/lib/stripe/event_types.rb +0 -98
- data/lib/stripe/events/v2_core_event_destination_ping_event.rb +1 -1
- data/lib/stripe/object_types.rb +0 -50
- data/lib/stripe/resources/account.rb +82 -650
- data/lib/stripe/resources/account_session.rb +80 -335
- data/lib/stripe/resources/billing/credit_balance_summary.rb +0 -2
- data/lib/stripe/resources/billing/credit_balance_transaction.rb +0 -4
- data/lib/stripe/resources/billing/credit_grant.rb +0 -10
- data/lib/stripe/resources/billing_portal/session.rb +2 -8
- data/lib/stripe/resources/card.rb +0 -2
- data/lib/stripe/resources/cash_balance.rb +0 -2
- data/lib/stripe/resources/charge.rb +28 -1553
- data/lib/stripe/resources/checkout/session.rb +55 -333
- data/lib/stripe/resources/confirmation_token.rb +19 -181
- data/lib/stripe/resources/coupon.rb +1 -30
- data/lib/stripe/resources/credit_note.rb +9 -15
- data/lib/stripe/resources/credit_note_line_item.rb +0 -9
- data/lib/stripe/resources/customer.rb +0 -2
- data/lib/stripe/resources/customer_balance_transaction.rb +0 -2
- data/lib/stripe/resources/customer_cash_balance_transaction.rb +0 -2
- data/lib/stripe/resources/customer_session.rb +3 -8
- data/lib/stripe/resources/discount.rb +0 -2
- data/lib/stripe/resources/event.rb +1 -32
- data/lib/stripe/resources/financial_connections/account.rb +1 -22
- data/lib/stripe/resources/financial_connections/session.rb +2 -62
- data/lib/stripe/resources/identity/verification_session.rb +34 -10
- data/lib/stripe/resources/invoice.rb +33 -1062
- data/lib/stripe/resources/invoice_item.rb +3 -82
- data/lib/stripe/resources/invoice_line_item.rb +1 -55
- data/lib/stripe/resources/invoice_payment.rb +53 -2
- data/lib/stripe/resources/issuing/cardholder.rb +1 -2
- data/lib/stripe/resources/issuing/transaction.rb +0 -6
- data/lib/stripe/resources/line_item.rb +0 -37
- data/lib/stripe/resources/mandate.rb +3 -24
- data/lib/stripe/resources/payment_intent.rb +875 -5512
- data/lib/stripe/resources/payment_method.rb +18 -201
- data/lib/stripe/resources/payment_method_configuration.rb +0 -295
- data/lib/stripe/resources/payout.rb +0 -6
- data/lib/stripe/resources/price.rb +0 -30
- data/lib/stripe/resources/promotion_code.rb +0 -10
- data/lib/stripe/resources/quote.rb +16 -2033
- data/lib/stripe/resources/refund.rb +0 -9
- data/lib/stripe/resources/setup_attempt.rb +1 -22
- data/lib/stripe/resources/setup_intent.rb +294 -581
- data/lib/stripe/resources/source.rb +0 -29
- data/lib/stripe/resources/subscription.rb +36 -298
- data/lib/stripe/resources/subscription_item.rb +3 -84
- data/lib/stripe/resources/subscription_schedule.rb +27 -1008
- data/lib/stripe/resources/tax/registration.rb +20 -0
- data/lib/stripe/resources/tax_id.rb +2 -12
- data/lib/stripe/resources/terminal/configuration.rb +1 -0
- data/lib/stripe/resources/terminal/reader.rb +10 -18
- data/lib/stripe/resources/token.rb +1 -1
- data/lib/stripe/resources/transfer.rb +0 -6
- data/lib/stripe/resources/treasury/financial_account.rb +8 -23
- data/lib/stripe/resources/treasury/financial_account_features.rb +0 -2
- data/lib/stripe/resources/treasury/outbound_transfer.rb +0 -37
- data/lib/stripe/resources/treasury/received_credit.rb +1 -38
- data/lib/stripe/resources/treasury/received_debit.rb +1 -40
- data/lib/stripe/resources.rb +0 -104
- data/lib/stripe/services/account_service.rb +76 -559
- data/lib/stripe/services/account_session_service.rb +49 -274
- data/lib/stripe/services/billing/credit_balance_summary_service.rb +1 -4
- data/lib/stripe/services/billing/credit_balance_transaction_service.rb +0 -4
- data/lib/stripe/services/billing/credit_grant_service.rb +0 -8
- data/lib/stripe/services/billing_portal/session_service.rb +1 -5
- data/lib/stripe/services/charge_service.rb +0 -1418
- data/lib/stripe/services/checkout/session_service.rb +55 -250
- data/lib/stripe/services/coupon_service.rb +1 -17
- data/lib/stripe/services/credit_note_preview_lines_service.rb +3 -3
- data/lib/stripe/services/credit_note_service.rb +6 -10
- data/lib/stripe/services/customer_session_service.rb +2 -5
- data/lib/stripe/services/financial_connections/account_service.rb +2 -7
- data/lib/stripe/services/financial_connections/session_service.rb +2 -34
- data/lib/stripe/services/financial_connections_service.rb +1 -2
- data/lib/stripe/services/identity/verification_session_service.rb +16 -8
- data/lib/stripe/services/invoice_item_service.rb +2 -74
- data/lib/stripe/services/invoice_line_item_service.rb +1 -33
- data/lib/stripe/services/invoice_payment_service.rb +83 -0
- data/lib/stripe/services/invoice_service.rb +33 -1013
- data/lib/stripe/services/issuing/cardholder_service.rb +1 -2
- data/lib/stripe/services/issuing/transaction_service.rb +0 -4
- data/lib/stripe/services/issuing_service.rb +1 -5
- data/lib/stripe/services/payment_intent_service.rb +650 -4832
- data/lib/stripe/services/payment_method_configuration_service.rb +0 -210
- data/lib/stripe/services/payment_method_service.rb +6 -120
- data/lib/stripe/services/payout_service.rb +0 -4
- data/lib/stripe/services/price_service.rb +0 -19
- data/lib/stripe/services/promotion_code_service.rb +0 -8
- data/lib/stripe/services/quote_service.rb +13 -1719
- data/lib/stripe/services/setup_intent_service.rb +284 -540
- data/lib/stripe/services/subscription_item_service.rb +3 -75
- data/lib/stripe/services/subscription_schedule_service.rb +19 -911
- data/lib/stripe/services/subscription_service.rb +30 -253
- data/lib/stripe/services/tax/registration_service.rb +13 -0
- data/lib/stripe/services/tax_id_service.rb +2 -8
- data/lib/stripe/services/tax_service.rb +1 -3
- data/lib/stripe/services/terminal/reader_service.rb +4 -4
- data/lib/stripe/services/terminal_service.rb +1 -2
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +6 -98
- data/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +1 -25
- data/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +1 -25
- data/lib/stripe/services/token_service.rb +1 -1
- data/lib/stripe/services/transfer_service.rb +0 -4
- data/lib/stripe/services/treasury/financial_account_features_service.rb +1 -4
- data/lib/stripe/services/treasury/financial_account_service.rb +7 -17
- data/lib/stripe/services/treasury/outbound_transfer_service.rb +0 -24
- data/lib/stripe/services/v1_services.rb +2 -11
- data/lib/stripe/services/v2/billing_service.rb +2 -2
- data/lib/stripe/services/v2/core/event_destination_service.rb +16 -16
- data/lib/stripe/services/v2/core_service.rb +1 -4
- data/lib/stripe/services/v2_services.rb +2 -5
- data/lib/stripe/services.rb +1 -53
- data/lib/stripe/stripe_configuration.rb +1 -3
- data/lib/stripe/stripe_object.rb +1 -1
- data/lib/stripe/util.rb +1 -7
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +1 -1
- data/lib/stripe.rb +0 -53
- data/rbi/stripe/resources/account.rbi +4995 -0
- data/rbi/stripe/resources/account_link.rbi +74 -0
- data/rbi/stripe/resources/account_session.rbi +1013 -0
- data/rbi/stripe/resources/apple_pay_domain.rbi +88 -0
- data/rbi/stripe/resources/application.rbi +20 -0
- data/rbi/stripe/resources/application_fee.rbi +118 -0
- data/rbi/stripe/resources/application_fee_refund.rbi +37 -0
- data/rbi/stripe/resources/apps/secret.rbi +195 -0
- data/rbi/stripe/resources/balance.rbi +235 -0
- data/rbi/stripe/resources/balance_transaction.rbi +147 -0
- data/rbi/stripe/resources/bank_account.rbi +127 -0
- data/rbi/stripe/resources/billing/alert.rbi +201 -0
- data/rbi/stripe/resources/billing/alert_triggered.rbi +28 -0
- data/rbi/stripe/resources/billing/credit_balance_summary.rbi +63 -0
- data/rbi/stripe/resources/billing/credit_balance_transaction.rbi +147 -0
- data/rbi/stripe/resources/billing/credit_grant.rbi +291 -0
- data/rbi/stripe/resources/billing/meter.rbi +226 -0
- data/rbi/stripe/resources/billing/meter_event.rbi +64 -0
- data/rbi/stripe/resources/billing/meter_event_adjustment.rbi +64 -0
- data/rbi/stripe/resources/billing/meter_event_summary.rbi +35 -0
- data/rbi/stripe/resources/billing_portal/configuration.rbi +645 -0
- data/rbi/stripe/resources/billing_portal/session.rbi +345 -0
- data/rbi/stripe/resources/capability.rbi +125 -0
- data/rbi/stripe/resources/card.rbi +125 -0
- data/rbi/stripe/resources/cash_balance.rbi +32 -0
- data/rbi/stripe/resources/charge.rbi +2086 -0
- data/rbi/stripe/resources/checkout/session.rbi +4060 -0
- data/rbi/stripe/resources/climate/order.rbi +245 -0
- data/rbi/stripe/resources/climate/product.rbi +75 -0
- data/rbi/stripe/resources/climate/supplier.rbi +72 -0
- data/rbi/stripe/resources/confirmation_token.rbi +1818 -0
- data/rbi/stripe/resources/connect_collection_transfer.rbi +26 -0
- data/rbi/stripe/resources/country_spec.rbi +85 -0
- data/rbi/stripe/resources/coupon.rbi +250 -0
- data/rbi/stripe/resources/credit_note.rbi +752 -0
- data/rbi/stripe/resources/credit_note_line_item.rbi +101 -0
- data/rbi/stripe/resources/customer.rbi +1005 -0
- data/rbi/stripe/resources/customer_balance_transaction.rbi +56 -0
- data/rbi/stripe/resources/customer_cash_balance_transaction.rbi +151 -0
- data/rbi/stripe/resources/customer_session.rbi +200 -0
- data/rbi/stripe/resources/discount.rbi +53 -0
- data/rbi/stripe/resources/dispute.rbi +761 -0
- data/rbi/stripe/resources/entitlements/active_entitlement.rbi +58 -0
- data/rbi/stripe/resources/entitlements/active_entitlement_summary.rbi +23 -0
- data/rbi/stripe/resources/entitlements/feature.rbi +117 -0
- data/rbi/stripe/resources/ephemeral_key.rbi +44 -0
- data/rbi/stripe/resources/event.rbi +149 -0
- data/rbi/stripe/resources/exchange_rate.rbi +66 -0
- data/rbi/stripe/resources/file.rbi +143 -0
- data/rbi/stripe/resources/file_link.rbi +141 -0
- data/rbi/stripe/resources/financial_connections/account.rbi +339 -0
- data/rbi/stripe/resources/financial_connections/account_owner.rbi +35 -0
- data/rbi/stripe/resources/financial_connections/account_ownership.rbi +23 -0
- data/rbi/stripe/resources/financial_connections/session.rbi +123 -0
- data/rbi/stripe/resources/financial_connections/transaction.rbi +124 -0
- data/rbi/stripe/resources/forwarding/request.rbi +216 -0
- data/rbi/stripe/resources/funding_instructions.rbi +437 -0
- data/rbi/stripe/resources/identity/verification_report.rbi +360 -0
- data/rbi/stripe/resources/identity/verification_session.rbi +564 -0
- data/rbi/stripe/resources/invoice.rbi +3842 -0
- data/rbi/stripe/resources/invoice_item.rbi +470 -0
- data/rbi/stripe/resources/invoice_line_item.rbi +432 -0
- data/rbi/stripe/resources/invoice_payment.rbi +121 -0
- data/rbi/stripe/resources/invoice_rendering_template.rbi +104 -0
- data/rbi/stripe/resources/issuing/authorization.rbi +1283 -0
- data/rbi/stripe/resources/issuing/card.rbi +741 -0
- data/rbi/stripe/resources/issuing/cardholder.rbi +744 -0
- data/rbi/stripe/resources/issuing/dispute.rbi +913 -0
- data/rbi/stripe/resources/issuing/personalization_design.rbi +338 -0
- data/rbi/stripe/resources/issuing/physical_bundle.rbi +79 -0
- data/rbi/stripe/resources/issuing/token.rbi +226 -0
- data/rbi/stripe/resources/issuing/transaction.rbi +1061 -0
- data/rbi/stripe/resources/line_item.rbi +72 -0
- data/rbi/stripe/resources/login_link.rbi +19 -0
- data/rbi/stripe/resources/mandate.rbi +191 -0
- data/rbi/stripe/resources/payment_intent.rbi +9987 -0
- data/rbi/stripe/resources/payment_link.rbi +1801 -0
- data/rbi/stripe/resources/payment_method.rbi +1770 -0
- data/rbi/stripe/resources/payment_method_configuration.rbi +3550 -0
- data/rbi/stripe/resources/payment_method_domain.rbi +228 -0
- data/rbi/stripe/resources/payout.rbi +300 -0
- data/rbi/stripe/resources/person.rbi +401 -0
- data/rbi/stripe/resources/plan.rbi +371 -0
- data/rbi/stripe/resources/price.rbi +694 -0
- data/rbi/stripe/resources/product.rbi +555 -0
- data/rbi/stripe/resources/product_feature.rbi +26 -0
- data/rbi/stripe/resources/promotion_code.rbi +261 -0
- data/rbi/stripe/resources/quote.rbi +1145 -0
- data/rbi/stripe/resources/radar/early_fraud_warning.rbi +98 -0
- data/rbi/stripe/resources/radar/value_list.rbi +168 -0
- data/rbi/stripe/resources/radar/value_list_item.rbi +129 -0
- data/rbi/stripe/resources/refund.rbi +523 -0
- data/rbi/stripe/resources/reporting/report_run.rbi +191 -0
- data/rbi/stripe/resources/reporting/report_type.rbi +57 -0
- data/rbi/stripe/resources/reserve_transaction.rbi +23 -0
- data/rbi/stripe/resources/reversal.rbi +51 -0
- data/rbi/stripe/resources/review.rbi +154 -0
- data/rbi/stripe/resources/setup_attempt.rbi +477 -0
- data/rbi/stripe/resources/setup_intent.rbi +3978 -0
- data/rbi/stripe/resources/shipping_rate.rbi +305 -0
- data/rbi/stripe/resources/sigma/scheduled_query_run.rbi +75 -0
- data/rbi/stripe/resources/source.rbi +1496 -0
- data/rbi/stripe/resources/source_mandate_notification.rbi +77 -0
- data/rbi/stripe/resources/source_transaction.rbi +127 -0
- data/rbi/stripe/resources/subscription.rbi +2080 -0
- data/rbi/stripe/resources/subscription_item.rbi +404 -0
- data/rbi/stripe/resources/subscription_schedule.rbi +1645 -0
- data/rbi/stripe/resources/tax/calculation.rbi +478 -0
- data/rbi/stripe/resources/tax/calculation_line_item.rbi +91 -0
- data/rbi/stripe/resources/tax/registration.rbi +2732 -0
- data/rbi/stripe/resources/tax/settings.rbi +141 -0
- data/rbi/stripe/resources/tax/transaction.rbi +351 -0
- data/rbi/stripe/resources/tax/transaction_line_item.rbi +54 -0
- data/rbi/stripe/resources/tax_code.rbi +44 -0
- data/rbi/stripe/resources/tax_deducted_at_source.rbi +23 -0
- data/rbi/stripe/resources/tax_id.rbi +165 -0
- data/rbi/stripe/resources/tax_rate.rbi +239 -0
- data/rbi/stripe/resources/terminal/configuration.rbi +1387 -0
- data/rbi/stripe/resources/terminal/connection_token.rbi +37 -0
- data/rbi/stripe/resources/terminal/location.rbi +222 -0
- data/rbi/stripe/resources/terminal/reader.rbi +994 -0
- data/rbi/stripe/resources/test_helpers/test_clock.rbi +132 -0
- data/rbi/stripe/resources/token.rbi +1283 -0
- data/rbi/stripe/resources/topup.rbi +222 -0
- data/rbi/stripe/resources/transfer.rbi +199 -0
- data/rbi/stripe/resources/treasury/credit_reversal.rbi +119 -0
- data/rbi/stripe/resources/treasury/debit_reversal.rbi +131 -0
- data/rbi/stripe/resources/treasury/financial_account.rbi +869 -0
- data/rbi/stripe/resources/treasury/financial_account_features.rbi +260 -0
- data/rbi/stripe/resources/treasury/inbound_transfer.rbi +295 -0
- data/rbi/stripe/resources/treasury/outbound_payment.rbi +592 -0
- data/rbi/stripe/resources/treasury/outbound_transfer.rbi +431 -0
- data/rbi/stripe/resources/treasury/received_credit.rbi +302 -0
- data/rbi/stripe/resources/treasury/received_debit.rbi +256 -0
- data/rbi/stripe/resources/treasury/transaction.rbi +215 -0
- data/rbi/stripe/resources/treasury/transaction_entry.rbi +192 -0
- data/rbi/stripe/resources/v2/amount.rbi +14 -0
- data/rbi/stripe/resources/v2/billing/meter_event.rbi +37 -0
- data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +41 -0
- data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +31 -0
- data/rbi/stripe/resources/v2/event.rbi +48 -0
- data/rbi/stripe/resources/v2/event_destination.rbi +91 -0
- data/rbi/stripe/resources/webhook_endpoint.rbi +168 -0
- data/rbi/stripe/services/account_capability_service.rbi +51 -0
- data/{lib/stripe/services/external_account_service.rb → rbi/stripe/services/account_external_account_service.rbi} +122 -135
- data/rbi/stripe/services/account_link_service.rbi +58 -0
- data/rbi/stripe/services/account_login_link_service.rbi +22 -0
- data/rbi/stripe/services/account_person_service.rbi +1011 -0
- data/rbi/stripe/services/account_service.rbi +4281 -0
- data/rbi/stripe/services/account_session_service.rbi +646 -0
- data/rbi/stripe/services/apple_pay_domain_service.rbi +76 -0
- data/rbi/stripe/services/application_fee_refund_service.rbi +93 -0
- data/rbi/stripe/services/application_fee_service.rbi +78 -0
- data/rbi/stripe/services/apps/secret_service.rbi +151 -0
- data/rbi/stripe/services/apps_service.rbi +9 -0
- data/rbi/stripe/services/balance_service.rbi +21 -0
- data/rbi/stripe/services/balance_transaction_service.rbi +93 -0
- data/rbi/stripe/services/billing/alert_service.rbi +152 -0
- data/rbi/stripe/services/billing/credit_balance_summary_service.rbi +68 -0
- data/rbi/stripe/services/billing/credit_balance_transaction_service.rbi +59 -0
- data/rbi/stripe/services/billing/credit_grant_service.rbi +211 -0
- data/rbi/stripe/services/billing/meter_event_adjustment_service.rbi +42 -0
- data/rbi/stripe/services/billing/meter_event_service.rbi +42 -0
- data/rbi/stripe/services/billing/meter_event_summary_service.rbi +54 -0
- data/rbi/stripe/services/billing/meter_service.rbi +163 -0
- data/rbi/stripe/services/billing_portal/configuration_service.rbi +511 -0
- data/rbi/stripe/services/billing_portal/session_service.rbi +204 -0
- data/rbi/stripe/services/billing_portal_service.rbi +10 -0
- data/rbi/stripe/services/billing_service.rbi +15 -0
- data/rbi/stripe/services/charge_service.rbi +448 -0
- data/rbi/stripe/services/checkout/session_line_item_service.rbi +33 -0
- data/rbi/stripe/services/checkout/session_service.rbi +2670 -0
- data/rbi/stripe/services/checkout_service.rbi +9 -0
- data/rbi/stripe/services/climate/order_service.rbi +142 -0
- data/rbi/stripe/services/climate/product_service.rbi +46 -0
- data/{lib/stripe/services/financial_connections/institution_service.rb → rbi/stripe/services/climate/supplier_service.rbi} +25 -36
- data/rbi/stripe/services/climate_service.rbi +11 -0
- data/rbi/stripe/services/confirmation_token_service.rbi +20 -0
- data/rbi/stripe/services/country_spec_service.rbi +44 -0
- data/rbi/stripe/services/coupon_service.rbi +194 -0
- data/{lib/stripe/services/quote_preview_invoice_service.rb → rbi/stripe/services/credit_note_line_item_service.rbi} +16 -20
- data/rbi/stripe/services/credit_note_preview_lines_service.rbi +167 -0
- data/rbi/stripe/services/credit_note_service.rbi +415 -0
- data/rbi/stripe/services/customer_balance_transaction_service.rbi +92 -0
- data/rbi/stripe/services/customer_cash_balance_service.rbi +45 -0
- data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +44 -0
- data/rbi/stripe/services/customer_funding_instructions_service.rbi +59 -0
- data/rbi/stripe/services/customer_payment_method_service.rbi +57 -0
- data/rbi/stripe/services/customer_payment_source_service.rbi +232 -0
- data/rbi/stripe/services/customer_service.rbi +647 -0
- data/rbi/stripe/services/customer_session_service.rbi +116 -0
- data/rbi/stripe/services/customer_tax_id_service.rbi +70 -0
- data/rbi/stripe/services/dispute_service.rbi +424 -0
- data/rbi/stripe/services/entitlements/active_entitlement_service.rbi +55 -0
- data/rbi/stripe/services/entitlements/feature_service.rbi +107 -0
- data/rbi/stripe/services/entitlements_service.rbi +10 -0
- data/rbi/stripe/services/ephemeral_key_service.rbi +53 -0
- data/rbi/stripe/services/event_service.rbi +83 -0
- data/rbi/stripe/services/exchange_rate_service.rbi +44 -0
- data/rbi/stripe/services/file_link_service.rbi +124 -0
- data/rbi/stripe/services/file_service.rbi +116 -0
- data/rbi/stripe/services/financial_connections/account_owner_service.rbi +42 -0
- data/rbi/stripe/services/financial_connections/account_service.rbi +133 -0
- data/rbi/stripe/services/financial_connections/session_service.rbi +88 -0
- data/rbi/stripe/services/financial_connections/transaction_service.rbi +92 -0
- data/rbi/stripe/services/financial_connections_service.rbi +11 -0
- data/rbi/stripe/services/forwarding/request_service.rbi +134 -0
- data/rbi/stripe/services/forwarding_service.rbi +9 -0
- data/rbi/stripe/services/identity/verification_report_service.rbi +87 -0
- data/rbi/stripe/services/identity/verification_session_service.rbi +339 -0
- data/rbi/stripe/services/identity_service.rbi +10 -0
- data/rbi/stripe/services/invoice_item_service.rbi +366 -0
- data/rbi/stripe/services/invoice_line_item_service.rbi +259 -0
- data/rbi/stripe/services/invoice_payment_service.rbi +71 -0
- data/rbi/stripe/services/invoice_rendering_template_service.rbi +82 -0
- data/rbi/stripe/services/invoice_service.rbi +3011 -0
- data/rbi/stripe/services/issuing/authorization_service.rbi +146 -0
- data/rbi/stripe/services/issuing/card_service.rbi +495 -0
- data/rbi/stripe/services/issuing/cardholder_service.rbi +587 -0
- data/rbi/stripe/services/issuing/dispute_service.rbi +707 -0
- data/rbi/stripe/services/issuing/personalization_design_service.rbi +243 -0
- data/rbi/stripe/services/issuing/physical_bundle_service.rbi +59 -0
- data/rbi/stripe/services/issuing/token_service.rbi +99 -0
- data/rbi/stripe/services/issuing/transaction_service.rbi +105 -0
- data/rbi/stripe/services/issuing_service.rbi +16 -0
- data/rbi/stripe/services/mandate_service.rbi +20 -0
- data/rbi/stripe/services/payment_intent_service.rbi +7989 -0
- data/{lib/stripe/services/payment_intent_amount_details_line_item_service.rb → rbi/stripe/services/payment_link_line_item_service.rbi} +16 -20
- data/rbi/stripe/services/payment_link_service.rbi +1352 -0
- data/rbi/stripe/services/payment_method_configuration_service.rbi +2487 -0
- data/rbi/stripe/services/payment_method_domain_service.rbi +112 -0
- data/rbi/stripe/services/payment_method_service.rbi +781 -0
- data/rbi/stripe/services/payout_service.rbi +205 -0
- data/rbi/stripe/services/plan_service.rbi +282 -0
- data/rbi/stripe/services/price_service.rbi +546 -0
- data/rbi/stripe/services/product_feature_service.rbi +67 -0
- data/rbi/stripe/services/product_service.rbi +477 -0
- data/rbi/stripe/services/promotion_code_service.rbi +214 -0
- data/rbi/stripe/services/quote_computed_upfront_line_items_service.rbi +31 -0
- data/{lib/stripe/services/order_line_item_service.rb → rbi/stripe/services/quote_line_item_service.rbi} +16 -20
- data/rbi/stripe/services/quote_service.rbi +699 -0
- data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +85 -0
- data/rbi/stripe/services/radar/value_list_item_service.rbi +109 -0
- data/rbi/stripe/services/radar/value_list_service.rbi +141 -0
- data/rbi/stripe/services/radar_service.rbi +11 -0
- data/rbi/stripe/services/refund_service.rbi +185 -0
- data/rbi/stripe/services/reporting/report_run_service.rbi +135 -0
- data/rbi/stripe/services/reporting/report_type_service.rbi +35 -0
- data/rbi/stripe/services/reporting_service.rbi +10 -0
- data/rbi/stripe/services/review_service.rbi +84 -0
- data/rbi/stripe/services/setup_attempt_service.rbi +65 -0
- data/rbi/stripe/services/setup_intent_service.rbi +3709 -0
- data/rbi/stripe/services/shipping_rate_service.rbi +241 -0
- data/rbi/stripe/services/sigma/scheduled_query_run_service.rbi +46 -0
- data/rbi/stripe/services/sigma_service.rbi +9 -0
- data/rbi/stripe/services/source_service.rbi +663 -0
- data/{lib/stripe/services/quote_line_service.rb → rbi/stripe/services/source_transaction_service.rbi} +16 -20
- data/rbi/stripe/services/subscription_item_service.rbi +350 -0
- data/rbi/stripe/services/subscription_schedule_service.rbi +1301 -0
- data/rbi/stripe/services/subscription_service.rbi +1684 -0
- data/{lib/stripe/services/financial_connections/account_inferred_balance_service.rb → rbi/stripe/services/tax/calculation_line_item_service.rbi} +17 -21
- data/rbi/stripe/services/tax/calculation_service.rbi +234 -0
- data/rbi/stripe/services/tax/registration_service.rbi +1858 -0
- data/rbi/stripe/services/tax/settings_service.rbi +93 -0
- data/{lib/stripe/services/privacy/redaction_job_validation_error_service.rb → rbi/stripe/services/tax/transaction_line_item_service.rbi} +17 -21
- data/rbi/stripe/services/tax/transaction_service.rbi +146 -0
- data/rbi/stripe/services/tax_code_service.rbi +44 -0
- data/rbi/stripe/services/tax_id_service.rbi +110 -0
- data/rbi/stripe/services/tax_rate_service.rbi +185 -0
- data/rbi/stripe/services/tax_service.rbi +12 -0
- data/rbi/stripe/services/terminal/configuration_service.rbi +1118 -0
- data/rbi/stripe/services/terminal/connection_token_service.rbi +25 -0
- data/rbi/stripe/services/terminal/location_service.rbi +182 -0
- data/rbi/stripe/services/terminal/reader_service.rbi +540 -0
- data/rbi/stripe/services/terminal_service.rbi +12 -0
- data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +746 -0
- data/rbi/stripe/services/test_helpers/customer_service.rbi +33 -0
- data/rbi/stripe/services/test_helpers/issuing/authorization_service.rbi +848 -0
- data/rbi/stripe/services/test_helpers/issuing/card_service.rbi +76 -0
- data/rbi/stripe/services/test_helpers/issuing/personalization_design_service.rbi +69 -0
- data/rbi/stripe/services/test_helpers/issuing/transaction_service.rbi +711 -0
- data/rbi/stripe/services/test_helpers/issuing_service.rbi +14 -0
- data/rbi/stripe/services/test_helpers/refund_service.rbi +22 -0
- data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +93 -0
- data/rbi/stripe/services/test_helpers/terminal_service.rbi +11 -0
- data/rbi/stripe/services/test_helpers/test_clock_service.rbi +90 -0
- data/rbi/stripe/services/test_helpers/treasury/inbound_transfer_service.rbi +64 -0
- data/rbi/stripe/services/test_helpers/treasury/outbound_payment_service.rbi +125 -0
- data/rbi/stripe/services/test_helpers/treasury/outbound_transfer_service.rbi +125 -0
- data/rbi/stripe/services/test_helpers/treasury/received_credit_service.rbi +87 -0
- data/rbi/stripe/services/test_helpers/treasury/received_debit_service.rbi +87 -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 +1257 -0
- data/rbi/stripe/services/topup_service.rbi +176 -0
- data/rbi/stripe/services/transfer_reversal_service.rbi +101 -0
- data/rbi/stripe/services/transfer_service.rbi +152 -0
- data/rbi/stripe/services/treasury/credit_reversal_service.rbi +84 -0
- data/rbi/stripe/services/treasury/debit_reversal_service.rbi +88 -0
- data/rbi/stripe/services/treasury/financial_account_features_service.rbi +198 -0
- data/rbi/stripe/services/treasury/financial_account_service.rbi +566 -0
- data/rbi/stripe/services/treasury/inbound_transfer_service.rbi +117 -0
- data/rbi/stripe/services/treasury/outbound_payment_service.rbi +304 -0
- data/rbi/stripe/services/treasury/outbound_transfer_service.rbi +157 -0
- data/rbi/stripe/services/treasury/received_credit_service.rbi +72 -0
- data/rbi/stripe/services/treasury/received_debit_service.rbi +59 -0
- data/rbi/stripe/services/treasury/transaction_entry_service.rbi +111 -0
- data/rbi/stripe/services/treasury/transaction_service.rbi +122 -0
- data/rbi/stripe/services/treasury_service.rbi +18 -0
- data/rbi/stripe/services/v1_services.rbi +77 -0
- data/rbi/stripe/services/v2/billing/meter_event_adjustment_service.rbi +39 -0
- data/rbi/stripe/services/v2/billing/meter_event_service.rbi +42 -0
- data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +18 -0
- data/rbi/stripe/services/v2/billing/meter_event_stream_service.rbi +55 -0
- data/rbi/stripe/services/v2/billing_service.rbi +14 -0
- data/rbi/stripe/services/v2/core/event_destination_service.rbi +192 -0
- data/rbi/stripe/services/v2/core/event_service.rbi +36 -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 +129 -0
- data/stripe.gemspec +1 -4
- metadata +326 -162
- data/lib/stripe/events/v2_core_account_closed_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_created_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_including_configuration_customer_capability_status_updated_event.rb +0 -23
- data/lib/stripe/events/v2_core_account_including_configuration_customer_updated_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_including_configuration_merchant_capability_status_updated_event.rb +0 -23
- data/lib/stripe/events/v2_core_account_including_configuration_merchant_updated_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_including_configuration_recipient_capability_status_updated_event.rb +0 -23
- data/lib/stripe/events/v2_core_account_including_configuration_recipient_updated_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_including_defaults_updated_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_including_identity_updated_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_including_requirements_updated_event.rb +0 -21
- data/lib/stripe/events/v2_core_account_link_completed_event.rb +0 -13
- data/lib/stripe/events/v2_core_account_person_created_event.rb +0 -23
- data/lib/stripe/events/v2_core_account_person_deleted_event.rb +0 -23
- data/lib/stripe/events/v2_core_account_person_updated_event.rb +0 -23
- data/lib/stripe/events/v2_core_account_updated_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_adjustment_created_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_financial_account_created_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_financial_account_updated_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_financial_address_activated_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_financial_address_failed_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_inbound_transfer_available_event.rb +0 -23
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_failed_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_processing_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_queued_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_returned_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_inbound_transfer_bank_debit_succeeded_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_payment_canceled_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_payment_created_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_payment_failed_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_payment_posted_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_payment_returned_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_payment_updated_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_transfer_canceled_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_transfer_created_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_transfer_failed_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_transfer_posted_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_transfer_returned_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_outbound_transfer_updated_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_credit_available_event.rb +0 -23
- data/lib/stripe/events/v2_money_management_received_credit_failed_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_credit_returned_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_credit_succeeded_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_debit_canceled_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_debit_failed_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_debit_pending_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_debit_succeeded_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_received_debit_updated_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_transaction_created_event.rb +0 -21
- data/lib/stripe/events/v2_money_management_transaction_updated_event.rb +0 -21
- data/lib/stripe/events/v2_off_session_payment_requires_capture_event.rb +0 -21
- data/lib/stripe/events/v2_payments_off_session_payment_authorization_attempt_failed_event.rb +0 -21
- data/lib/stripe/events/v2_payments_off_session_payment_authorization_attempt_started_event.rb +0 -21
- data/lib/stripe/events/v2_payments_off_session_payment_canceled_event.rb +0 -21
- data/lib/stripe/events/v2_payments_off_session_payment_created_event.rb +0 -21
- data/lib/stripe/events/v2_payments_off_session_payment_failed_event.rb +0 -21
- data/lib/stripe/events/v2_payments_off_session_payment_succeeded_event.rb +0 -21
- data/lib/stripe/resources/account_notice.rb +0 -123
- data/lib/stripe/resources/balance_settings.rb +0 -105
- data/lib/stripe/resources/capital/financing_offer.rb +0 -179
- data/lib/stripe/resources/capital/financing_summary.rb +0 -55
- data/lib/stripe/resources/capital/financing_transaction.rb +0 -114
- data/lib/stripe/resources/financial_connections/account_inferred_balance.rb +0 -27
- data/lib/stripe/resources/financial_connections/institution.rb +0 -92
- data/lib/stripe/resources/fx_quote.rb +0 -184
- data/lib/stripe/resources/issuing/credit_underwriting_record.rb +0 -602
- data/lib/stripe/resources/issuing/dispute_settlement_detail.rb +0 -82
- data/lib/stripe/resources/issuing/fraud_liability_debit.rb +0 -86
- data/lib/stripe/resources/issuing/settlement.rb +0 -53
- data/lib/stripe/resources/margin.rb +0 -115
- data/lib/stripe/resources/order.rb +0 -2806
- data/lib/stripe/resources/payment_attempt_record.rb +0 -1086
- data/lib/stripe/resources/payment_intent_amount_details_line_item.rb +0 -72
- data/lib/stripe/resources/payment_record.rb +0 -1615
- data/lib/stripe/resources/privacy/redaction_job.rb +0 -298
- data/lib/stripe/resources/privacy/redaction_job_validation_error.rb +0 -33
- data/lib/stripe/resources/quote_line.rb +0 -274
- data/lib/stripe/resources/quote_preview_invoice.rb +0 -663
- data/lib/stripe/resources/quote_preview_subscription_schedule.rb +0 -364
- data/lib/stripe/resources/tax/association.rb +0 -66
- data/lib/stripe/resources/tax/form.rb +0 -211
- data/lib/stripe/resources/terminal/reader_collected_data.rb +0 -31
- data/lib/stripe/resources/v2/core/account.rb +0 -1746
- data/lib/stripe/resources/v2/core/account_link.rb +0 -56
- data/lib/stripe/resources/v2/core/person.rb +0 -276
- data/lib/stripe/resources/v2/core/vault/gb_bank_account.rb +0 -74
- data/lib/stripe/resources/v2/core/vault/us_bank_account.rb +0 -39
- data/lib/stripe/resources/v2/financial_address_credit_simulation.rb +0 -20
- data/lib/stripe/resources/v2/financial_address_generated_microdeposits.rb +0 -22
- data/lib/stripe/resources/v2/money_management/adjustment.rb +0 -51
- data/lib/stripe/resources/v2/money_management/financial_account.rb +0 -58
- data/lib/stripe/resources/v2/money_management/financial_address.rb +0 -68
- data/lib/stripe/resources/v2/money_management/inbound_transfer.rb +0 -94
- data/lib/stripe/resources/v2/money_management/outbound_payment.rb +0 -129
- data/lib/stripe/resources/v2/money_management/outbound_payment_quote.rb +0 -82
- data/lib/stripe/resources/v2/money_management/outbound_setup_intent.rb +0 -45
- data/lib/stripe/resources/v2/money_management/outbound_transfer.rb +0 -117
- data/lib/stripe/resources/v2/money_management/payout_method.rb +0 -75
- data/lib/stripe/resources/v2/money_management/payout_methods_bank_account_spec.rb +0 -49
- data/lib/stripe/resources/v2/money_management/received_credit.rb +0 -116
- data/lib/stripe/resources/v2/money_management/received_debit.rb +0 -84
- data/lib/stripe/resources/v2/money_management/transaction.rb +0 -78
- data/lib/stripe/resources/v2/money_management/transaction_entry.rb +0 -68
- data/lib/stripe/resources/v2/payments/off_session_payment.rb +0 -74
- data/lib/stripe/services/account_notice_service.rb +0 -101
- data/lib/stripe/services/balance_settings_service.rb +0 -96
- data/lib/stripe/services/capital/financing_offer_service.rb +0 -112
- data/lib/stripe/services/capital/financing_summary_service.rb +0 -28
- data/lib/stripe/services/capital/financing_transaction_service.rb +0 -79
- data/lib/stripe/services/capital_service.rb +0 -15
- data/lib/stripe/services/fx_quote_service.rb +0 -123
- data/lib/stripe/services/issuing/credit_underwriting_record_service.rb +0 -504
- data/lib/stripe/services/issuing/dispute_settlement_detail_service.rb +0 -66
- data/lib/stripe/services/issuing/fraud_liability_debit_service.rb +0 -83
- data/lib/stripe/services/margin_service.rb +0 -119
- data/lib/stripe/services/order_service.rb +0 -2236
- data/lib/stripe/services/payment_attempt_record_service.rb +0 -49
- data/lib/stripe/services/payment_record_service.rb +0 -542
- data/lib/stripe/services/privacy/redaction_job_service.rb +0 -240
- data/lib/stripe/services/privacy_service.rb +0 -13
- data/lib/stripe/services/quote_preview_subscription_schedule_service.rb +0 -35
- data/lib/stripe/services/tax/association_service.rb +0 -31
- data/lib/stripe/services/tax/form_service.rb +0 -100
- data/lib/stripe/services/terminal/reader_collected_data_service.rb +0 -28
- data/lib/stripe/services/v2/core/account_link_service.rb +0 -76
- data/lib/stripe/services/v2/core/account_service.rb +0 -4138
- data/lib/stripe/services/v2/core/accounts/person_service.rb +0 -1046
- data/lib/stripe/services/v2/core/vault/gb_bank_account_service.rb +0 -131
- data/lib/stripe/services/v2/core/vault/us_bank_account_service.rb +0 -107
- data/lib/stripe/services/v2/core/vault_service.rb +0 -18
- data/lib/stripe/services/v2/money_management/adjustment_service.rb +0 -74
- data/lib/stripe/services/v2/money_management/financial_account_service.rb +0 -43
- data/lib/stripe/services/v2/money_management/financial_address_service.rb +0 -81
- data/lib/stripe/services/v2/money_management/inbound_transfer_service.rb +0 -125
- data/lib/stripe/services/v2/money_management/outbound_payment_quote_service.rb +0 -95
- data/lib/stripe/services/v2/money_management/outbound_payment_service.rb +0 -200
- data/lib/stripe/services/v2/money_management/outbound_setup_intent_service.rb +0 -235
- data/lib/stripe/services/v2/money_management/outbound_transfer_service.rb +0 -172
- data/lib/stripe/services/v2/money_management/payout_method_service.rb +0 -91
- data/lib/stripe/services/v2/money_management/payout_methods_bank_account_spec_service.rb +0 -32
- data/lib/stripe/services/v2/money_management/received_credit_service.rb +0 -70
- data/lib/stripe/services/v2/money_management/received_debit_service.rb +0 -43
- data/lib/stripe/services/v2/money_management/transaction_entry_service.rb +0 -69
- data/lib/stripe/services/v2/money_management/transaction_service.rb +0 -73
- data/lib/stripe/services/v2/money_management_service.rb +0 -31
- data/lib/stripe/services/v2/payment_service.rb +0 -15
- data/lib/stripe/services/v2/payments/off_session_payment_service.rb +0 -138
- data/lib/stripe/services/v2/test_helper_service.rb +0 -15
- data/lib/stripe/services/v2/test_helpers/financial_address_service.rb +0 -49
- data/rbi/stripe.rbi +0 -191639
@@ -188,8 +188,6 @@ module Stripe
|
|
188
188
|
class Card < Stripe::StripeObject
|
189
189
|
# Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
|
190
190
|
attr_reader :brand
|
191
|
-
# The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card. (For internal use only and not typically available in standard API requests.)
|
192
|
-
attr_reader :brand_product
|
193
191
|
# Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
|
194
192
|
attr_reader :country
|
195
193
|
# Two-digit number representing the card's expiration month.
|
@@ -275,11 +273,6 @@ module Stripe
|
|
275
273
|
attr_reader :cvc_check
|
276
274
|
end
|
277
275
|
|
278
|
-
class DecrementalAuthorization < Stripe::StripeObject
|
279
|
-
# Indicates whether or not the decremental authorization feature is supported.
|
280
|
-
attr_reader :status
|
281
|
-
end
|
282
|
-
|
283
276
|
class ExtendedAuthorization < Stripe::StripeObject
|
284
277
|
# Indicates whether or not the capture window is extended beyond the standard authorization.
|
285
278
|
attr_reader :status
|
@@ -297,7 +290,7 @@ module Stripe
|
|
297
290
|
# For `fixed_count` installment plans, this is the interval between installment payments your customer will make to their credit card.
|
298
291
|
# One of `month`.
|
299
292
|
attr_reader :interval
|
300
|
-
# Type of installment plan, one of `fixed_count`.
|
293
|
+
# Type of installment plan, one of `fixed_count`, `bonus`, or `revolving`.
|
301
294
|
attr_reader :type
|
302
295
|
end
|
303
296
|
# Installment plan selected for the payment.
|
@@ -321,11 +314,6 @@ module Stripe
|
|
321
314
|
attr_reader :status
|
322
315
|
end
|
323
316
|
|
324
|
-
class PartialAuthorization < Stripe::StripeObject
|
325
|
-
# Indicates whether the transaction requested for partial authorization feature and the authorization outcome.
|
326
|
-
attr_reader :status
|
327
|
-
end
|
328
|
-
|
329
317
|
class ThreeDSecure < Stripe::StripeObject
|
330
318
|
# For authenticated transactions: how the customer was authenticated by
|
331
319
|
# the issuing bank.
|
@@ -458,8 +446,6 @@ module Stripe
|
|
458
446
|
end
|
459
447
|
# The authorized amount.
|
460
448
|
attr_reader :amount_authorized
|
461
|
-
# The latest amount intended to be authorized by this charge.
|
462
|
-
attr_reader :amount_requested
|
463
449
|
# Authorization code on the charge.
|
464
450
|
attr_reader :authorization_code
|
465
451
|
# Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
|
@@ -470,8 +456,6 @@ module Stripe
|
|
470
456
|
attr_reader :checks
|
471
457
|
# Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
|
472
458
|
attr_reader :country
|
473
|
-
# Attribute for field decremental_authorization
|
474
|
-
attr_reader :decremental_authorization
|
475
459
|
# A high-level description of the type of cards issued in this range. (For internal use only and not typically available in standard API requests.)
|
476
460
|
attr_reader :description
|
477
461
|
# Two-digit number representing the card's expiration month.
|
@@ -490,7 +474,7 @@ module Stripe
|
|
490
474
|
attr_reader :iin
|
491
475
|
# Attribute for field incremental_authorization
|
492
476
|
attr_reader :incremental_authorization
|
493
|
-
# Installment details for this payment
|
477
|
+
# Installment details for this payment.
|
494
478
|
#
|
495
479
|
# For more information, see the [installments integration guide](https://stripe.com/docs/payments/installments).
|
496
480
|
attr_reader :installments
|
@@ -512,8 +496,6 @@ module Stripe
|
|
512
496
|
attr_reader :network_transaction_id
|
513
497
|
# Attribute for field overcapture
|
514
498
|
attr_reader :overcapture
|
515
|
-
# Attribute for field partial_authorization
|
516
|
-
attr_reader :partial_authorization
|
517
499
|
# Status of a card based on the card issuer.
|
518
500
|
attr_reader :regulated_status
|
519
501
|
# Populated if this transaction used 3D Secure authentication.
|
@@ -533,9 +515,9 @@ module Stripe
|
|
533
515
|
class Receipt < Stripe::StripeObject
|
534
516
|
# The type of account being debited or credited
|
535
517
|
attr_reader :account_type
|
536
|
-
#
|
518
|
+
# The Application Cryptogram, a unique value generated by the card to authenticate the transaction with issuers.
|
537
519
|
attr_reader :application_cryptogram
|
538
|
-
#
|
520
|
+
# The Application Identifier (AID) on the card used to determine which networks are eligible to process the transaction. Referenced from EMV tag 9F12, data encoded on the card's chip.
|
539
521
|
attr_reader :application_preferred_name
|
540
522
|
# Identifier for this transaction.
|
541
523
|
attr_reader :authorization_code
|
@@ -543,11 +525,11 @@ module Stripe
|
|
543
525
|
attr_reader :authorization_response_code
|
544
526
|
# Describes the method used by the cardholder to verify ownership of the card. One of the following: `approval`, `failure`, `none`, `offline_pin`, `offline_pin_and_signature`, `online_pin`, or `signature`.
|
545
527
|
attr_reader :cardholder_verification_method
|
546
|
-
#
|
528
|
+
# Similar to the application_preferred_name, identifying the applications (AIDs) available on the card. Referenced from EMV tag 84.
|
547
529
|
attr_reader :dedicated_file_name
|
548
|
-
#
|
530
|
+
# A 5-byte string that records the checks and validations that occur between the card and the terminal. These checks determine how the terminal processes the transaction and what risk tolerance is acceptable. Referenced from EMV Tag 95.
|
549
531
|
attr_reader :terminal_verification_results
|
550
|
-
# An indication of
|
532
|
+
# An indication of which steps were completed during the card read process. Referenced from EMV Tag 9B.
|
551
533
|
attr_reader :transaction_status_information
|
552
534
|
end
|
553
535
|
|
@@ -599,7 +581,7 @@ module Stripe
|
|
599
581
|
attr_reader :offline
|
600
582
|
# Defines whether the authorized amount can be over-captured or not
|
601
583
|
attr_reader :overcapture_supported
|
602
|
-
# EMV tag 5F2D
|
584
|
+
# The languages that the issuing bank recommends using for localizing any customer-facing text, as read from the card. Referenced from EMV tag 5F2D, data encoded on the card's chip.
|
603
585
|
attr_reader :preferred_locales
|
604
586
|
# How card details were read in this transaction.
|
605
587
|
attr_reader :read_method
|
@@ -616,6 +598,17 @@ module Stripe
|
|
616
598
|
attr_reader :cashtag
|
617
599
|
end
|
618
600
|
|
601
|
+
class Crypto < Stripe::StripeObject
|
602
|
+
# The wallet address of the customer.
|
603
|
+
attr_reader :buyer_address
|
604
|
+
# The blockchain network that the transaction was sent on.
|
605
|
+
attr_reader :network
|
606
|
+
# The token currency that the transaction was sent with.
|
607
|
+
attr_reader :token_currency
|
608
|
+
# The blockchain transaction hash of the crypto payment.
|
609
|
+
attr_reader :transaction_hash
|
610
|
+
end
|
611
|
+
|
619
612
|
class CustomerBalance < Stripe::StripeObject; end
|
620
613
|
|
621
614
|
class Eps < Stripe::StripeObject
|
@@ -649,28 +642,13 @@ module Stripe
|
|
649
642
|
attr_reader :verified_name
|
650
643
|
end
|
651
644
|
|
652
|
-
class Gopay < Stripe::StripeObject; end
|
653
|
-
|
654
645
|
class Grabpay < Stripe::StripeObject
|
655
646
|
# Unique transaction id generated by GrabPay
|
656
647
|
attr_reader :transaction_id
|
657
648
|
end
|
658
649
|
|
659
|
-
class IdBankTransfer < Stripe::StripeObject
|
660
|
-
# Account number of the bank account to transfer funds to.
|
661
|
-
attr_reader :account_number
|
662
|
-
# Bank where the account is located.
|
663
|
-
attr_reader :bank
|
664
|
-
# Local bank code of the bank.
|
665
|
-
attr_reader :bank_code
|
666
|
-
# Name of the bank associated with the bank account.
|
667
|
-
attr_reader :bank_name
|
668
|
-
# Merchant name and billing details name, for the customer to check for the correct merchant when performing the bank transfer.
|
669
|
-
attr_reader :display_name
|
670
|
-
end
|
671
|
-
|
672
650
|
class Ideal < Stripe::StripeObject
|
673
|
-
# The customer's bank. Can be one of `abn_amro`, `asn_bank`, `bunq`, `handelsbanken`, `ing`, `knab`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
|
651
|
+
# The customer's bank. Can be one of `abn_amro`, `asn_bank`, `bunq`, `buut`, `handelsbanken`, `ing`, `knab`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
|
674
652
|
attr_reader :bank
|
675
653
|
# The Bank Identifier Code of the customer's bank.
|
676
654
|
attr_reader :bic
|
@@ -689,9 +667,9 @@ module Stripe
|
|
689
667
|
class Receipt < Stripe::StripeObject
|
690
668
|
# The type of account being debited or credited
|
691
669
|
attr_reader :account_type
|
692
|
-
#
|
670
|
+
# The Application Cryptogram, a unique value generated by the card to authenticate the transaction with issuers.
|
693
671
|
attr_reader :application_cryptogram
|
694
|
-
#
|
672
|
+
# The Application Identifier (AID) on the card used to determine which networks are eligible to process the transaction. Referenced from EMV tag 9F12, data encoded on the card's chip.
|
695
673
|
attr_reader :application_preferred_name
|
696
674
|
# Identifier for this transaction.
|
697
675
|
attr_reader :authorization_code
|
@@ -699,11 +677,11 @@ module Stripe
|
|
699
677
|
attr_reader :authorization_response_code
|
700
678
|
# Describes the method used by the cardholder to verify ownership of the card. One of the following: `approval`, `failure`, `none`, `offline_pin`, `offline_pin_and_signature`, `online_pin`, or `signature`.
|
701
679
|
attr_reader :cardholder_verification_method
|
702
|
-
#
|
680
|
+
# Similar to the application_preferred_name, identifying the applications (AIDs) available on the card. Referenced from EMV tag 84.
|
703
681
|
attr_reader :dedicated_file_name
|
704
|
-
#
|
682
|
+
# A 5-byte string that records the checks and validations that occur between the card and the terminal. These checks determine how the terminal processes the transaction and what risk tolerance is acceptable. Referenced from EMV Tag 95.
|
705
683
|
attr_reader :terminal_verification_results
|
706
|
-
# An indication of
|
684
|
+
# An indication of which steps were completed during the card read process. Referenced from EMV Tag 9B.
|
707
685
|
attr_reader :transaction_status_information
|
708
686
|
end
|
709
687
|
# Card brand. Can be `interac`, `mastercard` or `visa`.
|
@@ -738,7 +716,7 @@ module Stripe
|
|
738
716
|
attr_reader :network
|
739
717
|
# This is used by the financial networks to identify a transaction. Visa calls this the Transaction ID, Mastercard calls this the Trace ID, and American Express calls this the Acquirer Reference Data. This value will be present if it is returned by the financial network in the authorization response, and null otherwise.
|
740
718
|
attr_reader :network_transaction_id
|
741
|
-
# EMV tag 5F2D
|
719
|
+
# The languages that the issuing bank recommends using for localizing any customer-facing text, as read from the card. Referenced from EMV tag 5F2D, data encoded on the card's chip.
|
742
720
|
attr_reader :preferred_locales
|
743
721
|
# How card details were read in this transaction.
|
744
722
|
attr_reader :read_method
|
@@ -794,8 +772,6 @@ module Stripe
|
|
794
772
|
attr_reader :country
|
795
773
|
end
|
796
774
|
|
797
|
-
class MbWay < Stripe::StripeObject; end
|
798
|
-
|
799
775
|
class Mobilepay < Stripe::StripeObject
|
800
776
|
class Card < Stripe::StripeObject
|
801
777
|
# Brand of the card used in the transaction
|
@@ -875,36 +851,6 @@ module Stripe
|
|
875
851
|
# Indicates whether the transaction is eligible for PayPal's seller protection.
|
876
852
|
attr_reader :status
|
877
853
|
end
|
878
|
-
|
879
|
-
class Shipping < Stripe::StripeObject
|
880
|
-
# City, district, suburb, town, or village.
|
881
|
-
attr_reader :city
|
882
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
883
|
-
attr_reader :country
|
884
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
885
|
-
attr_reader :line1
|
886
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
887
|
-
attr_reader :line2
|
888
|
-
# ZIP or postal code.
|
889
|
-
attr_reader :postal_code
|
890
|
-
# State, county, province, or region.
|
891
|
-
attr_reader :state
|
892
|
-
end
|
893
|
-
|
894
|
-
class VerifiedAddress < Stripe::StripeObject
|
895
|
-
# City, district, suburb, town, or village.
|
896
|
-
attr_reader :city
|
897
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
898
|
-
attr_reader :country
|
899
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
900
|
-
attr_reader :line1
|
901
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
902
|
-
attr_reader :line2
|
903
|
-
# ZIP or postal code.
|
904
|
-
attr_reader :postal_code
|
905
|
-
# State, county, province, or region.
|
906
|
-
attr_reader :state
|
907
|
-
end
|
908
854
|
# Two-letter ISO code representing the buyer's country. Values are provided by PayPal directly (if supported) at the time of authorization or settlement. They cannot be set or mutated.
|
909
855
|
attr_reader :country
|
910
856
|
# Owner's email. Values are provided by PayPal directly
|
@@ -917,33 +863,8 @@ module Stripe
|
|
917
863
|
attr_reader :payer_name
|
918
864
|
# The level of protection offered as defined by PayPal Seller Protection for Merchants, for this transaction.
|
919
865
|
attr_reader :seller_protection
|
920
|
-
# The shipping address for the customer, as supplied by the merchant at the point of payment
|
921
|
-
# execution. This shipping address will not be updated if the merchant updates the shipping
|
922
|
-
# address on the PaymentIntent after the PaymentIntent was successfully confirmed.
|
923
|
-
attr_reader :shipping
|
924
866
|
# A unique ID generated by PayPal for this transaction.
|
925
867
|
attr_reader :transaction_id
|
926
|
-
# The shipping address for the customer, as supplied by the merchant at the point of payment
|
927
|
-
# execution. This shipping address will not be updated if the merchant updates the shipping
|
928
|
-
# address on the PaymentIntent after the PaymentIntent was successfully confirmed.
|
929
|
-
attr_reader :verified_address
|
930
|
-
# Owner's verified email. Values are verified or provided by PayPal directly
|
931
|
-
# (if supported) at the time of authorization or settlement. They cannot be set or mutated.
|
932
|
-
attr_reader :verified_email
|
933
|
-
# Owner's verified full name. Values are verified or provided by PayPal directly
|
934
|
-
# (if supported) at the time of authorization or settlement. They cannot be set or mutated.
|
935
|
-
attr_reader :verified_name
|
936
|
-
end
|
937
|
-
|
938
|
-
class Payto < Stripe::StripeObject
|
939
|
-
# Bank-State-Branch number of the bank account.
|
940
|
-
attr_reader :bsb_number
|
941
|
-
# Last four digits of the bank account number.
|
942
|
-
attr_reader :last4
|
943
|
-
# ID of the mandate used to make this payment.
|
944
|
-
attr_reader :mandate
|
945
|
-
# The PayID alias for the bank account.
|
946
|
-
attr_reader :pay_id
|
947
868
|
end
|
948
869
|
|
949
870
|
class Pix < Stripe::StripeObject
|
@@ -956,16 +877,11 @@ module Stripe
|
|
956
877
|
attr_reader :reference
|
957
878
|
end
|
958
879
|
|
959
|
-
class Qris < Stripe::StripeObject; end
|
960
|
-
class Rechnung < Stripe::StripeObject; end
|
961
|
-
|
962
880
|
class RevolutPay < Stripe::StripeObject
|
963
881
|
class Funding < Stripe::StripeObject
|
964
882
|
class Card < Stripe::StripeObject
|
965
883
|
# Card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
|
966
884
|
attr_reader :brand
|
967
|
-
# The [product code](https://stripe.com/docs/card-product-codes) that identifies the specific program or product associated with a card. (For internal use only and not typically available in standard API requests.)
|
968
|
-
attr_reader :brand_product
|
969
885
|
# Two-letter ISO code representing the country of the card. You could use this attribute to get a sense of the international breakdown of cards you've collected.
|
970
886
|
attr_reader :country
|
971
887
|
# Two-digit number representing the card's expiration month.
|
@@ -1017,8 +933,6 @@ module Stripe
|
|
1017
933
|
attr_reader :mandate
|
1018
934
|
end
|
1019
935
|
|
1020
|
-
class Shopeepay < Stripe::StripeObject; end
|
1021
|
-
|
1022
936
|
class Sofort < Stripe::StripeObject
|
1023
937
|
# Bank code of bank associated with the bank account.
|
1024
938
|
attr_reader :bank_code
|
@@ -1044,13 +958,6 @@ module Stripe
|
|
1044
958
|
|
1045
959
|
class StripeAccount < Stripe::StripeObject; end
|
1046
960
|
|
1047
|
-
class StripeBalance < Stripe::StripeObject
|
1048
|
-
# The connected account ID whose Stripe balance to use as the source of payment
|
1049
|
-
attr_reader :account
|
1050
|
-
# The [source_type](https://docs.stripe.com/api/balance/balance_object#balance_object-available-source_types) of the balance
|
1051
|
-
attr_reader :source_type
|
1052
|
-
end
|
1053
|
-
|
1054
961
|
class Swish < Stripe::StripeObject
|
1055
962
|
# Uniquely identifies the payer's Swish account. You can use this attribute to check whether two Swish transactions were paid for by the same payer
|
1056
963
|
attr_reader :fingerprint
|
@@ -1129,6 +1036,8 @@ module Stripe
|
|
1129
1036
|
attr_reader :card_present
|
1130
1037
|
# Attribute for field cashapp
|
1131
1038
|
attr_reader :cashapp
|
1039
|
+
# Attribute for field crypto
|
1040
|
+
attr_reader :crypto
|
1132
1041
|
# Attribute for field customer_balance
|
1133
1042
|
attr_reader :customer_balance
|
1134
1043
|
# Attribute for field eps
|
@@ -1137,12 +1046,8 @@ module Stripe
|
|
1137
1046
|
attr_reader :fpx
|
1138
1047
|
# Attribute for field giropay
|
1139
1048
|
attr_reader :giropay
|
1140
|
-
# Attribute for field gopay
|
1141
|
-
attr_reader :gopay
|
1142
1049
|
# Attribute for field grabpay
|
1143
1050
|
attr_reader :grabpay
|
1144
|
-
# Attribute for field id_bank_transfer
|
1145
|
-
attr_reader :id_bank_transfer
|
1146
1051
|
# Attribute for field ideal
|
1147
1052
|
attr_reader :ideal
|
1148
1053
|
# Attribute for field interac_present
|
@@ -1157,8 +1062,6 @@ module Stripe
|
|
1157
1062
|
attr_reader :kr_card
|
1158
1063
|
# Attribute for field link
|
1159
1064
|
attr_reader :link
|
1160
|
-
# Attribute for field mb_way
|
1161
|
-
attr_reader :mb_way
|
1162
1065
|
# Attribute for field mobilepay
|
1163
1066
|
attr_reader :mobilepay
|
1164
1067
|
# Attribute for field multibanco
|
@@ -1179,16 +1082,10 @@ module Stripe
|
|
1179
1082
|
attr_reader :paynow
|
1180
1083
|
# Attribute for field paypal
|
1181
1084
|
attr_reader :paypal
|
1182
|
-
# Attribute for field payto
|
1183
|
-
attr_reader :payto
|
1184
1085
|
# Attribute for field pix
|
1185
1086
|
attr_reader :pix
|
1186
1087
|
# Attribute for field promptpay
|
1187
1088
|
attr_reader :promptpay
|
1188
|
-
# Attribute for field qris
|
1189
|
-
attr_reader :qris
|
1190
|
-
# Attribute for field rechnung
|
1191
|
-
attr_reader :rechnung
|
1192
1089
|
# Attribute for field revolut_pay
|
1193
1090
|
attr_reader :revolut_pay
|
1194
1091
|
# Attribute for field samsung_pay
|
@@ -1199,14 +1096,10 @@ module Stripe
|
|
1199
1096
|
attr_reader :sepa_credit_transfer
|
1200
1097
|
# Attribute for field sepa_debit
|
1201
1098
|
attr_reader :sepa_debit
|
1202
|
-
# Attribute for field shopeepay
|
1203
|
-
attr_reader :shopeepay
|
1204
1099
|
# Attribute for field sofort
|
1205
1100
|
attr_reader :sofort
|
1206
1101
|
# Attribute for field stripe_account
|
1207
1102
|
attr_reader :stripe_account
|
1208
|
-
# Attribute for field stripe_balance
|
1209
|
-
attr_reader :stripe_balance
|
1210
1103
|
# Attribute for field swish
|
1211
1104
|
attr_reader :swish
|
1212
1105
|
# Attribute for field twint
|
@@ -1505,711 +1398,6 @@ module Stripe
|
|
1505
1398
|
end
|
1506
1399
|
end
|
1507
1400
|
|
1508
|
-
class PaymentDetails < Stripe::RequestParams
|
1509
|
-
class CarRental < Stripe::RequestParams
|
1510
|
-
class Affiliate < Stripe::RequestParams
|
1511
|
-
# The name of the affiliate that originated the purchase.
|
1512
|
-
attr_accessor :name
|
1513
|
-
|
1514
|
-
def initialize(name: nil)
|
1515
|
-
@name = name
|
1516
|
-
end
|
1517
|
-
end
|
1518
|
-
|
1519
|
-
class Delivery < Stripe::RequestParams
|
1520
|
-
class Recipient < Stripe::RequestParams
|
1521
|
-
# The email of the recipient the ticket is delivered to.
|
1522
|
-
attr_accessor :email
|
1523
|
-
# The name of the recipient the ticket is delivered to.
|
1524
|
-
attr_accessor :name
|
1525
|
-
# The phone number of the recipient the ticket is delivered to.
|
1526
|
-
attr_accessor :phone
|
1527
|
-
|
1528
|
-
def initialize(email: nil, name: nil, phone: nil)
|
1529
|
-
@email = email
|
1530
|
-
@name = name
|
1531
|
-
@phone = phone
|
1532
|
-
end
|
1533
|
-
end
|
1534
|
-
# The delivery method for the payment
|
1535
|
-
attr_accessor :mode
|
1536
|
-
# Details of the recipient.
|
1537
|
-
attr_accessor :recipient
|
1538
|
-
|
1539
|
-
def initialize(mode: nil, recipient: nil)
|
1540
|
-
@mode = mode
|
1541
|
-
@recipient = recipient
|
1542
|
-
end
|
1543
|
-
end
|
1544
|
-
|
1545
|
-
class Distance < Stripe::RequestParams
|
1546
|
-
# Distance traveled.
|
1547
|
-
attr_accessor :amount
|
1548
|
-
# Unit of measurement for the distance traveled. One of `miles` or `kilometers`.
|
1549
|
-
attr_accessor :unit
|
1550
|
-
|
1551
|
-
def initialize(amount: nil, unit: nil)
|
1552
|
-
@amount = amount
|
1553
|
-
@unit = unit
|
1554
|
-
end
|
1555
|
-
end
|
1556
|
-
|
1557
|
-
class Driver < Stripe::RequestParams
|
1558
|
-
# Driver's identification number.
|
1559
|
-
attr_accessor :driver_identification_number
|
1560
|
-
# Driver's tax number.
|
1561
|
-
attr_accessor :driver_tax_number
|
1562
|
-
# Full name of the person or entity on the car reservation.
|
1563
|
-
attr_accessor :name
|
1564
|
-
|
1565
|
-
def initialize(driver_identification_number: nil, driver_tax_number: nil, name: nil)
|
1566
|
-
@driver_identification_number = driver_identification_number
|
1567
|
-
@driver_tax_number = driver_tax_number
|
1568
|
-
@name = name
|
1569
|
-
end
|
1570
|
-
end
|
1571
|
-
|
1572
|
-
class PickupAddress < Stripe::RequestParams
|
1573
|
-
# City, district, suburb, town, or village.
|
1574
|
-
attr_accessor :city
|
1575
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
1576
|
-
attr_accessor :country
|
1577
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
1578
|
-
attr_accessor :line1
|
1579
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
1580
|
-
attr_accessor :line2
|
1581
|
-
# ZIP or postal code.
|
1582
|
-
attr_accessor :postal_code
|
1583
|
-
# State, county, province, or region.
|
1584
|
-
attr_accessor :state
|
1585
|
-
|
1586
|
-
def initialize(
|
1587
|
-
city: nil,
|
1588
|
-
country: nil,
|
1589
|
-
line1: nil,
|
1590
|
-
line2: nil,
|
1591
|
-
postal_code: nil,
|
1592
|
-
state: nil
|
1593
|
-
)
|
1594
|
-
@city = city
|
1595
|
-
@country = country
|
1596
|
-
@line1 = line1
|
1597
|
-
@line2 = line2
|
1598
|
-
@postal_code = postal_code
|
1599
|
-
@state = state
|
1600
|
-
end
|
1601
|
-
end
|
1602
|
-
|
1603
|
-
class ReturnAddress < Stripe::RequestParams
|
1604
|
-
# City, district, suburb, town, or village.
|
1605
|
-
attr_accessor :city
|
1606
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
1607
|
-
attr_accessor :country
|
1608
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
1609
|
-
attr_accessor :line1
|
1610
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
1611
|
-
attr_accessor :line2
|
1612
|
-
# ZIP or postal code.
|
1613
|
-
attr_accessor :postal_code
|
1614
|
-
# State, county, province, or region.
|
1615
|
-
attr_accessor :state
|
1616
|
-
|
1617
|
-
def initialize(
|
1618
|
-
city: nil,
|
1619
|
-
country: nil,
|
1620
|
-
line1: nil,
|
1621
|
-
line2: nil,
|
1622
|
-
postal_code: nil,
|
1623
|
-
state: nil
|
1624
|
-
)
|
1625
|
-
@city = city
|
1626
|
-
@country = country
|
1627
|
-
@line1 = line1
|
1628
|
-
@line2 = line2
|
1629
|
-
@postal_code = postal_code
|
1630
|
-
@state = state
|
1631
|
-
end
|
1632
|
-
end
|
1633
|
-
# Affiliate details for this purchase.
|
1634
|
-
attr_accessor :affiliate
|
1635
|
-
# The booking number associated with the car rental.
|
1636
|
-
attr_accessor :booking_number
|
1637
|
-
# Class code of the car.
|
1638
|
-
attr_accessor :car_class_code
|
1639
|
-
# Make of the car.
|
1640
|
-
attr_accessor :car_make
|
1641
|
-
# Model of the car.
|
1642
|
-
attr_accessor :car_model
|
1643
|
-
# The name of the rental car company.
|
1644
|
-
attr_accessor :company
|
1645
|
-
# The customer service phone number of the car rental company.
|
1646
|
-
attr_accessor :customer_service_phone_number
|
1647
|
-
# Number of days the car is being rented.
|
1648
|
-
attr_accessor :days_rented
|
1649
|
-
# Delivery details for this purchase.
|
1650
|
-
attr_accessor :delivery
|
1651
|
-
# The details of the distance traveled during the rental period.
|
1652
|
-
attr_accessor :distance
|
1653
|
-
# The details of the passengers in the travel reservation
|
1654
|
-
attr_accessor :drivers
|
1655
|
-
# List of additional charges being billed.
|
1656
|
-
attr_accessor :extra_charges
|
1657
|
-
# Indicates if the customer did not keep nor cancel their booking.
|
1658
|
-
attr_accessor :no_show
|
1659
|
-
# Car pick-up address.
|
1660
|
-
attr_accessor :pickup_address
|
1661
|
-
# Car pick-up time. Measured in seconds since the Unix epoch.
|
1662
|
-
attr_accessor :pickup_at
|
1663
|
-
# Name of the pickup location.
|
1664
|
-
attr_accessor :pickup_location_name
|
1665
|
-
# Rental rate.
|
1666
|
-
attr_accessor :rate_amount
|
1667
|
-
# The frequency at which the rate amount is applied. One of `day`, `week` or `month`
|
1668
|
-
attr_accessor :rate_interval
|
1669
|
-
# The name of the person or entity renting the car.
|
1670
|
-
attr_accessor :renter_name
|
1671
|
-
# Car return address.
|
1672
|
-
attr_accessor :return_address
|
1673
|
-
# Car return time. Measured in seconds since the Unix epoch.
|
1674
|
-
attr_accessor :return_at
|
1675
|
-
# Name of the return location.
|
1676
|
-
attr_accessor :return_location_name
|
1677
|
-
# Indicates whether the goods or services are tax-exempt or tax is not collected.
|
1678
|
-
attr_accessor :tax_exempt
|
1679
|
-
# The vehicle identification number.
|
1680
|
-
attr_accessor :vehicle_identification_number
|
1681
|
-
|
1682
|
-
def initialize(
|
1683
|
-
affiliate: nil,
|
1684
|
-
booking_number: nil,
|
1685
|
-
car_class_code: nil,
|
1686
|
-
car_make: nil,
|
1687
|
-
car_model: nil,
|
1688
|
-
company: nil,
|
1689
|
-
customer_service_phone_number: nil,
|
1690
|
-
days_rented: nil,
|
1691
|
-
delivery: nil,
|
1692
|
-
distance: nil,
|
1693
|
-
drivers: nil,
|
1694
|
-
extra_charges: nil,
|
1695
|
-
no_show: nil,
|
1696
|
-
pickup_address: nil,
|
1697
|
-
pickup_at: nil,
|
1698
|
-
pickup_location_name: nil,
|
1699
|
-
rate_amount: nil,
|
1700
|
-
rate_interval: nil,
|
1701
|
-
renter_name: nil,
|
1702
|
-
return_address: nil,
|
1703
|
-
return_at: nil,
|
1704
|
-
return_location_name: nil,
|
1705
|
-
tax_exempt: nil,
|
1706
|
-
vehicle_identification_number: nil
|
1707
|
-
)
|
1708
|
-
@affiliate = affiliate
|
1709
|
-
@booking_number = booking_number
|
1710
|
-
@car_class_code = car_class_code
|
1711
|
-
@car_make = car_make
|
1712
|
-
@car_model = car_model
|
1713
|
-
@company = company
|
1714
|
-
@customer_service_phone_number = customer_service_phone_number
|
1715
|
-
@days_rented = days_rented
|
1716
|
-
@delivery = delivery
|
1717
|
-
@distance = distance
|
1718
|
-
@drivers = drivers
|
1719
|
-
@extra_charges = extra_charges
|
1720
|
-
@no_show = no_show
|
1721
|
-
@pickup_address = pickup_address
|
1722
|
-
@pickup_at = pickup_at
|
1723
|
-
@pickup_location_name = pickup_location_name
|
1724
|
-
@rate_amount = rate_amount
|
1725
|
-
@rate_interval = rate_interval
|
1726
|
-
@renter_name = renter_name
|
1727
|
-
@return_address = return_address
|
1728
|
-
@return_at = return_at
|
1729
|
-
@return_location_name = return_location_name
|
1730
|
-
@tax_exempt = tax_exempt
|
1731
|
-
@vehicle_identification_number = vehicle_identification_number
|
1732
|
-
end
|
1733
|
-
end
|
1734
|
-
|
1735
|
-
class EventDetails < Stripe::RequestParams
|
1736
|
-
class Address < Stripe::RequestParams
|
1737
|
-
# City, district, suburb, town, or village.
|
1738
|
-
attr_accessor :city
|
1739
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
1740
|
-
attr_accessor :country
|
1741
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
1742
|
-
attr_accessor :line1
|
1743
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
1744
|
-
attr_accessor :line2
|
1745
|
-
# ZIP or postal code.
|
1746
|
-
attr_accessor :postal_code
|
1747
|
-
# State, county, province, or region.
|
1748
|
-
attr_accessor :state
|
1749
|
-
|
1750
|
-
def initialize(
|
1751
|
-
city: nil,
|
1752
|
-
country: nil,
|
1753
|
-
line1: nil,
|
1754
|
-
line2: nil,
|
1755
|
-
postal_code: nil,
|
1756
|
-
state: nil
|
1757
|
-
)
|
1758
|
-
@city = city
|
1759
|
-
@country = country
|
1760
|
-
@line1 = line1
|
1761
|
-
@line2 = line2
|
1762
|
-
@postal_code = postal_code
|
1763
|
-
@state = state
|
1764
|
-
end
|
1765
|
-
end
|
1766
|
-
|
1767
|
-
class Affiliate < Stripe::RequestParams
|
1768
|
-
# The name of the affiliate that originated the purchase.
|
1769
|
-
attr_accessor :name
|
1770
|
-
|
1771
|
-
def initialize(name: nil)
|
1772
|
-
@name = name
|
1773
|
-
end
|
1774
|
-
end
|
1775
|
-
|
1776
|
-
class Delivery < Stripe::RequestParams
|
1777
|
-
class Recipient < Stripe::RequestParams
|
1778
|
-
# The email of the recipient the ticket is delivered to.
|
1779
|
-
attr_accessor :email
|
1780
|
-
# The name of the recipient the ticket is delivered to.
|
1781
|
-
attr_accessor :name
|
1782
|
-
# The phone number of the recipient the ticket is delivered to.
|
1783
|
-
attr_accessor :phone
|
1784
|
-
|
1785
|
-
def initialize(email: nil, name: nil, phone: nil)
|
1786
|
-
@email = email
|
1787
|
-
@name = name
|
1788
|
-
@phone = phone
|
1789
|
-
end
|
1790
|
-
end
|
1791
|
-
# The delivery method for the payment
|
1792
|
-
attr_accessor :mode
|
1793
|
-
# Details of the recipient.
|
1794
|
-
attr_accessor :recipient
|
1795
|
-
|
1796
|
-
def initialize(mode: nil, recipient: nil)
|
1797
|
-
@mode = mode
|
1798
|
-
@recipient = recipient
|
1799
|
-
end
|
1800
|
-
end
|
1801
|
-
# Indicates if the tickets are digitally checked when entering the venue.
|
1802
|
-
attr_accessor :access_controlled_venue
|
1803
|
-
# The event location's address.
|
1804
|
-
attr_accessor :address
|
1805
|
-
# Affiliate details for this purchase.
|
1806
|
-
attr_accessor :affiliate
|
1807
|
-
# The name of the company
|
1808
|
-
attr_accessor :company
|
1809
|
-
# Delivery details for this purchase.
|
1810
|
-
attr_accessor :delivery
|
1811
|
-
# Event end time. Measured in seconds since the Unix epoch.
|
1812
|
-
attr_accessor :ends_at
|
1813
|
-
# Type of the event entertainment (concert, sports event etc)
|
1814
|
-
attr_accessor :genre
|
1815
|
-
# The name of the event.
|
1816
|
-
attr_accessor :name
|
1817
|
-
# Event start time. Measured in seconds since the Unix epoch.
|
1818
|
-
attr_accessor :starts_at
|
1819
|
-
|
1820
|
-
def initialize(
|
1821
|
-
access_controlled_venue: nil,
|
1822
|
-
address: nil,
|
1823
|
-
affiliate: nil,
|
1824
|
-
company: nil,
|
1825
|
-
delivery: nil,
|
1826
|
-
ends_at: nil,
|
1827
|
-
genre: nil,
|
1828
|
-
name: nil,
|
1829
|
-
starts_at: nil
|
1830
|
-
)
|
1831
|
-
@access_controlled_venue = access_controlled_venue
|
1832
|
-
@address = address
|
1833
|
-
@affiliate = affiliate
|
1834
|
-
@company = company
|
1835
|
-
@delivery = delivery
|
1836
|
-
@ends_at = ends_at
|
1837
|
-
@genre = genre
|
1838
|
-
@name = name
|
1839
|
-
@starts_at = starts_at
|
1840
|
-
end
|
1841
|
-
end
|
1842
|
-
|
1843
|
-
class Flight < Stripe::RequestParams
|
1844
|
-
class Affiliate < Stripe::RequestParams
|
1845
|
-
# The name of the affiliate that originated the purchase.
|
1846
|
-
attr_accessor :name
|
1847
|
-
|
1848
|
-
def initialize(name: nil)
|
1849
|
-
@name = name
|
1850
|
-
end
|
1851
|
-
end
|
1852
|
-
|
1853
|
-
class Delivery < Stripe::RequestParams
|
1854
|
-
class Recipient < Stripe::RequestParams
|
1855
|
-
# The email of the recipient the ticket is delivered to.
|
1856
|
-
attr_accessor :email
|
1857
|
-
# The name of the recipient the ticket is delivered to.
|
1858
|
-
attr_accessor :name
|
1859
|
-
# The phone number of the recipient the ticket is delivered to.
|
1860
|
-
attr_accessor :phone
|
1861
|
-
|
1862
|
-
def initialize(email: nil, name: nil, phone: nil)
|
1863
|
-
@email = email
|
1864
|
-
@name = name
|
1865
|
-
@phone = phone
|
1866
|
-
end
|
1867
|
-
end
|
1868
|
-
# The delivery method for the payment
|
1869
|
-
attr_accessor :mode
|
1870
|
-
# Details of the recipient.
|
1871
|
-
attr_accessor :recipient
|
1872
|
-
|
1873
|
-
def initialize(mode: nil, recipient: nil)
|
1874
|
-
@mode = mode
|
1875
|
-
@recipient = recipient
|
1876
|
-
end
|
1877
|
-
end
|
1878
|
-
|
1879
|
-
class Passenger < Stripe::RequestParams
|
1880
|
-
# Full name of the person or entity on the flight reservation.
|
1881
|
-
attr_accessor :name
|
1882
|
-
|
1883
|
-
def initialize(name: nil)
|
1884
|
-
@name = name
|
1885
|
-
end
|
1886
|
-
end
|
1887
|
-
|
1888
|
-
class Segment < Stripe::RequestParams
|
1889
|
-
# The flight segment amount.
|
1890
|
-
attr_accessor :amount
|
1891
|
-
# The International Air Transport Association (IATA) airport code for the arrival airport.
|
1892
|
-
attr_accessor :arrival_airport
|
1893
|
-
# The arrival time for the flight segment. Measured in seconds since the Unix epoch.
|
1894
|
-
attr_accessor :arrives_at
|
1895
|
-
# The International Air Transport Association (IATA) carrier code of the carrier operating the flight segment.
|
1896
|
-
attr_accessor :carrier
|
1897
|
-
# The departure time for the flight segment. Measured in seconds since the Unix epoch.
|
1898
|
-
attr_accessor :departs_at
|
1899
|
-
# The International Air Transport Association (IATA) airport code for the departure airport.
|
1900
|
-
attr_accessor :departure_airport
|
1901
|
-
# The flight number associated with the segment
|
1902
|
-
attr_accessor :flight_number
|
1903
|
-
# The fare class for the segment.
|
1904
|
-
attr_accessor :service_class
|
1905
|
-
|
1906
|
-
def initialize(
|
1907
|
-
amount: nil,
|
1908
|
-
arrival_airport: nil,
|
1909
|
-
arrives_at: nil,
|
1910
|
-
carrier: nil,
|
1911
|
-
departs_at: nil,
|
1912
|
-
departure_airport: nil,
|
1913
|
-
flight_number: nil,
|
1914
|
-
service_class: nil
|
1915
|
-
)
|
1916
|
-
@amount = amount
|
1917
|
-
@arrival_airport = arrival_airport
|
1918
|
-
@arrives_at = arrives_at
|
1919
|
-
@carrier = carrier
|
1920
|
-
@departs_at = departs_at
|
1921
|
-
@departure_airport = departure_airport
|
1922
|
-
@flight_number = flight_number
|
1923
|
-
@service_class = service_class
|
1924
|
-
end
|
1925
|
-
end
|
1926
|
-
# Affiliate details for this purchase.
|
1927
|
-
attr_accessor :affiliate
|
1928
|
-
# The agency number (i.e. International Air Transport Association (IATA) agency number) of the travel agency that made the booking.
|
1929
|
-
attr_accessor :agency_number
|
1930
|
-
# The International Air Transport Association (IATA) carrier code of the carrier that issued the ticket.
|
1931
|
-
attr_accessor :carrier
|
1932
|
-
# Delivery details for this purchase.
|
1933
|
-
attr_accessor :delivery
|
1934
|
-
# The name of the person or entity on the reservation.
|
1935
|
-
attr_accessor :passenger_name
|
1936
|
-
# The details of the passengers in the travel reservation.
|
1937
|
-
attr_accessor :passengers
|
1938
|
-
# The individual flight segments associated with the trip.
|
1939
|
-
attr_accessor :segments
|
1940
|
-
# The ticket number associated with the travel reservation.
|
1941
|
-
attr_accessor :ticket_number
|
1942
|
-
|
1943
|
-
def initialize(
|
1944
|
-
affiliate: nil,
|
1945
|
-
agency_number: nil,
|
1946
|
-
carrier: nil,
|
1947
|
-
delivery: nil,
|
1948
|
-
passenger_name: nil,
|
1949
|
-
passengers: nil,
|
1950
|
-
segments: nil,
|
1951
|
-
ticket_number: nil
|
1952
|
-
)
|
1953
|
-
@affiliate = affiliate
|
1954
|
-
@agency_number = agency_number
|
1955
|
-
@carrier = carrier
|
1956
|
-
@delivery = delivery
|
1957
|
-
@passenger_name = passenger_name
|
1958
|
-
@passengers = passengers
|
1959
|
-
@segments = segments
|
1960
|
-
@ticket_number = ticket_number
|
1961
|
-
end
|
1962
|
-
end
|
1963
|
-
|
1964
|
-
class Lodging < Stripe::RequestParams
|
1965
|
-
class Address < Stripe::RequestParams
|
1966
|
-
# City, district, suburb, town, or village.
|
1967
|
-
attr_accessor :city
|
1968
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
1969
|
-
attr_accessor :country
|
1970
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
1971
|
-
attr_accessor :line1
|
1972
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
1973
|
-
attr_accessor :line2
|
1974
|
-
# ZIP or postal code.
|
1975
|
-
attr_accessor :postal_code
|
1976
|
-
# State, county, province, or region.
|
1977
|
-
attr_accessor :state
|
1978
|
-
|
1979
|
-
def initialize(
|
1980
|
-
city: nil,
|
1981
|
-
country: nil,
|
1982
|
-
line1: nil,
|
1983
|
-
line2: nil,
|
1984
|
-
postal_code: nil,
|
1985
|
-
state: nil
|
1986
|
-
)
|
1987
|
-
@city = city
|
1988
|
-
@country = country
|
1989
|
-
@line1 = line1
|
1990
|
-
@line2 = line2
|
1991
|
-
@postal_code = postal_code
|
1992
|
-
@state = state
|
1993
|
-
end
|
1994
|
-
end
|
1995
|
-
|
1996
|
-
class Affiliate < Stripe::RequestParams
|
1997
|
-
# The name of the affiliate that originated the purchase.
|
1998
|
-
attr_accessor :name
|
1999
|
-
|
2000
|
-
def initialize(name: nil)
|
2001
|
-
@name = name
|
2002
|
-
end
|
2003
|
-
end
|
2004
|
-
|
2005
|
-
class Delivery < Stripe::RequestParams
|
2006
|
-
class Recipient < Stripe::RequestParams
|
2007
|
-
# The email of the recipient the ticket is delivered to.
|
2008
|
-
attr_accessor :email
|
2009
|
-
# The name of the recipient the ticket is delivered to.
|
2010
|
-
attr_accessor :name
|
2011
|
-
# The phone number of the recipient the ticket is delivered to.
|
2012
|
-
attr_accessor :phone
|
2013
|
-
|
2014
|
-
def initialize(email: nil, name: nil, phone: nil)
|
2015
|
-
@email = email
|
2016
|
-
@name = name
|
2017
|
-
@phone = phone
|
2018
|
-
end
|
2019
|
-
end
|
2020
|
-
# The delivery method for the payment
|
2021
|
-
attr_accessor :mode
|
2022
|
-
# Details of the recipient.
|
2023
|
-
attr_accessor :recipient
|
2024
|
-
|
2025
|
-
def initialize(mode: nil, recipient: nil)
|
2026
|
-
@mode = mode
|
2027
|
-
@recipient = recipient
|
2028
|
-
end
|
2029
|
-
end
|
2030
|
-
|
2031
|
-
class Passenger < Stripe::RequestParams
|
2032
|
-
# Full name of the person or entity on the lodging reservation.
|
2033
|
-
attr_accessor :name
|
2034
|
-
|
2035
|
-
def initialize(name: nil)
|
2036
|
-
@name = name
|
2037
|
-
end
|
2038
|
-
end
|
2039
|
-
# The lodging location's address.
|
2040
|
-
attr_accessor :address
|
2041
|
-
# The number of adults on the booking
|
2042
|
-
attr_accessor :adults
|
2043
|
-
# Affiliate details for this purchase.
|
2044
|
-
attr_accessor :affiliate
|
2045
|
-
# The booking number associated with the lodging reservation.
|
2046
|
-
attr_accessor :booking_number
|
2047
|
-
# The lodging category
|
2048
|
-
attr_accessor :category
|
2049
|
-
# Lodging check-in time. Measured in seconds since the Unix epoch.
|
2050
|
-
attr_accessor :checkin_at
|
2051
|
-
# Lodging check-out time. Measured in seconds since the Unix epoch.
|
2052
|
-
attr_accessor :checkout_at
|
2053
|
-
# The customer service phone number of the lodging company.
|
2054
|
-
attr_accessor :customer_service_phone_number
|
2055
|
-
# The daily lodging room rate.
|
2056
|
-
attr_accessor :daily_room_rate_amount
|
2057
|
-
# Delivery details for this purchase.
|
2058
|
-
attr_accessor :delivery
|
2059
|
-
# List of additional charges being billed.
|
2060
|
-
attr_accessor :extra_charges
|
2061
|
-
# Indicates whether the lodging location is compliant with the Fire Safety Act.
|
2062
|
-
attr_accessor :fire_safety_act_compliance
|
2063
|
-
# The name of the lodging location.
|
2064
|
-
attr_accessor :name
|
2065
|
-
# Indicates if the customer did not keep their booking while failing to cancel the reservation.
|
2066
|
-
attr_accessor :no_show
|
2067
|
-
# The number of rooms on the booking
|
2068
|
-
attr_accessor :number_of_rooms
|
2069
|
-
# The details of the passengers in the travel reservation
|
2070
|
-
attr_accessor :passengers
|
2071
|
-
# The phone number of the lodging location.
|
2072
|
-
attr_accessor :property_phone_number
|
2073
|
-
# The room class for this purchase.
|
2074
|
-
attr_accessor :room_class
|
2075
|
-
# The number of room nights
|
2076
|
-
attr_accessor :room_nights
|
2077
|
-
# The total tax amount associating with the room reservation.
|
2078
|
-
attr_accessor :total_room_tax_amount
|
2079
|
-
# The total tax amount
|
2080
|
-
attr_accessor :total_tax_amount
|
2081
|
-
|
2082
|
-
def initialize(
|
2083
|
-
address: nil,
|
2084
|
-
adults: nil,
|
2085
|
-
affiliate: nil,
|
2086
|
-
booking_number: nil,
|
2087
|
-
category: nil,
|
2088
|
-
checkin_at: nil,
|
2089
|
-
checkout_at: nil,
|
2090
|
-
customer_service_phone_number: nil,
|
2091
|
-
daily_room_rate_amount: nil,
|
2092
|
-
delivery: nil,
|
2093
|
-
extra_charges: nil,
|
2094
|
-
fire_safety_act_compliance: nil,
|
2095
|
-
name: nil,
|
2096
|
-
no_show: nil,
|
2097
|
-
number_of_rooms: nil,
|
2098
|
-
passengers: nil,
|
2099
|
-
property_phone_number: nil,
|
2100
|
-
room_class: nil,
|
2101
|
-
room_nights: nil,
|
2102
|
-
total_room_tax_amount: nil,
|
2103
|
-
total_tax_amount: nil
|
2104
|
-
)
|
2105
|
-
@address = address
|
2106
|
-
@adults = adults
|
2107
|
-
@affiliate = affiliate
|
2108
|
-
@booking_number = booking_number
|
2109
|
-
@category = category
|
2110
|
-
@checkin_at = checkin_at
|
2111
|
-
@checkout_at = checkout_at
|
2112
|
-
@customer_service_phone_number = customer_service_phone_number
|
2113
|
-
@daily_room_rate_amount = daily_room_rate_amount
|
2114
|
-
@delivery = delivery
|
2115
|
-
@extra_charges = extra_charges
|
2116
|
-
@fire_safety_act_compliance = fire_safety_act_compliance
|
2117
|
-
@name = name
|
2118
|
-
@no_show = no_show
|
2119
|
-
@number_of_rooms = number_of_rooms
|
2120
|
-
@passengers = passengers
|
2121
|
-
@property_phone_number = property_phone_number
|
2122
|
-
@room_class = room_class
|
2123
|
-
@room_nights = room_nights
|
2124
|
-
@total_room_tax_amount = total_room_tax_amount
|
2125
|
-
@total_tax_amount = total_tax_amount
|
2126
|
-
end
|
2127
|
-
end
|
2128
|
-
|
2129
|
-
class Subscription < Stripe::RequestParams
|
2130
|
-
class Affiliate < Stripe::RequestParams
|
2131
|
-
# The name of the affiliate that originated the purchase.
|
2132
|
-
attr_accessor :name
|
2133
|
-
|
2134
|
-
def initialize(name: nil)
|
2135
|
-
@name = name
|
2136
|
-
end
|
2137
|
-
end
|
2138
|
-
|
2139
|
-
class BillingInterval < Stripe::RequestParams
|
2140
|
-
# The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
|
2141
|
-
attr_accessor :count
|
2142
|
-
# Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
|
2143
|
-
attr_accessor :interval
|
2144
|
-
|
2145
|
-
def initialize(count: nil, interval: nil)
|
2146
|
-
@count = count
|
2147
|
-
@interval = interval
|
2148
|
-
end
|
2149
|
-
end
|
2150
|
-
# Affiliate details for this purchase.
|
2151
|
-
attr_accessor :affiliate
|
2152
|
-
# Info whether the subscription will be auto renewed upon expiry.
|
2153
|
-
attr_accessor :auto_renewal
|
2154
|
-
# Subscription billing details for this purchase.
|
2155
|
-
attr_accessor :billing_interval
|
2156
|
-
# Subscription end time. Measured in seconds since the Unix epoch.
|
2157
|
-
attr_accessor :ends_at
|
2158
|
-
# Name of the product on subscription. e.g. Apple Music Subscription
|
2159
|
-
attr_accessor :name
|
2160
|
-
# Subscription start time. Measured in seconds since the Unix epoch.
|
2161
|
-
attr_accessor :starts_at
|
2162
|
-
|
2163
|
-
def initialize(
|
2164
|
-
affiliate: nil,
|
2165
|
-
auto_renewal: nil,
|
2166
|
-
billing_interval: nil,
|
2167
|
-
ends_at: nil,
|
2168
|
-
name: nil,
|
2169
|
-
starts_at: nil
|
2170
|
-
)
|
2171
|
-
@affiliate = affiliate
|
2172
|
-
@auto_renewal = auto_renewal
|
2173
|
-
@billing_interval = billing_interval
|
2174
|
-
@ends_at = ends_at
|
2175
|
-
@name = name
|
2176
|
-
@starts_at = starts_at
|
2177
|
-
end
|
2178
|
-
end
|
2179
|
-
# Car rental details for this PaymentIntent.
|
2180
|
-
attr_accessor :car_rental
|
2181
|
-
# Some customers might be required by their company or organization to provide this information. If so, provide this value. Otherwise you can ignore this field.
|
2182
|
-
attr_accessor :customer_reference
|
2183
|
-
# Event details for this PaymentIntent
|
2184
|
-
attr_accessor :event_details
|
2185
|
-
# Flight reservation details for this PaymentIntent
|
2186
|
-
attr_accessor :flight
|
2187
|
-
# Lodging reservation details for this PaymentIntent
|
2188
|
-
attr_accessor :lodging
|
2189
|
-
# A unique value assigned by the business to identify the transaction.
|
2190
|
-
attr_accessor :order_reference
|
2191
|
-
# Subscription details for this PaymentIntent
|
2192
|
-
attr_accessor :subscription
|
2193
|
-
|
2194
|
-
def initialize(
|
2195
|
-
car_rental: nil,
|
2196
|
-
customer_reference: nil,
|
2197
|
-
event_details: nil,
|
2198
|
-
flight: nil,
|
2199
|
-
lodging: nil,
|
2200
|
-
order_reference: nil,
|
2201
|
-
subscription: nil
|
2202
|
-
)
|
2203
|
-
@car_rental = car_rental
|
2204
|
-
@customer_reference = customer_reference
|
2205
|
-
@event_details = event_details
|
2206
|
-
@flight = flight
|
2207
|
-
@lodging = lodging
|
2208
|
-
@order_reference = order_reference
|
2209
|
-
@subscription = subscription
|
2210
|
-
end
|
2211
|
-
end
|
2212
|
-
|
2213
1401
|
class Shipping < Stripe::RequestParams
|
2214
1402
|
class Address < Stripe::RequestParams
|
2215
1403
|
# City, district, suburb, town, or village.
|
@@ -2270,8 +1458,6 @@ module Stripe
|
|
2270
1458
|
attr_accessor :fraud_details
|
2271
1459
|
# 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`.
|
2272
1460
|
attr_accessor :metadata
|
2273
|
-
# Provides industry-specific information about the charge.
|
2274
|
-
attr_accessor :payment_details
|
2275
1461
|
# This is the email address that the receipt for this charge will be sent to. If this field is updated, then a new email receipt will be sent to the updated address.
|
2276
1462
|
attr_accessor :receipt_email
|
2277
1463
|
# Shipping information for the charge. Helps prevent fraud on charges for physical goods.
|
@@ -2285,7 +1471,6 @@ module Stripe
|
|
2285
1471
|
expand: nil,
|
2286
1472
|
fraud_details: nil,
|
2287
1473
|
metadata: nil,
|
2288
|
-
payment_details: nil,
|
2289
1474
|
receipt_email: nil,
|
2290
1475
|
shipping: nil,
|
2291
1476
|
transfer_group: nil
|
@@ -2295,7 +1480,6 @@ module Stripe
|
|
2295
1480
|
@expand = expand
|
2296
1481
|
@fraud_details = fraud_details
|
2297
1482
|
@metadata = metadata
|
2298
|
-
@payment_details = payment_details
|
2299
1483
|
@receipt_email = receipt_email
|
2300
1484
|
@shipping = shipping
|
2301
1485
|
@transfer_group = transfer_group
|
@@ -2321,711 +1505,6 @@ module Stripe
|
|
2321
1505
|
end
|
2322
1506
|
|
2323
1507
|
class CaptureParams < Stripe::RequestParams
|
2324
|
-
class PaymentDetails < Stripe::RequestParams
|
2325
|
-
class CarRental < Stripe::RequestParams
|
2326
|
-
class Affiliate < Stripe::RequestParams
|
2327
|
-
# The name of the affiliate that originated the purchase.
|
2328
|
-
attr_accessor :name
|
2329
|
-
|
2330
|
-
def initialize(name: nil)
|
2331
|
-
@name = name
|
2332
|
-
end
|
2333
|
-
end
|
2334
|
-
|
2335
|
-
class Delivery < Stripe::RequestParams
|
2336
|
-
class Recipient < Stripe::RequestParams
|
2337
|
-
# The email of the recipient the ticket is delivered to.
|
2338
|
-
attr_accessor :email
|
2339
|
-
# The name of the recipient the ticket is delivered to.
|
2340
|
-
attr_accessor :name
|
2341
|
-
# The phone number of the recipient the ticket is delivered to.
|
2342
|
-
attr_accessor :phone
|
2343
|
-
|
2344
|
-
def initialize(email: nil, name: nil, phone: nil)
|
2345
|
-
@email = email
|
2346
|
-
@name = name
|
2347
|
-
@phone = phone
|
2348
|
-
end
|
2349
|
-
end
|
2350
|
-
# The delivery method for the payment
|
2351
|
-
attr_accessor :mode
|
2352
|
-
# Details of the recipient.
|
2353
|
-
attr_accessor :recipient
|
2354
|
-
|
2355
|
-
def initialize(mode: nil, recipient: nil)
|
2356
|
-
@mode = mode
|
2357
|
-
@recipient = recipient
|
2358
|
-
end
|
2359
|
-
end
|
2360
|
-
|
2361
|
-
class Distance < Stripe::RequestParams
|
2362
|
-
# Distance traveled.
|
2363
|
-
attr_accessor :amount
|
2364
|
-
# Unit of measurement for the distance traveled. One of `miles` or `kilometers`.
|
2365
|
-
attr_accessor :unit
|
2366
|
-
|
2367
|
-
def initialize(amount: nil, unit: nil)
|
2368
|
-
@amount = amount
|
2369
|
-
@unit = unit
|
2370
|
-
end
|
2371
|
-
end
|
2372
|
-
|
2373
|
-
class Driver < Stripe::RequestParams
|
2374
|
-
# Driver's identification number.
|
2375
|
-
attr_accessor :driver_identification_number
|
2376
|
-
# Driver's tax number.
|
2377
|
-
attr_accessor :driver_tax_number
|
2378
|
-
# Full name of the person or entity on the car reservation.
|
2379
|
-
attr_accessor :name
|
2380
|
-
|
2381
|
-
def initialize(driver_identification_number: nil, driver_tax_number: nil, name: nil)
|
2382
|
-
@driver_identification_number = driver_identification_number
|
2383
|
-
@driver_tax_number = driver_tax_number
|
2384
|
-
@name = name
|
2385
|
-
end
|
2386
|
-
end
|
2387
|
-
|
2388
|
-
class PickupAddress < Stripe::RequestParams
|
2389
|
-
# City, district, suburb, town, or village.
|
2390
|
-
attr_accessor :city
|
2391
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
2392
|
-
attr_accessor :country
|
2393
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
2394
|
-
attr_accessor :line1
|
2395
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
2396
|
-
attr_accessor :line2
|
2397
|
-
# ZIP or postal code.
|
2398
|
-
attr_accessor :postal_code
|
2399
|
-
# State, county, province, or region.
|
2400
|
-
attr_accessor :state
|
2401
|
-
|
2402
|
-
def initialize(
|
2403
|
-
city: nil,
|
2404
|
-
country: nil,
|
2405
|
-
line1: nil,
|
2406
|
-
line2: nil,
|
2407
|
-
postal_code: nil,
|
2408
|
-
state: nil
|
2409
|
-
)
|
2410
|
-
@city = city
|
2411
|
-
@country = country
|
2412
|
-
@line1 = line1
|
2413
|
-
@line2 = line2
|
2414
|
-
@postal_code = postal_code
|
2415
|
-
@state = state
|
2416
|
-
end
|
2417
|
-
end
|
2418
|
-
|
2419
|
-
class ReturnAddress < Stripe::RequestParams
|
2420
|
-
# City, district, suburb, town, or village.
|
2421
|
-
attr_accessor :city
|
2422
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
2423
|
-
attr_accessor :country
|
2424
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
2425
|
-
attr_accessor :line1
|
2426
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
2427
|
-
attr_accessor :line2
|
2428
|
-
# ZIP or postal code.
|
2429
|
-
attr_accessor :postal_code
|
2430
|
-
# State, county, province, or region.
|
2431
|
-
attr_accessor :state
|
2432
|
-
|
2433
|
-
def initialize(
|
2434
|
-
city: nil,
|
2435
|
-
country: nil,
|
2436
|
-
line1: nil,
|
2437
|
-
line2: nil,
|
2438
|
-
postal_code: nil,
|
2439
|
-
state: nil
|
2440
|
-
)
|
2441
|
-
@city = city
|
2442
|
-
@country = country
|
2443
|
-
@line1 = line1
|
2444
|
-
@line2 = line2
|
2445
|
-
@postal_code = postal_code
|
2446
|
-
@state = state
|
2447
|
-
end
|
2448
|
-
end
|
2449
|
-
# Affiliate details for this purchase.
|
2450
|
-
attr_accessor :affiliate
|
2451
|
-
# The booking number associated with the car rental.
|
2452
|
-
attr_accessor :booking_number
|
2453
|
-
# Class code of the car.
|
2454
|
-
attr_accessor :car_class_code
|
2455
|
-
# Make of the car.
|
2456
|
-
attr_accessor :car_make
|
2457
|
-
# Model of the car.
|
2458
|
-
attr_accessor :car_model
|
2459
|
-
# The name of the rental car company.
|
2460
|
-
attr_accessor :company
|
2461
|
-
# The customer service phone number of the car rental company.
|
2462
|
-
attr_accessor :customer_service_phone_number
|
2463
|
-
# Number of days the car is being rented.
|
2464
|
-
attr_accessor :days_rented
|
2465
|
-
# Delivery details for this purchase.
|
2466
|
-
attr_accessor :delivery
|
2467
|
-
# The details of the distance traveled during the rental period.
|
2468
|
-
attr_accessor :distance
|
2469
|
-
# The details of the passengers in the travel reservation
|
2470
|
-
attr_accessor :drivers
|
2471
|
-
# List of additional charges being billed.
|
2472
|
-
attr_accessor :extra_charges
|
2473
|
-
# Indicates if the customer did not keep nor cancel their booking.
|
2474
|
-
attr_accessor :no_show
|
2475
|
-
# Car pick-up address.
|
2476
|
-
attr_accessor :pickup_address
|
2477
|
-
# Car pick-up time. Measured in seconds since the Unix epoch.
|
2478
|
-
attr_accessor :pickup_at
|
2479
|
-
# Name of the pickup location.
|
2480
|
-
attr_accessor :pickup_location_name
|
2481
|
-
# Rental rate.
|
2482
|
-
attr_accessor :rate_amount
|
2483
|
-
# The frequency at which the rate amount is applied. One of `day`, `week` or `month`
|
2484
|
-
attr_accessor :rate_interval
|
2485
|
-
# The name of the person or entity renting the car.
|
2486
|
-
attr_accessor :renter_name
|
2487
|
-
# Car return address.
|
2488
|
-
attr_accessor :return_address
|
2489
|
-
# Car return time. Measured in seconds since the Unix epoch.
|
2490
|
-
attr_accessor :return_at
|
2491
|
-
# Name of the return location.
|
2492
|
-
attr_accessor :return_location_name
|
2493
|
-
# Indicates whether the goods or services are tax-exempt or tax is not collected.
|
2494
|
-
attr_accessor :tax_exempt
|
2495
|
-
# The vehicle identification number.
|
2496
|
-
attr_accessor :vehicle_identification_number
|
2497
|
-
|
2498
|
-
def initialize(
|
2499
|
-
affiliate: nil,
|
2500
|
-
booking_number: nil,
|
2501
|
-
car_class_code: nil,
|
2502
|
-
car_make: nil,
|
2503
|
-
car_model: nil,
|
2504
|
-
company: nil,
|
2505
|
-
customer_service_phone_number: nil,
|
2506
|
-
days_rented: nil,
|
2507
|
-
delivery: nil,
|
2508
|
-
distance: nil,
|
2509
|
-
drivers: nil,
|
2510
|
-
extra_charges: nil,
|
2511
|
-
no_show: nil,
|
2512
|
-
pickup_address: nil,
|
2513
|
-
pickup_at: nil,
|
2514
|
-
pickup_location_name: nil,
|
2515
|
-
rate_amount: nil,
|
2516
|
-
rate_interval: nil,
|
2517
|
-
renter_name: nil,
|
2518
|
-
return_address: nil,
|
2519
|
-
return_at: nil,
|
2520
|
-
return_location_name: nil,
|
2521
|
-
tax_exempt: nil,
|
2522
|
-
vehicle_identification_number: nil
|
2523
|
-
)
|
2524
|
-
@affiliate = affiliate
|
2525
|
-
@booking_number = booking_number
|
2526
|
-
@car_class_code = car_class_code
|
2527
|
-
@car_make = car_make
|
2528
|
-
@car_model = car_model
|
2529
|
-
@company = company
|
2530
|
-
@customer_service_phone_number = customer_service_phone_number
|
2531
|
-
@days_rented = days_rented
|
2532
|
-
@delivery = delivery
|
2533
|
-
@distance = distance
|
2534
|
-
@drivers = drivers
|
2535
|
-
@extra_charges = extra_charges
|
2536
|
-
@no_show = no_show
|
2537
|
-
@pickup_address = pickup_address
|
2538
|
-
@pickup_at = pickup_at
|
2539
|
-
@pickup_location_name = pickup_location_name
|
2540
|
-
@rate_amount = rate_amount
|
2541
|
-
@rate_interval = rate_interval
|
2542
|
-
@renter_name = renter_name
|
2543
|
-
@return_address = return_address
|
2544
|
-
@return_at = return_at
|
2545
|
-
@return_location_name = return_location_name
|
2546
|
-
@tax_exempt = tax_exempt
|
2547
|
-
@vehicle_identification_number = vehicle_identification_number
|
2548
|
-
end
|
2549
|
-
end
|
2550
|
-
|
2551
|
-
class EventDetails < Stripe::RequestParams
|
2552
|
-
class Address < Stripe::RequestParams
|
2553
|
-
# City, district, suburb, town, or village.
|
2554
|
-
attr_accessor :city
|
2555
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
2556
|
-
attr_accessor :country
|
2557
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
2558
|
-
attr_accessor :line1
|
2559
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
2560
|
-
attr_accessor :line2
|
2561
|
-
# ZIP or postal code.
|
2562
|
-
attr_accessor :postal_code
|
2563
|
-
# State, county, province, or region.
|
2564
|
-
attr_accessor :state
|
2565
|
-
|
2566
|
-
def initialize(
|
2567
|
-
city: nil,
|
2568
|
-
country: nil,
|
2569
|
-
line1: nil,
|
2570
|
-
line2: nil,
|
2571
|
-
postal_code: nil,
|
2572
|
-
state: nil
|
2573
|
-
)
|
2574
|
-
@city = city
|
2575
|
-
@country = country
|
2576
|
-
@line1 = line1
|
2577
|
-
@line2 = line2
|
2578
|
-
@postal_code = postal_code
|
2579
|
-
@state = state
|
2580
|
-
end
|
2581
|
-
end
|
2582
|
-
|
2583
|
-
class Affiliate < Stripe::RequestParams
|
2584
|
-
# The name of the affiliate that originated the purchase.
|
2585
|
-
attr_accessor :name
|
2586
|
-
|
2587
|
-
def initialize(name: nil)
|
2588
|
-
@name = name
|
2589
|
-
end
|
2590
|
-
end
|
2591
|
-
|
2592
|
-
class Delivery < Stripe::RequestParams
|
2593
|
-
class Recipient < Stripe::RequestParams
|
2594
|
-
# The email of the recipient the ticket is delivered to.
|
2595
|
-
attr_accessor :email
|
2596
|
-
# The name of the recipient the ticket is delivered to.
|
2597
|
-
attr_accessor :name
|
2598
|
-
# The phone number of the recipient the ticket is delivered to.
|
2599
|
-
attr_accessor :phone
|
2600
|
-
|
2601
|
-
def initialize(email: nil, name: nil, phone: nil)
|
2602
|
-
@email = email
|
2603
|
-
@name = name
|
2604
|
-
@phone = phone
|
2605
|
-
end
|
2606
|
-
end
|
2607
|
-
# The delivery method for the payment
|
2608
|
-
attr_accessor :mode
|
2609
|
-
# Details of the recipient.
|
2610
|
-
attr_accessor :recipient
|
2611
|
-
|
2612
|
-
def initialize(mode: nil, recipient: nil)
|
2613
|
-
@mode = mode
|
2614
|
-
@recipient = recipient
|
2615
|
-
end
|
2616
|
-
end
|
2617
|
-
# Indicates if the tickets are digitally checked when entering the venue.
|
2618
|
-
attr_accessor :access_controlled_venue
|
2619
|
-
# The event location's address.
|
2620
|
-
attr_accessor :address
|
2621
|
-
# Affiliate details for this purchase.
|
2622
|
-
attr_accessor :affiliate
|
2623
|
-
# The name of the company
|
2624
|
-
attr_accessor :company
|
2625
|
-
# Delivery details for this purchase.
|
2626
|
-
attr_accessor :delivery
|
2627
|
-
# Event end time. Measured in seconds since the Unix epoch.
|
2628
|
-
attr_accessor :ends_at
|
2629
|
-
# Type of the event entertainment (concert, sports event etc)
|
2630
|
-
attr_accessor :genre
|
2631
|
-
# The name of the event.
|
2632
|
-
attr_accessor :name
|
2633
|
-
# Event start time. Measured in seconds since the Unix epoch.
|
2634
|
-
attr_accessor :starts_at
|
2635
|
-
|
2636
|
-
def initialize(
|
2637
|
-
access_controlled_venue: nil,
|
2638
|
-
address: nil,
|
2639
|
-
affiliate: nil,
|
2640
|
-
company: nil,
|
2641
|
-
delivery: nil,
|
2642
|
-
ends_at: nil,
|
2643
|
-
genre: nil,
|
2644
|
-
name: nil,
|
2645
|
-
starts_at: nil
|
2646
|
-
)
|
2647
|
-
@access_controlled_venue = access_controlled_venue
|
2648
|
-
@address = address
|
2649
|
-
@affiliate = affiliate
|
2650
|
-
@company = company
|
2651
|
-
@delivery = delivery
|
2652
|
-
@ends_at = ends_at
|
2653
|
-
@genre = genre
|
2654
|
-
@name = name
|
2655
|
-
@starts_at = starts_at
|
2656
|
-
end
|
2657
|
-
end
|
2658
|
-
|
2659
|
-
class Flight < Stripe::RequestParams
|
2660
|
-
class Affiliate < Stripe::RequestParams
|
2661
|
-
# The name of the affiliate that originated the purchase.
|
2662
|
-
attr_accessor :name
|
2663
|
-
|
2664
|
-
def initialize(name: nil)
|
2665
|
-
@name = name
|
2666
|
-
end
|
2667
|
-
end
|
2668
|
-
|
2669
|
-
class Delivery < Stripe::RequestParams
|
2670
|
-
class Recipient < Stripe::RequestParams
|
2671
|
-
# The email of the recipient the ticket is delivered to.
|
2672
|
-
attr_accessor :email
|
2673
|
-
# The name of the recipient the ticket is delivered to.
|
2674
|
-
attr_accessor :name
|
2675
|
-
# The phone number of the recipient the ticket is delivered to.
|
2676
|
-
attr_accessor :phone
|
2677
|
-
|
2678
|
-
def initialize(email: nil, name: nil, phone: nil)
|
2679
|
-
@email = email
|
2680
|
-
@name = name
|
2681
|
-
@phone = phone
|
2682
|
-
end
|
2683
|
-
end
|
2684
|
-
# The delivery method for the payment
|
2685
|
-
attr_accessor :mode
|
2686
|
-
# Details of the recipient.
|
2687
|
-
attr_accessor :recipient
|
2688
|
-
|
2689
|
-
def initialize(mode: nil, recipient: nil)
|
2690
|
-
@mode = mode
|
2691
|
-
@recipient = recipient
|
2692
|
-
end
|
2693
|
-
end
|
2694
|
-
|
2695
|
-
class Passenger < Stripe::RequestParams
|
2696
|
-
# Full name of the person or entity on the flight reservation.
|
2697
|
-
attr_accessor :name
|
2698
|
-
|
2699
|
-
def initialize(name: nil)
|
2700
|
-
@name = name
|
2701
|
-
end
|
2702
|
-
end
|
2703
|
-
|
2704
|
-
class Segment < Stripe::RequestParams
|
2705
|
-
# The flight segment amount.
|
2706
|
-
attr_accessor :amount
|
2707
|
-
# The International Air Transport Association (IATA) airport code for the arrival airport.
|
2708
|
-
attr_accessor :arrival_airport
|
2709
|
-
# The arrival time for the flight segment. Measured in seconds since the Unix epoch.
|
2710
|
-
attr_accessor :arrives_at
|
2711
|
-
# The International Air Transport Association (IATA) carrier code of the carrier operating the flight segment.
|
2712
|
-
attr_accessor :carrier
|
2713
|
-
# The departure time for the flight segment. Measured in seconds since the Unix epoch.
|
2714
|
-
attr_accessor :departs_at
|
2715
|
-
# The International Air Transport Association (IATA) airport code for the departure airport.
|
2716
|
-
attr_accessor :departure_airport
|
2717
|
-
# The flight number associated with the segment
|
2718
|
-
attr_accessor :flight_number
|
2719
|
-
# The fare class for the segment.
|
2720
|
-
attr_accessor :service_class
|
2721
|
-
|
2722
|
-
def initialize(
|
2723
|
-
amount: nil,
|
2724
|
-
arrival_airport: nil,
|
2725
|
-
arrives_at: nil,
|
2726
|
-
carrier: nil,
|
2727
|
-
departs_at: nil,
|
2728
|
-
departure_airport: nil,
|
2729
|
-
flight_number: nil,
|
2730
|
-
service_class: nil
|
2731
|
-
)
|
2732
|
-
@amount = amount
|
2733
|
-
@arrival_airport = arrival_airport
|
2734
|
-
@arrives_at = arrives_at
|
2735
|
-
@carrier = carrier
|
2736
|
-
@departs_at = departs_at
|
2737
|
-
@departure_airport = departure_airport
|
2738
|
-
@flight_number = flight_number
|
2739
|
-
@service_class = service_class
|
2740
|
-
end
|
2741
|
-
end
|
2742
|
-
# Affiliate details for this purchase.
|
2743
|
-
attr_accessor :affiliate
|
2744
|
-
# The agency number (i.e. International Air Transport Association (IATA) agency number) of the travel agency that made the booking.
|
2745
|
-
attr_accessor :agency_number
|
2746
|
-
# The International Air Transport Association (IATA) carrier code of the carrier that issued the ticket.
|
2747
|
-
attr_accessor :carrier
|
2748
|
-
# Delivery details for this purchase.
|
2749
|
-
attr_accessor :delivery
|
2750
|
-
# The name of the person or entity on the reservation.
|
2751
|
-
attr_accessor :passenger_name
|
2752
|
-
# The details of the passengers in the travel reservation.
|
2753
|
-
attr_accessor :passengers
|
2754
|
-
# The individual flight segments associated with the trip.
|
2755
|
-
attr_accessor :segments
|
2756
|
-
# The ticket number associated with the travel reservation.
|
2757
|
-
attr_accessor :ticket_number
|
2758
|
-
|
2759
|
-
def initialize(
|
2760
|
-
affiliate: nil,
|
2761
|
-
agency_number: nil,
|
2762
|
-
carrier: nil,
|
2763
|
-
delivery: nil,
|
2764
|
-
passenger_name: nil,
|
2765
|
-
passengers: nil,
|
2766
|
-
segments: nil,
|
2767
|
-
ticket_number: nil
|
2768
|
-
)
|
2769
|
-
@affiliate = affiliate
|
2770
|
-
@agency_number = agency_number
|
2771
|
-
@carrier = carrier
|
2772
|
-
@delivery = delivery
|
2773
|
-
@passenger_name = passenger_name
|
2774
|
-
@passengers = passengers
|
2775
|
-
@segments = segments
|
2776
|
-
@ticket_number = ticket_number
|
2777
|
-
end
|
2778
|
-
end
|
2779
|
-
|
2780
|
-
class Lodging < Stripe::RequestParams
|
2781
|
-
class Address < Stripe::RequestParams
|
2782
|
-
# City, district, suburb, town, or village.
|
2783
|
-
attr_accessor :city
|
2784
|
-
# Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
|
2785
|
-
attr_accessor :country
|
2786
|
-
# Address line 1 (e.g., street, PO Box, or company name).
|
2787
|
-
attr_accessor :line1
|
2788
|
-
# Address line 2 (e.g., apartment, suite, unit, or building).
|
2789
|
-
attr_accessor :line2
|
2790
|
-
# ZIP or postal code.
|
2791
|
-
attr_accessor :postal_code
|
2792
|
-
# State, county, province, or region.
|
2793
|
-
attr_accessor :state
|
2794
|
-
|
2795
|
-
def initialize(
|
2796
|
-
city: nil,
|
2797
|
-
country: nil,
|
2798
|
-
line1: nil,
|
2799
|
-
line2: nil,
|
2800
|
-
postal_code: nil,
|
2801
|
-
state: nil
|
2802
|
-
)
|
2803
|
-
@city = city
|
2804
|
-
@country = country
|
2805
|
-
@line1 = line1
|
2806
|
-
@line2 = line2
|
2807
|
-
@postal_code = postal_code
|
2808
|
-
@state = state
|
2809
|
-
end
|
2810
|
-
end
|
2811
|
-
|
2812
|
-
class Affiliate < Stripe::RequestParams
|
2813
|
-
# The name of the affiliate that originated the purchase.
|
2814
|
-
attr_accessor :name
|
2815
|
-
|
2816
|
-
def initialize(name: nil)
|
2817
|
-
@name = name
|
2818
|
-
end
|
2819
|
-
end
|
2820
|
-
|
2821
|
-
class Delivery < Stripe::RequestParams
|
2822
|
-
class Recipient < Stripe::RequestParams
|
2823
|
-
# The email of the recipient the ticket is delivered to.
|
2824
|
-
attr_accessor :email
|
2825
|
-
# The name of the recipient the ticket is delivered to.
|
2826
|
-
attr_accessor :name
|
2827
|
-
# The phone number of the recipient the ticket is delivered to.
|
2828
|
-
attr_accessor :phone
|
2829
|
-
|
2830
|
-
def initialize(email: nil, name: nil, phone: nil)
|
2831
|
-
@email = email
|
2832
|
-
@name = name
|
2833
|
-
@phone = phone
|
2834
|
-
end
|
2835
|
-
end
|
2836
|
-
# The delivery method for the payment
|
2837
|
-
attr_accessor :mode
|
2838
|
-
# Details of the recipient.
|
2839
|
-
attr_accessor :recipient
|
2840
|
-
|
2841
|
-
def initialize(mode: nil, recipient: nil)
|
2842
|
-
@mode = mode
|
2843
|
-
@recipient = recipient
|
2844
|
-
end
|
2845
|
-
end
|
2846
|
-
|
2847
|
-
class Passenger < Stripe::RequestParams
|
2848
|
-
# Full name of the person or entity on the lodging reservation.
|
2849
|
-
attr_accessor :name
|
2850
|
-
|
2851
|
-
def initialize(name: nil)
|
2852
|
-
@name = name
|
2853
|
-
end
|
2854
|
-
end
|
2855
|
-
# The lodging location's address.
|
2856
|
-
attr_accessor :address
|
2857
|
-
# The number of adults on the booking
|
2858
|
-
attr_accessor :adults
|
2859
|
-
# Affiliate details for this purchase.
|
2860
|
-
attr_accessor :affiliate
|
2861
|
-
# The booking number associated with the lodging reservation.
|
2862
|
-
attr_accessor :booking_number
|
2863
|
-
# The lodging category
|
2864
|
-
attr_accessor :category
|
2865
|
-
# Lodging check-in time. Measured in seconds since the Unix epoch.
|
2866
|
-
attr_accessor :checkin_at
|
2867
|
-
# Lodging check-out time. Measured in seconds since the Unix epoch.
|
2868
|
-
attr_accessor :checkout_at
|
2869
|
-
# The customer service phone number of the lodging company.
|
2870
|
-
attr_accessor :customer_service_phone_number
|
2871
|
-
# The daily lodging room rate.
|
2872
|
-
attr_accessor :daily_room_rate_amount
|
2873
|
-
# Delivery details for this purchase.
|
2874
|
-
attr_accessor :delivery
|
2875
|
-
# List of additional charges being billed.
|
2876
|
-
attr_accessor :extra_charges
|
2877
|
-
# Indicates whether the lodging location is compliant with the Fire Safety Act.
|
2878
|
-
attr_accessor :fire_safety_act_compliance
|
2879
|
-
# The name of the lodging location.
|
2880
|
-
attr_accessor :name
|
2881
|
-
# Indicates if the customer did not keep their booking while failing to cancel the reservation.
|
2882
|
-
attr_accessor :no_show
|
2883
|
-
# The number of rooms on the booking
|
2884
|
-
attr_accessor :number_of_rooms
|
2885
|
-
# The details of the passengers in the travel reservation
|
2886
|
-
attr_accessor :passengers
|
2887
|
-
# The phone number of the lodging location.
|
2888
|
-
attr_accessor :property_phone_number
|
2889
|
-
# The room class for this purchase.
|
2890
|
-
attr_accessor :room_class
|
2891
|
-
# The number of room nights
|
2892
|
-
attr_accessor :room_nights
|
2893
|
-
# The total tax amount associating with the room reservation.
|
2894
|
-
attr_accessor :total_room_tax_amount
|
2895
|
-
# The total tax amount
|
2896
|
-
attr_accessor :total_tax_amount
|
2897
|
-
|
2898
|
-
def initialize(
|
2899
|
-
address: nil,
|
2900
|
-
adults: nil,
|
2901
|
-
affiliate: nil,
|
2902
|
-
booking_number: nil,
|
2903
|
-
category: nil,
|
2904
|
-
checkin_at: nil,
|
2905
|
-
checkout_at: nil,
|
2906
|
-
customer_service_phone_number: nil,
|
2907
|
-
daily_room_rate_amount: nil,
|
2908
|
-
delivery: nil,
|
2909
|
-
extra_charges: nil,
|
2910
|
-
fire_safety_act_compliance: nil,
|
2911
|
-
name: nil,
|
2912
|
-
no_show: nil,
|
2913
|
-
number_of_rooms: nil,
|
2914
|
-
passengers: nil,
|
2915
|
-
property_phone_number: nil,
|
2916
|
-
room_class: nil,
|
2917
|
-
room_nights: nil,
|
2918
|
-
total_room_tax_amount: nil,
|
2919
|
-
total_tax_amount: nil
|
2920
|
-
)
|
2921
|
-
@address = address
|
2922
|
-
@adults = adults
|
2923
|
-
@affiliate = affiliate
|
2924
|
-
@booking_number = booking_number
|
2925
|
-
@category = category
|
2926
|
-
@checkin_at = checkin_at
|
2927
|
-
@checkout_at = checkout_at
|
2928
|
-
@customer_service_phone_number = customer_service_phone_number
|
2929
|
-
@daily_room_rate_amount = daily_room_rate_amount
|
2930
|
-
@delivery = delivery
|
2931
|
-
@extra_charges = extra_charges
|
2932
|
-
@fire_safety_act_compliance = fire_safety_act_compliance
|
2933
|
-
@name = name
|
2934
|
-
@no_show = no_show
|
2935
|
-
@number_of_rooms = number_of_rooms
|
2936
|
-
@passengers = passengers
|
2937
|
-
@property_phone_number = property_phone_number
|
2938
|
-
@room_class = room_class
|
2939
|
-
@room_nights = room_nights
|
2940
|
-
@total_room_tax_amount = total_room_tax_amount
|
2941
|
-
@total_tax_amount = total_tax_amount
|
2942
|
-
end
|
2943
|
-
end
|
2944
|
-
|
2945
|
-
class Subscription < Stripe::RequestParams
|
2946
|
-
class Affiliate < Stripe::RequestParams
|
2947
|
-
# The name of the affiliate that originated the purchase.
|
2948
|
-
attr_accessor :name
|
2949
|
-
|
2950
|
-
def initialize(name: nil)
|
2951
|
-
@name = name
|
2952
|
-
end
|
2953
|
-
end
|
2954
|
-
|
2955
|
-
class BillingInterval < Stripe::RequestParams
|
2956
|
-
# The number of intervals, as an whole number greater than 0. Stripe multiplies this by the interval type to get the overall duration.
|
2957
|
-
attr_accessor :count
|
2958
|
-
# Specifies a type of interval unit. Either `day`, `week`, `month` or `year`.
|
2959
|
-
attr_accessor :interval
|
2960
|
-
|
2961
|
-
def initialize(count: nil, interval: nil)
|
2962
|
-
@count = count
|
2963
|
-
@interval = interval
|
2964
|
-
end
|
2965
|
-
end
|
2966
|
-
# Affiliate details for this purchase.
|
2967
|
-
attr_accessor :affiliate
|
2968
|
-
# Info whether the subscription will be auto renewed upon expiry.
|
2969
|
-
attr_accessor :auto_renewal
|
2970
|
-
# Subscription billing details for this purchase.
|
2971
|
-
attr_accessor :billing_interval
|
2972
|
-
# Subscription end time. Measured in seconds since the Unix epoch.
|
2973
|
-
attr_accessor :ends_at
|
2974
|
-
# Name of the product on subscription. e.g. Apple Music Subscription
|
2975
|
-
attr_accessor :name
|
2976
|
-
# Subscription start time. Measured in seconds since the Unix epoch.
|
2977
|
-
attr_accessor :starts_at
|
2978
|
-
|
2979
|
-
def initialize(
|
2980
|
-
affiliate: nil,
|
2981
|
-
auto_renewal: nil,
|
2982
|
-
billing_interval: nil,
|
2983
|
-
ends_at: nil,
|
2984
|
-
name: nil,
|
2985
|
-
starts_at: nil
|
2986
|
-
)
|
2987
|
-
@affiliate = affiliate
|
2988
|
-
@auto_renewal = auto_renewal
|
2989
|
-
@billing_interval = billing_interval
|
2990
|
-
@ends_at = ends_at
|
2991
|
-
@name = name
|
2992
|
-
@starts_at = starts_at
|
2993
|
-
end
|
2994
|
-
end
|
2995
|
-
# Car rental details for this PaymentIntent.
|
2996
|
-
attr_accessor :car_rental
|
2997
|
-
# Some customers might be required by their company or organization to provide this information. If so, provide this value. Otherwise you can ignore this field.
|
2998
|
-
attr_accessor :customer_reference
|
2999
|
-
# Event details for this PaymentIntent
|
3000
|
-
attr_accessor :event_details
|
3001
|
-
# Flight reservation details for this PaymentIntent
|
3002
|
-
attr_accessor :flight
|
3003
|
-
# Lodging reservation details for this PaymentIntent
|
3004
|
-
attr_accessor :lodging
|
3005
|
-
# A unique value assigned by the business to identify the transaction.
|
3006
|
-
attr_accessor :order_reference
|
3007
|
-
# Subscription details for this PaymentIntent
|
3008
|
-
attr_accessor :subscription
|
3009
|
-
|
3010
|
-
def initialize(
|
3011
|
-
car_rental: nil,
|
3012
|
-
customer_reference: nil,
|
3013
|
-
event_details: nil,
|
3014
|
-
flight: nil,
|
3015
|
-
lodging: nil,
|
3016
|
-
order_reference: nil,
|
3017
|
-
subscription: nil
|
3018
|
-
)
|
3019
|
-
@car_rental = car_rental
|
3020
|
-
@customer_reference = customer_reference
|
3021
|
-
@event_details = event_details
|
3022
|
-
@flight = flight
|
3023
|
-
@lodging = lodging
|
3024
|
-
@order_reference = order_reference
|
3025
|
-
@subscription = subscription
|
3026
|
-
end
|
3027
|
-
end
|
3028
|
-
|
3029
1508
|
class TransferData < Stripe::RequestParams
|
3030
1509
|
# The amount transferred to the destination account, if specified. By default, the entire charge amount is transferred to the destination account.
|
3031
1510
|
attr_accessor :amount
|
@@ -3042,8 +1521,6 @@ module Stripe
|
|
3042
1521
|
attr_accessor :application_fee_amount
|
3043
1522
|
# Specifies which fields in the response should be expanded.
|
3044
1523
|
attr_accessor :expand
|
3045
|
-
# Provides industry-specific information about the charge.
|
3046
|
-
attr_accessor :payment_details
|
3047
1524
|
# The email address to send this charge's receipt to. This will override the previously-specified email address for this charge, if one was set. Receipts will not be sent in test mode.
|
3048
1525
|
attr_accessor :receipt_email
|
3049
1526
|
# For a non-card charge, text that appears on the customer's statement as the statement descriptor. This value overrides the account's default statement descriptor. For information about requirements, including the 22-character limit, see [the Statement Descriptor docs](https://docs.stripe.com/get-started/account/statement-descriptors).
|
@@ -3062,7 +1539,6 @@ module Stripe
|
|
3062
1539
|
application_fee: nil,
|
3063
1540
|
application_fee_amount: nil,
|
3064
1541
|
expand: nil,
|
3065
|
-
payment_details: nil,
|
3066
1542
|
receipt_email: nil,
|
3067
1543
|
statement_descriptor: nil,
|
3068
1544
|
statement_descriptor_suffix: nil,
|
@@ -3073,7 +1549,6 @@ module Stripe
|
|
3073
1549
|
@application_fee = application_fee
|
3074
1550
|
@application_fee_amount = application_fee_amount
|
3075
1551
|
@expand = expand
|
3076
|
-
@payment_details = payment_details
|
3077
1552
|
@receipt_email = receipt_email
|
3078
1553
|
@statement_descriptor = statement_descriptor
|
3079
1554
|
@statement_descriptor_suffix = statement_descriptor_suffix
|