stripe 13.5.0 → 14.0.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/CHANGELOG.md +33 -3
- data/Gemfile +4 -0
- data/OPENAPI_VERSION +1 -1
- data/README.md +29 -0
- data/VERSION +1 -1
- data/lib/stripe/api_operations/request.rb +1 -0
- data/lib/stripe/api_requestor.rb +3 -0
- data/lib/stripe/api_version.rb +1 -1
- data/lib/stripe/errors.rb +0 -7
- data/lib/stripe/object_types.rb +8 -2
- data/lib/stripe/request_params.rb +24 -0
- data/lib/stripe/resources/account.rb +4634 -0
- data/lib/stripe/resources/account_link.rb +54 -0
- data/lib/stripe/resources/account_session.rb +739 -0
- data/lib/stripe/resources/apple_pay_domain.rb +54 -0
- data/lib/stripe/resources/application.rb +20 -0
- data/lib/stripe/resources/application_fee.rb +87 -0
- data/lib/stripe/resources/application_fee_refund.rb +17 -0
- data/lib/stripe/resources/apps/secret.rb +141 -0
- data/lib/stripe/resources/balance.rb +122 -0
- data/lib/stripe/resources/balance_transaction.rb +103 -0
- data/lib/stripe/resources/bank_account.rb +84 -2
- data/lib/stripe/resources/billing/alert.rb +135 -0
- data/lib/stripe/resources/billing/alert_triggered.rb +26 -0
- data/lib/stripe/resources/billing/credit_balance_summary.rb +40 -0
- data/lib/stripe/resources/billing/credit_balance_transaction.rb +107 -0
- data/lib/stripe/resources/billing/credit_grant.rb +217 -0
- data/lib/stripe/resources/billing/meter.rb +169 -0
- data/lib/stripe/resources/billing/meter_event.rb +35 -0
- data/lib/stripe/resources/billing/meter_event_adjustment.rb +43 -0
- data/lib/stripe/resources/billing/meter_event_summary.rb +15 -0
- data/lib/stripe/resources/billing_portal/configuration.rb +553 -0
- data/lib/stripe/resources/billing_portal/session.rb +271 -0
- data/lib/stripe/resources/capability.rb +84 -0
- data/lib/stripe/resources/card.rb +77 -0
- data/lib/stripe/resources/cash_balance.rb +17 -0
- data/lib/stripe/resources/charge.rb +1612 -0
- data/lib/stripe/resources/checkout/session.rb +3530 -6
- data/lib/stripe/resources/climate/order.rb +167 -0
- data/lib/stripe/resources/climate/product.rb +47 -0
- data/lib/stripe/resources/climate/supplier.rb +45 -0
- data/lib/stripe/resources/confirmation_token.rb +1448 -0
- data/lib/stripe/resources/connect_collection_transfer.rb +24 -0
- data/lib/stripe/resources/country_spec.rb +54 -0
- data/lib/stripe/resources/coupon.rb +189 -0
- data/lib/stripe/resources/credit_note.rb +639 -0
- data/lib/stripe/resources/credit_note_line_item.rb +67 -0
- data/lib/stripe/resources/customer.rb +824 -0
- data/lib/stripe/resources/customer_balance_transaction.rb +29 -0
- data/lib/stripe/resources/customer_cash_balance_transaction.rb +109 -0
- data/lib/stripe/resources/customer_session.rb +159 -0
- data/lib/stripe/resources/discount.rb +29 -0
- data/lib/stripe/resources/dispute.rb +610 -0
- data/lib/stripe/resources/entitlements/active_entitlement.rb +37 -0
- data/lib/stripe/resources/entitlements/active_entitlement_summary.rb +23 -0
- data/lib/stripe/resources/entitlements/feature.rb +81 -0
- data/lib/stripe/resources/ephemeral_key.rb +21 -0
- data/lib/stripe/resources/event.rb +90 -0
- data/lib/stripe/resources/exchange_rate.rb +24 -0
- data/lib/stripe/resources/file.rb +102 -0
- data/lib/stripe/resources/file_link.rb +103 -0
- data/lib/stripe/resources/financial_connections/account.rb +237 -0
- data/lib/stripe/resources/financial_connections/account_owner.rb +17 -0
- data/lib/stripe/resources/financial_connections/account_ownership.rb +9 -0
- data/lib/stripe/resources/financial_connections/session.rb +95 -0
- data/lib/stripe/resources/financial_connections/transaction.rb +92 -0
- data/lib/stripe/resources/forwarding/request.rb +156 -0
- data/lib/stripe/resources/funding_instructions.rb +308 -0
- data/lib/stripe/resources/identity/verification_report.rb +257 -0
- data/lib/stripe/resources/identity/verification_session.rb +352 -0
- data/lib/stripe/resources/invoice.rb +3204 -21
- data/lib/stripe/resources/invoice_item.rb +400 -0
- data/lib/stripe/resources/invoice_line_item.rb +350 -0
- data/lib/stripe/resources/invoice_payment.rb +105 -0
- data/lib/stripe/resources/invoice_rendering_template.rb +55 -0
- data/lib/stripe/resources/issuing/authorization.rb +1104 -0
- data/lib/stripe/resources/issuing/card.rb +657 -0
- data/lib/stripe/resources/issuing/cardholder.rb +648 -0
- data/lib/stripe/resources/issuing/dispute.rb +781 -0
- data/lib/stripe/resources/issuing/personalization_design.rb +276 -0
- data/lib/stripe/resources/issuing/physical_bundle.rb +54 -0
- data/lib/stripe/resources/issuing/token.rb +166 -0
- data/lib/stripe/resources/issuing/transaction.rb +912 -0
- data/lib/stripe/resources/line_item.rb +47 -0
- data/lib/stripe/resources/login_link.rb +7 -0
- data/lib/stripe/resources/mandate.rb +142 -0
- data/lib/stripe/resources/payment_intent.rb +8650 -0
- data/lib/stripe/resources/payment_link.rb +1632 -0
- data/lib/stripe/resources/payment_method.rb +1542 -0
- data/lib/stripe/resources/payment_method_configuration.rb +2776 -0
- data/lib/stripe/resources/payment_method_domain.rb +150 -6
- data/lib/stripe/resources/payout.rb +209 -0
- data/lib/stripe/resources/person.rb +264 -1
- data/lib/stripe/resources/plan.rb +302 -0
- data/lib/stripe/resources/price.rb +605 -1
- data/lib/stripe/resources/product.rb +472 -0
- data/lib/stripe/resources/product_feature.rb +12 -0
- data/lib/stripe/resources/promotion_code.rb +212 -0
- data/lib/stripe/resources/quote.rb +917 -0
- data/lib/stripe/resources/radar/early_fraud_warning.rb +68 -0
- data/lib/stripe/resources/radar/value_list.rb +116 -0
- data/lib/stripe/resources/radar/value_list_item.rb +86 -0
- data/lib/stripe/resources/refund.rb +392 -0
- data/lib/stripe/resources/reporting/report_run.rb +141 -0
- data/lib/stripe/resources/reporting/report_type.rb +27 -0
- data/lib/stripe/resources/reserve_transaction.rb +22 -0
- data/lib/stripe/resources/reversal.rb +21 -0
- data/lib/stripe/resources/review.rb +99 -0
- data/lib/stripe/resources/setup_attempt.rb +368 -0
- data/lib/stripe/resources/setup_intent.rb +3473 -0
- data/lib/stripe/resources/shipping_rate.rb +250 -0
- data/lib/stripe/resources/sigma/scheduled_query_run.rb +45 -0
- data/lib/stripe/resources/source.rb +1198 -0
- data/lib/stripe/resources/source_mandate_notification.rb +66 -0
- data/lib/stripe/resources/source_transaction.rb +85 -0
- data/lib/stripe/resources/subscription.rb +1686 -0
- data/lib/stripe/resources/subscription_item.rb +313 -5
- data/lib/stripe/resources/subscription_schedule.rb +1281 -0
- data/lib/stripe/resources/tax/calculation.rb +378 -0
- data/lib/stripe/resources/tax/calculation_line_item.rb +56 -0
- data/lib/stripe/resources/tax/registration.rb +2373 -0
- data/lib/stripe/resources/tax/settings.rb +117 -0
- data/lib/stripe/resources/tax/transaction.rb +258 -0
- data/lib/stripe/resources/tax/transaction_line_item.rb +31 -0
- data/lib/stripe/resources/tax_code.rb +26 -0
- data/lib/stripe/resources/tax_deducted_at_source.rb +22 -0
- data/lib/stripe/resources/tax_id.rb +112 -0
- data/lib/stripe/resources/tax_rate.rb +191 -0
- data/lib/stripe/resources/terminal/configuration.rb +1260 -0
- data/lib/stripe/resources/terminal/connection_token.rb +18 -0
- data/lib/stripe/resources/terminal/location.rb +166 -0
- data/lib/stripe/resources/terminal/reader.rb +427 -0
- data/lib/stripe/resources/test_helpers/test_clock.rb +77 -0
- data/lib/stripe/resources/token.rb +1159 -0
- data/lib/stripe/resources/topup.rb +165 -0
- data/lib/stripe/resources/transfer.rb +144 -0
- data/lib/stripe/resources/treasury/credit_reversal.rb +83 -0
- data/lib/stripe/resources/treasury/debit_reversal.rb +94 -0
- data/lib/stripe/resources/treasury/financial_account.rb +725 -1
- data/lib/stripe/resources/treasury/financial_account_features.rb +189 -0
- data/lib/stripe/resources/treasury/inbound_transfer.rb +226 -0
- data/lib/stripe/resources/treasury/outbound_payment.rb +486 -0
- data/lib/stripe/resources/treasury/outbound_transfer.rb +341 -0
- data/lib/stripe/resources/treasury/received_credit.rb +237 -0
- data/lib/stripe/resources/treasury/received_debit.rb +196 -0
- data/lib/stripe/resources/treasury/transaction.rb +167 -0
- data/lib/stripe/resources/treasury/transaction_entry.rb +148 -0
- data/lib/stripe/resources/v2/amount.rb +9 -0
- data/lib/stripe/resources/v2/billing/meter_event.rb +18 -0
- data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +21 -0
- data/lib/stripe/resources/v2/billing/meter_event_session.rb +14 -0
- data/lib/stripe/resources/v2/event.rb +28 -0
- data/lib/stripe/resources/v2/event_destination.rb +60 -0
- data/lib/stripe/resources/webhook_endpoint.rb +113 -0
- data/lib/stripe/resources.rb +8 -2
- data/lib/stripe/services/account_capability_service.rb +32 -0
- data/lib/stripe/services/account_external_account_service.rb +250 -0
- data/lib/stripe/services/account_link_service.rb +46 -0
- data/lib/stripe/services/account_login_link_service.rb +9 -0
- data/lib/stripe/services/account_person_service.rb +875 -0
- data/lib/stripe/services/account_service.rb +4000 -0
- data/lib/stripe/services/account_session_service.rb +484 -0
- data/lib/stripe/services/apple_pay_domain_service.rb +51 -0
- data/lib/stripe/services/application_fee_refund_service.rb +54 -0
- data/lib/stripe/services/application_fee_service.rb +57 -0
- data/lib/stripe/services/apps/secret_service.rb +116 -0
- data/lib/stripe/services/balance_service.rb +9 -0
- data/lib/stripe/services/balance_transaction_service.rb +69 -0
- data/lib/stripe/services/billing/alert_service.rb +113 -0
- data/lib/stripe/services/billing/credit_balance_summary_service.rb +48 -0
- data/lib/stripe/services/billing/credit_balance_transaction_service.rb +40 -0
- data/lib/stripe/services/billing/credit_grant_service.rb +166 -0
- data/lib/stripe/services/billing/meter_event_adjustment_service.rb +26 -0
- data/lib/stripe/services/billing/meter_event_service.rb +21 -0
- data/lib/stripe/services/billing/meter_event_summary_service.rb +39 -0
- data/lib/stripe/services/billing/meter_service.rb +130 -0
- data/lib/stripe/services/billing_portal/configuration_service.rb +444 -0
- data/lib/stripe/services/billing_portal/session_service.rb +173 -0
- data/lib/stripe/services/charge_service.rb +402 -0
- data/lib/stripe/services/checkout/session_line_item_service.rb +18 -0
- data/lib/stripe/services/checkout/session_service.rb +2399 -5
- data/lib/stripe/services/climate/order_service.rb +102 -0
- data/lib/stripe/services/climate/product_service.rb +27 -0
- data/lib/stripe/services/climate/supplier_service.rb +27 -0
- data/lib/stripe/services/confirmation_token_service.rb +9 -0
- data/lib/stripe/services/country_spec_service.rb +27 -0
- data/lib/stripe/services/coupon_service.rb +152 -0
- data/lib/stripe/services/credit_note_line_item_service.rb +18 -0
- data/lib/stripe/services/credit_note_preview_lines_service.rb +152 -0
- data/lib/stripe/services/credit_note_service.rb +365 -0
- data/lib/stripe/services/customer_balance_transaction_service.rb +63 -0
- data/lib/stripe/services/customer_cash_balance_service.rb +29 -0
- data/lib/stripe/services/customer_cash_balance_transaction_service.rb +27 -0
- data/lib/stripe/services/customer_funding_instructions_service.rb +42 -0
- data/lib/stripe/services/customer_payment_method_service.rb +40 -0
- data/lib/stripe/services/customer_payment_source_service.rb +179 -0
- data/lib/stripe/services/customer_service.rb +577 -0
- data/lib/stripe/services/customer_session_service.rb +96 -0
- data/lib/stripe/services/customer_tax_id_service.rb +45 -0
- data/lib/stripe/services/dispute_service.rb +374 -0
- data/lib/stripe/services/entitlements/active_entitlement_service.rb +36 -0
- data/lib/stripe/services/entitlements/feature_service.rb +76 -0
- data/lib/stripe/services/ephemeral_key_service.rb +36 -0
- data/lib/stripe/services/event_service.rb +65 -0
- data/lib/stripe/services/exchange_rate_service.rb +27 -0
- data/lib/stripe/services/file_link_service.rb +94 -0
- data/lib/stripe/services/file_service.rb +89 -0
- data/lib/stripe/services/financial_connections/account_owner_service.rb +27 -0
- data/lib/stripe/services/financial_connections/account_service.rb +96 -0
- data/lib/stripe/services/financial_connections/session_service.rb +68 -0
- data/lib/stripe/services/financial_connections/transaction_service.rb +70 -0
- data/lib/stripe/services/forwarding/request_service.rb +106 -0
- data/lib/stripe/services/identity/verification_report_service.rb +65 -0
- data/lib/stripe/services/identity/verification_session_service.rb +231 -0
- data/lib/stripe/services/invoice_item_service.rb +334 -0
- data/lib/stripe/services/invoice_line_item_service.rb +221 -0
- data/lib/stripe/services/invoice_payment_service.rb +83 -0
- data/lib/stripe/services/invoice_rendering_template_service.rb +51 -0
- data/lib/stripe/services/invoice_service.rb +2648 -19
- data/lib/stripe/services/issuing/authorization_service.rb +104 -0
- data/lib/stripe/services/issuing/card_service.rb +455 -0
- data/lib/stripe/services/issuing/cardholder_service.rb +525 -0
- data/lib/stripe/services/issuing/dispute_service.rb +633 -0
- data/lib/stripe/services/issuing/personalization_design_service.rb +193 -0
- data/lib/stripe/services/issuing/physical_bundle_service.rb +40 -0
- data/lib/stripe/services/issuing/token_service.rb +73 -0
- data/lib/stripe/services/issuing/transaction_service.rb +77 -0
- data/lib/stripe/services/mandate_service.rb +9 -0
- data/lib/stripe/services/payment_intent_service.rb +7054 -0
- data/lib/stripe/services/payment_link_line_item_service.rb +18 -0
- data/lib/stripe/services/payment_link_service.rb +1276 -0
- data/lib/stripe/services/payment_method_configuration_service.rb +2004 -0
- data/lib/stripe/services/payment_method_domain_service.rb +79 -3
- data/lib/stripe/services/payment_method_service.rb +808 -0
- data/lib/stripe/services/payout_service.rb +159 -0
- data/lib/stripe/services/plan_service.rb +249 -0
- data/lib/stripe/services/price_service.rb +494 -1
- data/lib/stripe/services/product_feature_service.rb +42 -0
- data/lib/stripe/services/product_service.rb +425 -0
- data/lib/stripe/services/promotion_code_service.rb +178 -0
- data/lib/stripe/services/quote_computed_upfront_line_items_service.rb +18 -0
- data/lib/stripe/services/quote_line_item_service.rb +18 -0
- data/lib/stripe/services/quote_service.rb +611 -0
- data/lib/stripe/services/radar/early_fraud_warning_service.rb +61 -0
- data/lib/stripe/services/radar/value_list_item_service.rb +79 -0
- data/lib/stripe/services/radar/value_list_service.rb +103 -0
- data/lib/stripe/services/refund_service.rb +137 -0
- data/lib/stripe/services/reporting/report_run_service.rb +106 -0
- data/lib/stripe/services/reporting/report_type_service.rb +18 -0
- data/lib/stripe/services/review_service.rb +56 -0
- data/lib/stripe/services/setup_attempt_service.rb +51 -0
- data/lib/stripe/services/setup_intent_service.rb +3163 -0
- data/lib/stripe/services/shipping_rate_service.rb +200 -0
- data/lib/stripe/services/sigma/scheduled_query_run_service.rb +27 -0
- data/lib/stripe/services/source_service.rb +601 -0
- data/lib/stripe/services/source_transaction_service.rb +18 -0
- data/lib/stripe/services/subscription_item_service.rb +282 -5
- data/lib/stripe/services/subscription_schedule_service.rb +1062 -0
- data/lib/stripe/services/subscription_service.rb +1412 -0
- data/lib/stripe/services/tax/calculation_line_item_service.rb +18 -0
- data/lib/stripe/services/tax/calculation_service.rb +205 -0
- data/lib/stripe/services/tax/registration_service.rb +1564 -0
- data/lib/stripe/services/tax/settings_service.rb +74 -0
- data/lib/stripe/services/tax/transaction_line_item_service.rb +18 -0
- data/lib/stripe/services/tax/transaction_service.rb +111 -0
- data/lib/stripe/services/tax_code_service.rb +27 -0
- data/lib/stripe/services/tax_id_service.rb +79 -0
- data/lib/stripe/services/tax_rate_service.rb +155 -0
- data/lib/stripe/services/terminal/configuration_service.rb +997 -0
- data/lib/stripe/services/terminal/connection_token_service.rb +12 -0
- data/lib/stripe/services/terminal/location_service.rb +144 -0
- data/lib/stripe/services/terminal/reader_service.rb +266 -0
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +642 -0
- data/lib/stripe/services/test_helpers/customer_service.rb +18 -0
- data/lib/stripe/services/test_helpers/issuing/authorization_service.rb +745 -0
- data/lib/stripe/services/test_helpers/issuing/card_service.rb +45 -0
- data/lib/stripe/services/test_helpers/issuing/personalization_design_service.rb +41 -0
- data/lib/stripe/services/test_helpers/issuing/transaction_service.rb +632 -0
- data/lib/stripe/services/test_helpers/refund_service.rb +9 -0
- data/lib/stripe/services/test_helpers/terminal/reader_service.rb +44 -0
- data/lib/stripe/services/test_helpers/test_clock_service.rb +57 -0
- data/lib/stripe/services/test_helpers/treasury/inbound_transfer_service.rb +38 -0
- data/lib/stripe/services/test_helpers/treasury/outbound_payment_service.rb +87 -0
- data/lib/stripe/services/test_helpers/treasury/outbound_transfer_service.rb +87 -0
- data/lib/stripe/services/test_helpers/treasury/received_credit_service.rb +60 -0
- data/lib/stripe/services/test_helpers/treasury/received_debit_service.rb +60 -0
- data/lib/stripe/services/token_service.rb +1140 -0
- data/lib/stripe/services/topup_service.rb +142 -0
- data/lib/stripe/services/transfer_reversal_service.rb +66 -0
- data/lib/stripe/services/transfer_service.rb +119 -0
- data/lib/stripe/services/treasury/credit_reversal_service.rb +59 -0
- data/lib/stripe/services/treasury/debit_reversal_service.rb +63 -0
- data/lib/stripe/services/treasury/financial_account_features_service.rb +166 -0
- data/lib/stripe/services/treasury/financial_account_service.rb +485 -1
- data/lib/stripe/services/treasury/inbound_transfer_service.rb +88 -0
- data/lib/stripe/services/treasury/outbound_payment_service.rb +258 -0
- data/lib/stripe/services/treasury/outbound_transfer_service.rb +124 -0
- data/lib/stripe/services/treasury/received_credit_service.rb +52 -0
- data/lib/stripe/services/treasury/received_debit_service.rb +40 -0
- data/lib/stripe/services/treasury/transaction_entry_service.rb +87 -0
- data/lib/stripe/services/treasury/transaction_service.rb +95 -0
- data/lib/stripe/services/v1_services.rb +2 -1
- data/lib/stripe/services/v2/billing/meter_event_adjustment_service.rb +23 -0
- data/lib/stripe/services/v2/billing/meter_event_service.rb +25 -0
- data/lib/stripe/services/v2/billing/meter_event_session_service.rb +3 -0
- data/lib/stripe/services/v2/billing/meter_event_stream_service.rb +33 -0
- data/lib/stripe/services/v2/core/event_destination_service.rb +143 -0
- data/lib/stripe/services/v2/core/event_service.rb +15 -0
- data/lib/stripe/services/webhook_endpoint_service.rb +96 -0
- data/lib/stripe/services.rb +1 -3
- data/lib/stripe/stripe_client.rb +2 -1
- data/lib/stripe/stripe_object.rb +5 -0
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe.rb +1 -0
- data/rbi/stripe/resources/account.rbi +4840 -0
- data/rbi/stripe/resources/account_link.rbi +74 -0
- data/rbi/stripe/resources/account_session.rbi +894 -0
- data/rbi/stripe/resources/apple_pay_domain.rbi +90 -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 +180 -0
- data/rbi/stripe/resources/balance_transaction.rbi +144 -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 +2054 -0
- data/rbi/stripe/resources/checkout/session.rbi +3951 -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 +1793 -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 +252 -0
- data/rbi/stripe/resources/credit_note.rbi +747 -0
- data/rbi/stripe/resources/credit_note_line_item.rbi +101 -0
- data/rbi/stripe/resources/customer.rbi +1009 -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 +146 -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 +351 -0
- data/rbi/stripe/resources/identity/verification_session.rbi +517 -0
- data/rbi/stripe/resources/invoice.rbi +3733 -0
- data/rbi/stripe/resources/invoice_item.rbi +475 -0
- data/rbi/stripe/resources/invoice_line_item.rbi +432 -0
- data/rbi/stripe/resources/invoice_payment.rbi +114 -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 +18 -0
- data/rbi/stripe/resources/mandate.rbi +187 -0
- data/rbi/stripe/resources/payment_intent.rbi +9731 -0
- data/rbi/stripe/resources/payment_link.rbi +1801 -0
- data/rbi/stripe/resources/payment_method.rbi +1822 -0
- data/rbi/stripe/resources/payment_method_configuration.rbi +3154 -0
- data/rbi/stripe/resources/payment_method_domain.rbi +212 -0
- data/rbi/stripe/resources/payout.rbi +300 -0
- data/rbi/stripe/resources/person.rbi +371 -0
- data/rbi/stripe/resources/plan.rbi +373 -0
- data/rbi/stripe/resources/price.rbi +694 -0
- data/rbi/stripe/resources/product.rbi +557 -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 +1123 -0
- data/rbi/stripe/resources/radar/early_fraud_warning.rbi +98 -0
- data/rbi/stripe/resources/radar/value_list.rbi +170 -0
- data/rbi/stripe/resources/radar/value_list_item.rbi +131 -0
- data/rbi/stripe/resources/refund.rbi +516 -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 +3860 -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 +1964 -0
- data/rbi/stripe/resources/subscription_item.rbi +370 -0
- data/rbi/stripe/resources/subscription_schedule.rbi +1495 -0
- data/rbi/stripe/resources/tax/calculation.rbi +474 -0
- data/rbi/stripe/resources/tax/calculation_line_item.rbi +88 -0
- data/rbi/stripe/resources/tax/registration.rbi +2485 -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 +167 -0
- data/rbi/stripe/resources/tax_rate.rbi +239 -0
- data/rbi/stripe/resources/terminal/configuration.rbi +1388 -0
- data/rbi/stripe/resources/terminal/connection_token.rbi +37 -0
- data/rbi/stripe/resources/terminal/location.rbi +224 -0
- data/rbi/stripe/resources/terminal/reader.rbi +587 -0
- data/rbi/stripe/resources/test_helpers/test_clock.rbi +134 -0
- data/rbi/stripe/resources/token.rbi +1217 -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 +865 -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 +170 -0
- data/rbi/stripe/services/account_capability_service.rbi +51 -0
- data/rbi/stripe/services/account_external_account_service.rbi +306 -0
- 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 +923 -0
- data/rbi/stripe/services/account_service.rbi +4143 -0
- data/rbi/stripe/services/account_session_service.rbi +572 -0
- data/rbi/stripe/services/apple_pay_domain_service.rbi +78 -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 +2585 -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/rbi/stripe/services/climate/supplier_service.rbi +46 -0
- 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 +196 -0
- data/rbi/stripe/services/credit_note_line_item_service.rbi +31 -0
- data/rbi/stripe/services/credit_note_preview_lines_service.rbi +167 -0
- data/rbi/stripe/services/credit_note_service.rbi +416 -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 +651 -0
- data/rbi/stripe/services/customer_session_service.rbi +116 -0
- data/rbi/stripe/services/customer_tax_id_service.rbi +72 -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 +323 -0
- data/rbi/stripe/services/identity_service.rbi +10 -0
- data/rbi/stripe/services/invoice_item_service.rbi +368 -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 +2920 -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 +7759 -0
- data/rbi/stripe/services/payment_link_line_item_service.rbi +31 -0
- data/rbi/stripe/services/payment_link_service.rbi +1352 -0
- data/rbi/stripe/services/payment_method_configuration_service.rbi +2211 -0
- data/rbi/stripe/services/payment_method_domain_service.rbi +112 -0
- data/rbi/stripe/services/payment_method_service.rbi +840 -0
- data/rbi/stripe/services/payout_service.rbi +205 -0
- data/rbi/stripe/services/plan_service.rbi +284 -0
- data/rbi/stripe/services/price_service.rbi +546 -0
- data/rbi/stripe/services/product_feature_service.rbi +69 -0
- data/rbi/stripe/services/product_service.rbi +479 -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/rbi/stripe/services/quote_line_item_service.rbi +31 -0
- data/rbi/stripe/services/quote_service.rbi +686 -0
- data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +85 -0
- data/rbi/stripe/services/radar/value_list_item_service.rbi +111 -0
- data/rbi/stripe/services/radar/value_list_service.rbi +143 -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 +3596 -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/rbi/stripe/services/source_transaction_service.rbi +31 -0
- data/rbi/stripe/services/subscription_item_service.rbi +324 -0
- data/rbi/stripe/services/subscription_schedule_service.rbi +1192 -0
- data/rbi/stripe/services/subscription_service.rbi +1596 -0
- data/rbi/stripe/services/tax/calculation_line_item_service.rbi +33 -0
- data/rbi/stripe/services/tax/calculation_service.rbi +230 -0
- data/rbi/stripe/services/tax/registration_service.rbi +1689 -0
- data/rbi/stripe/services/tax/settings_service.rbi +93 -0
- data/rbi/stripe/services/tax/transaction_line_item_service.rbi +33 -0
- 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 +112 -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 +1120 -0
- data/rbi/stripe/services/terminal/connection_token_service.rbi +25 -0
- data/rbi/stripe/services/terminal/location_service.rbi +184 -0
- data/rbi/stripe/services/terminal/reader_service.rbi +344 -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 +62 -0
- data/rbi/stripe/services/test_helpers/terminal_service.rbi +11 -0
- data/rbi/stripe/services/test_helpers/test_clock_service.rbi +92 -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 +1189 -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 +562 -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 +20 -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 +200 -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 +131 -0
- metadata +333 -7
- data/lib/stripe/resources/usage_record.rb +0 -17
- data/lib/stripe/resources/usage_record_summary.rb +0 -12
- data/lib/stripe/services/invoice_upcoming_lines_service.rb +0 -17
- data/lib/stripe/services/subscription_item_usage_record_service.rb +0 -23
- data/lib/stripe/services/subscription_item_usage_record_summary_service.rb +0 -19
@@ -4,6 +4,45 @@
|
|
4
4
|
module Stripe
|
5
5
|
module Billing
|
6
6
|
class MeterEventSummaryService < StripeService
|
7
|
+
class ListParams < Stripe::RequestParams
|
8
|
+
# The customer for which to fetch event summaries.
|
9
|
+
attr_accessor :customer
|
10
|
+
# The timestamp from when to stop aggregating meter events (exclusive). Must be aligned with minute boundaries.
|
11
|
+
attr_accessor :end_time
|
12
|
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
|
13
|
+
attr_accessor :ending_before
|
14
|
+
# Specifies which fields in the response should be expanded.
|
15
|
+
attr_accessor :expand
|
16
|
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
|
17
|
+
attr_accessor :limit
|
18
|
+
# The timestamp from when to start aggregating meter events (inclusive). Must be aligned with minute boundaries.
|
19
|
+
attr_accessor :start_time
|
20
|
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
|
21
|
+
attr_accessor :starting_after
|
22
|
+
# Specifies what granularity to use when generating event summaries. If not specified, a single event summary would be returned for the specified time range. For hourly granularity, start and end times must align with hour boundaries (e.g., 00:00, 01:00, ..., 23:00). For daily granularity, start and end times must align with UTC day boundaries (00:00 UTC).
|
23
|
+
attr_accessor :value_grouping_window
|
24
|
+
|
25
|
+
def initialize(
|
26
|
+
customer: nil,
|
27
|
+
end_time: nil,
|
28
|
+
ending_before: nil,
|
29
|
+
expand: nil,
|
30
|
+
limit: nil,
|
31
|
+
start_time: nil,
|
32
|
+
starting_after: nil,
|
33
|
+
value_grouping_window: nil
|
34
|
+
)
|
35
|
+
@customer = customer
|
36
|
+
@end_time = end_time
|
37
|
+
@ending_before = ending_before
|
38
|
+
@expand = expand
|
39
|
+
@limit = limit
|
40
|
+
@start_time = start_time
|
41
|
+
@starting_after = starting_after
|
42
|
+
@value_grouping_window = value_grouping_window
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
7
46
|
# Retrieve a list of billing meter event summaries.
|
8
47
|
def list(id, params = {}, opts = {})
|
9
48
|
request(
|
@@ -11,6 +11,136 @@ module Stripe
|
|
11
11
|
@event_summaries = Stripe::Billing::MeterEventSummaryService.new(@requestor)
|
12
12
|
end
|
13
13
|
|
14
|
+
class ListParams < Stripe::RequestParams
|
15
|
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
|
16
|
+
attr_accessor :ending_before
|
17
|
+
# Specifies which fields in the response should be expanded.
|
18
|
+
attr_accessor :expand
|
19
|
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
|
20
|
+
attr_accessor :limit
|
21
|
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
|
22
|
+
attr_accessor :starting_after
|
23
|
+
# Filter results to only include meters with the given status.
|
24
|
+
attr_accessor :status
|
25
|
+
|
26
|
+
def initialize(
|
27
|
+
ending_before: nil,
|
28
|
+
expand: nil,
|
29
|
+
limit: nil,
|
30
|
+
starting_after: nil,
|
31
|
+
status: nil
|
32
|
+
)
|
33
|
+
@ending_before = ending_before
|
34
|
+
@expand = expand
|
35
|
+
@limit = limit
|
36
|
+
@starting_after = starting_after
|
37
|
+
@status = status
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
class CreateParams < Stripe::RequestParams
|
42
|
+
class CustomerMapping < Stripe::RequestParams
|
43
|
+
# The key in the meter event payload to use for mapping the event to a customer.
|
44
|
+
attr_accessor :event_payload_key
|
45
|
+
# The method for mapping a meter event to a customer. Must be `by_id`.
|
46
|
+
attr_accessor :type
|
47
|
+
|
48
|
+
def initialize(event_payload_key: nil, type: nil)
|
49
|
+
@event_payload_key = event_payload_key
|
50
|
+
@type = type
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
class DefaultAggregation < Stripe::RequestParams
|
55
|
+
# Specifies how events are aggregated. Allowed values are `count` to count the number of events, `sum` to sum each event's value and `last` to take the last event's value in the window.
|
56
|
+
attr_accessor :formula
|
57
|
+
|
58
|
+
def initialize(formula: nil)
|
59
|
+
@formula = formula
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
class ValueSettings < Stripe::RequestParams
|
64
|
+
# The key in the usage event payload to use as the value for this meter. For example, if the event payload contains usage on a `bytes_used` field, then set the event_payload_key to "bytes_used".
|
65
|
+
attr_accessor :event_payload_key
|
66
|
+
|
67
|
+
def initialize(event_payload_key: nil)
|
68
|
+
@event_payload_key = event_payload_key
|
69
|
+
end
|
70
|
+
end
|
71
|
+
# Fields that specify how to map a meter event to a customer.
|
72
|
+
attr_accessor :customer_mapping
|
73
|
+
# The default settings to aggregate a meter's events with.
|
74
|
+
attr_accessor :default_aggregation
|
75
|
+
# The meter’s name. Not visible to the customer.
|
76
|
+
attr_accessor :display_name
|
77
|
+
# The name of the meter event to record usage for. Corresponds with the `event_name` field on meter events.
|
78
|
+
attr_accessor :event_name
|
79
|
+
# The time window to pre-aggregate meter events for, if any.
|
80
|
+
attr_accessor :event_time_window
|
81
|
+
# Specifies which fields in the response should be expanded.
|
82
|
+
attr_accessor :expand
|
83
|
+
# Fields that specify how to calculate a meter event's value.
|
84
|
+
attr_accessor :value_settings
|
85
|
+
|
86
|
+
def initialize(
|
87
|
+
customer_mapping: nil,
|
88
|
+
default_aggregation: nil,
|
89
|
+
display_name: nil,
|
90
|
+
event_name: nil,
|
91
|
+
event_time_window: nil,
|
92
|
+
expand: nil,
|
93
|
+
value_settings: nil
|
94
|
+
)
|
95
|
+
@customer_mapping = customer_mapping
|
96
|
+
@default_aggregation = default_aggregation
|
97
|
+
@display_name = display_name
|
98
|
+
@event_name = event_name
|
99
|
+
@event_time_window = event_time_window
|
100
|
+
@expand = expand
|
101
|
+
@value_settings = value_settings
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
class RetrieveParams < Stripe::RequestParams
|
106
|
+
# Specifies which fields in the response should be expanded.
|
107
|
+
attr_accessor :expand
|
108
|
+
|
109
|
+
def initialize(expand: nil)
|
110
|
+
@expand = expand
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class UpdateParams < Stripe::RequestParams
|
115
|
+
# The meter’s name. Not visible to the customer.
|
116
|
+
attr_accessor :display_name
|
117
|
+
# Specifies which fields in the response should be expanded.
|
118
|
+
attr_accessor :expand
|
119
|
+
|
120
|
+
def initialize(display_name: nil, expand: nil)
|
121
|
+
@display_name = display_name
|
122
|
+
@expand = expand
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
class DeactivateParams < Stripe::RequestParams
|
127
|
+
# Specifies which fields in the response should be expanded.
|
128
|
+
attr_accessor :expand
|
129
|
+
|
130
|
+
def initialize(expand: nil)
|
131
|
+
@expand = expand
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
class ReactivateParams < Stripe::RequestParams
|
136
|
+
# Specifies which fields in the response should be expanded.
|
137
|
+
attr_accessor :expand
|
138
|
+
|
139
|
+
def initialize(expand: nil)
|
140
|
+
@expand = expand
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
14
144
|
# Creates a billing meter.
|
15
145
|
def create(params = {}, opts = {})
|
16
146
|
request(
|
@@ -4,6 +4,450 @@
|
|
4
4
|
module Stripe
|
5
5
|
module BillingPortal
|
6
6
|
class ConfigurationService < StripeService
|
7
|
+
class ListParams < Stripe::RequestParams
|
8
|
+
# Only return configurations that are active or inactive (e.g., pass `true` to only list active configurations).
|
9
|
+
attr_accessor :active
|
10
|
+
# A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.
|
11
|
+
attr_accessor :ending_before
|
12
|
+
# Specifies which fields in the response should be expanded.
|
13
|
+
attr_accessor :expand
|
14
|
+
# Only return the default or non-default configurations (e.g., pass `true` to only list the default configuration).
|
15
|
+
attr_accessor :is_default
|
16
|
+
# A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.
|
17
|
+
attr_accessor :limit
|
18
|
+
# A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.
|
19
|
+
attr_accessor :starting_after
|
20
|
+
|
21
|
+
def initialize(
|
22
|
+
active: nil,
|
23
|
+
ending_before: nil,
|
24
|
+
expand: nil,
|
25
|
+
is_default: nil,
|
26
|
+
limit: nil,
|
27
|
+
starting_after: nil
|
28
|
+
)
|
29
|
+
@active = active
|
30
|
+
@ending_before = ending_before
|
31
|
+
@expand = expand
|
32
|
+
@is_default = is_default
|
33
|
+
@limit = limit
|
34
|
+
@starting_after = starting_after
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
class CreateParams < Stripe::RequestParams
|
39
|
+
class BusinessProfile < Stripe::RequestParams
|
40
|
+
# The messaging shown to customers in the portal.
|
41
|
+
attr_accessor :headline
|
42
|
+
# A link to the business’s publicly available privacy policy.
|
43
|
+
attr_accessor :privacy_policy_url
|
44
|
+
# A link to the business’s publicly available terms of service.
|
45
|
+
attr_accessor :terms_of_service_url
|
46
|
+
|
47
|
+
def initialize(headline: nil, privacy_policy_url: nil, terms_of_service_url: nil)
|
48
|
+
@headline = headline
|
49
|
+
@privacy_policy_url = privacy_policy_url
|
50
|
+
@terms_of_service_url = terms_of_service_url
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
class Features < Stripe::RequestParams
|
55
|
+
class CustomerUpdate < Stripe::RequestParams
|
56
|
+
# The types of customer updates that are supported. When empty, customers are not updateable.
|
57
|
+
attr_accessor :allowed_updates
|
58
|
+
# Whether the feature is enabled.
|
59
|
+
attr_accessor :enabled
|
60
|
+
|
61
|
+
def initialize(allowed_updates: nil, enabled: nil)
|
62
|
+
@allowed_updates = allowed_updates
|
63
|
+
@enabled = enabled
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
class InvoiceHistory < Stripe::RequestParams
|
68
|
+
# Whether the feature is enabled.
|
69
|
+
attr_accessor :enabled
|
70
|
+
|
71
|
+
def initialize(enabled: nil)
|
72
|
+
@enabled = enabled
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
class PaymentMethodUpdate < Stripe::RequestParams
|
77
|
+
# Whether the feature is enabled.
|
78
|
+
attr_accessor :enabled
|
79
|
+
|
80
|
+
def initialize(enabled: nil)
|
81
|
+
@enabled = enabled
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
class SubscriptionCancel < Stripe::RequestParams
|
86
|
+
class CancellationReason < Stripe::RequestParams
|
87
|
+
# Whether the feature is enabled.
|
88
|
+
attr_accessor :enabled
|
89
|
+
# Which cancellation reasons will be given as options to the customer.
|
90
|
+
attr_accessor :options
|
91
|
+
|
92
|
+
def initialize(enabled: nil, options: nil)
|
93
|
+
@enabled = enabled
|
94
|
+
@options = options
|
95
|
+
end
|
96
|
+
end
|
97
|
+
# Whether the cancellation reasons will be collected in the portal and which options are exposed to the customer
|
98
|
+
attr_accessor :cancellation_reason
|
99
|
+
# Whether the feature is enabled.
|
100
|
+
attr_accessor :enabled
|
101
|
+
# Whether to cancel subscriptions immediately or at the end of the billing period.
|
102
|
+
attr_accessor :mode
|
103
|
+
# Whether to create prorations when canceling subscriptions. Possible values are `none` and `create_prorations`, which is only compatible with `mode=immediately`. Passing `always_invoice` will result in an error. No prorations are generated when canceling a subscription at the end of its natural billing period.
|
104
|
+
attr_accessor :proration_behavior
|
105
|
+
|
106
|
+
def initialize(
|
107
|
+
cancellation_reason: nil,
|
108
|
+
enabled: nil,
|
109
|
+
mode: nil,
|
110
|
+
proration_behavior: nil
|
111
|
+
)
|
112
|
+
@cancellation_reason = cancellation_reason
|
113
|
+
@enabled = enabled
|
114
|
+
@mode = mode
|
115
|
+
@proration_behavior = proration_behavior
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
class SubscriptionUpdate < Stripe::RequestParams
|
120
|
+
class Product < Stripe::RequestParams
|
121
|
+
# The list of price IDs for the product that a subscription can be updated to.
|
122
|
+
attr_accessor :prices
|
123
|
+
# The product id.
|
124
|
+
attr_accessor :product
|
125
|
+
|
126
|
+
def initialize(prices: nil, product: nil)
|
127
|
+
@prices = prices
|
128
|
+
@product = product
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
class ScheduleAtPeriodEnd < Stripe::RequestParams
|
133
|
+
class Condition < Stripe::RequestParams
|
134
|
+
# The type of condition.
|
135
|
+
attr_accessor :type
|
136
|
+
|
137
|
+
def initialize(type: nil)
|
138
|
+
@type = type
|
139
|
+
end
|
140
|
+
end
|
141
|
+
# List of conditions. When any condition is true, the update will be scheduled at the end of the current period.
|
142
|
+
attr_accessor :conditions
|
143
|
+
|
144
|
+
def initialize(conditions: nil)
|
145
|
+
@conditions = conditions
|
146
|
+
end
|
147
|
+
end
|
148
|
+
# The types of subscription updates that are supported. When empty, subscriptions are not updateable.
|
149
|
+
attr_accessor :default_allowed_updates
|
150
|
+
# Whether the feature is enabled.
|
151
|
+
attr_accessor :enabled
|
152
|
+
# The list of up to 10 products that support subscription updates.
|
153
|
+
attr_accessor :products
|
154
|
+
# Determines how to handle prorations resulting from subscription updates. Valid values are `none`, `create_prorations`, and `always_invoice`.
|
155
|
+
attr_accessor :proration_behavior
|
156
|
+
# Setting to control when an update should be scheduled at the end of the period instead of applying immediately.
|
157
|
+
attr_accessor :schedule_at_period_end
|
158
|
+
|
159
|
+
def initialize(
|
160
|
+
default_allowed_updates: nil,
|
161
|
+
enabled: nil,
|
162
|
+
products: nil,
|
163
|
+
proration_behavior: nil,
|
164
|
+
schedule_at_period_end: nil
|
165
|
+
)
|
166
|
+
@default_allowed_updates = default_allowed_updates
|
167
|
+
@enabled = enabled
|
168
|
+
@products = products
|
169
|
+
@proration_behavior = proration_behavior
|
170
|
+
@schedule_at_period_end = schedule_at_period_end
|
171
|
+
end
|
172
|
+
end
|
173
|
+
# Information about updating the customer details in the portal.
|
174
|
+
attr_accessor :customer_update
|
175
|
+
# Information about showing the billing history in the portal.
|
176
|
+
attr_accessor :invoice_history
|
177
|
+
# Information about updating payment methods in the portal.
|
178
|
+
attr_accessor :payment_method_update
|
179
|
+
# Information about canceling subscriptions in the portal.
|
180
|
+
attr_accessor :subscription_cancel
|
181
|
+
# Information about updating subscriptions in the portal.
|
182
|
+
attr_accessor :subscription_update
|
183
|
+
|
184
|
+
def initialize(
|
185
|
+
customer_update: nil,
|
186
|
+
invoice_history: nil,
|
187
|
+
payment_method_update: nil,
|
188
|
+
subscription_cancel: nil,
|
189
|
+
subscription_update: nil
|
190
|
+
)
|
191
|
+
@customer_update = customer_update
|
192
|
+
@invoice_history = invoice_history
|
193
|
+
@payment_method_update = payment_method_update
|
194
|
+
@subscription_cancel = subscription_cancel
|
195
|
+
@subscription_update = subscription_update
|
196
|
+
end
|
197
|
+
end
|
198
|
+
|
199
|
+
class LoginPage < Stripe::RequestParams
|
200
|
+
# Set to `true` to generate a shareable URL [`login_page.url`](https://stripe.com/docs/api/customer_portal/configuration#portal_configuration_object-login_page-url) that will take your customers to a hosted login page for the customer portal.
|
201
|
+
attr_accessor :enabled
|
202
|
+
|
203
|
+
def initialize(enabled: nil)
|
204
|
+
@enabled = enabled
|
205
|
+
end
|
206
|
+
end
|
207
|
+
# The business information shown to customers in the portal.
|
208
|
+
attr_accessor :business_profile
|
209
|
+
# The default URL to redirect customers to when they click on the portal's link to return to your website. This can be [overriden](https://stripe.com/docs/api/customer_portal/sessions/create#create_portal_session-return_url) when creating the session.
|
210
|
+
attr_accessor :default_return_url
|
211
|
+
# Specifies which fields in the response should be expanded.
|
212
|
+
attr_accessor :expand
|
213
|
+
# Information about the features available in the portal.
|
214
|
+
attr_accessor :features
|
215
|
+
# The hosted login page for this configuration. Learn more about the portal login page in our [integration docs](https://stripe.com/docs/billing/subscriptions/integrating-customer-portal#share).
|
216
|
+
attr_accessor :login_page
|
217
|
+
# 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`.
|
218
|
+
attr_accessor :metadata
|
219
|
+
|
220
|
+
def initialize(
|
221
|
+
business_profile: nil,
|
222
|
+
default_return_url: nil,
|
223
|
+
expand: nil,
|
224
|
+
features: nil,
|
225
|
+
login_page: nil,
|
226
|
+
metadata: nil
|
227
|
+
)
|
228
|
+
@business_profile = business_profile
|
229
|
+
@default_return_url = default_return_url
|
230
|
+
@expand = expand
|
231
|
+
@features = features
|
232
|
+
@login_page = login_page
|
233
|
+
@metadata = metadata
|
234
|
+
end
|
235
|
+
end
|
236
|
+
|
237
|
+
class RetrieveParams < Stripe::RequestParams
|
238
|
+
# Specifies which fields in the response should be expanded.
|
239
|
+
attr_accessor :expand
|
240
|
+
|
241
|
+
def initialize(expand: nil)
|
242
|
+
@expand = expand
|
243
|
+
end
|
244
|
+
end
|
245
|
+
|
246
|
+
class UpdateParams < Stripe::RequestParams
|
247
|
+
class BusinessProfile < Stripe::RequestParams
|
248
|
+
# The messaging shown to customers in the portal.
|
249
|
+
attr_accessor :headline
|
250
|
+
# A link to the business’s publicly available privacy policy.
|
251
|
+
attr_accessor :privacy_policy_url
|
252
|
+
# A link to the business’s publicly available terms of service.
|
253
|
+
attr_accessor :terms_of_service_url
|
254
|
+
|
255
|
+
def initialize(headline: nil, privacy_policy_url: nil, terms_of_service_url: nil)
|
256
|
+
@headline = headline
|
257
|
+
@privacy_policy_url = privacy_policy_url
|
258
|
+
@terms_of_service_url = terms_of_service_url
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
class Features < Stripe::RequestParams
|
263
|
+
class CustomerUpdate < Stripe::RequestParams
|
264
|
+
# The types of customer updates that are supported. When empty, customers are not updateable.
|
265
|
+
attr_accessor :allowed_updates
|
266
|
+
# Whether the feature is enabled.
|
267
|
+
attr_accessor :enabled
|
268
|
+
|
269
|
+
def initialize(allowed_updates: nil, enabled: nil)
|
270
|
+
@allowed_updates = allowed_updates
|
271
|
+
@enabled = enabled
|
272
|
+
end
|
273
|
+
end
|
274
|
+
|
275
|
+
class InvoiceHistory < Stripe::RequestParams
|
276
|
+
# Whether the feature is enabled.
|
277
|
+
attr_accessor :enabled
|
278
|
+
|
279
|
+
def initialize(enabled: nil)
|
280
|
+
@enabled = enabled
|
281
|
+
end
|
282
|
+
end
|
283
|
+
|
284
|
+
class PaymentMethodUpdate < Stripe::RequestParams
|
285
|
+
# Whether the feature is enabled.
|
286
|
+
attr_accessor :enabled
|
287
|
+
|
288
|
+
def initialize(enabled: nil)
|
289
|
+
@enabled = enabled
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
293
|
+
class SubscriptionCancel < Stripe::RequestParams
|
294
|
+
class CancellationReason < Stripe::RequestParams
|
295
|
+
# Whether the feature is enabled.
|
296
|
+
attr_accessor :enabled
|
297
|
+
# Which cancellation reasons will be given as options to the customer.
|
298
|
+
attr_accessor :options
|
299
|
+
|
300
|
+
def initialize(enabled: nil, options: nil)
|
301
|
+
@enabled = enabled
|
302
|
+
@options = options
|
303
|
+
end
|
304
|
+
end
|
305
|
+
# Whether the cancellation reasons will be collected in the portal and which options are exposed to the customer
|
306
|
+
attr_accessor :cancellation_reason
|
307
|
+
# Whether the feature is enabled.
|
308
|
+
attr_accessor :enabled
|
309
|
+
# Whether to cancel subscriptions immediately or at the end of the billing period.
|
310
|
+
attr_accessor :mode
|
311
|
+
# Whether to create prorations when canceling subscriptions. Possible values are `none` and `create_prorations`, which is only compatible with `mode=immediately`. Passing `always_invoice` will result in an error. No prorations are generated when canceling a subscription at the end of its natural billing period.
|
312
|
+
attr_accessor :proration_behavior
|
313
|
+
|
314
|
+
def initialize(
|
315
|
+
cancellation_reason: nil,
|
316
|
+
enabled: nil,
|
317
|
+
mode: nil,
|
318
|
+
proration_behavior: nil
|
319
|
+
)
|
320
|
+
@cancellation_reason = cancellation_reason
|
321
|
+
@enabled = enabled
|
322
|
+
@mode = mode
|
323
|
+
@proration_behavior = proration_behavior
|
324
|
+
end
|
325
|
+
end
|
326
|
+
|
327
|
+
class SubscriptionUpdate < Stripe::RequestParams
|
328
|
+
class Product < Stripe::RequestParams
|
329
|
+
# The list of price IDs for the product that a subscription can be updated to.
|
330
|
+
attr_accessor :prices
|
331
|
+
# The product id.
|
332
|
+
attr_accessor :product
|
333
|
+
|
334
|
+
def initialize(prices: nil, product: nil)
|
335
|
+
@prices = prices
|
336
|
+
@product = product
|
337
|
+
end
|
338
|
+
end
|
339
|
+
|
340
|
+
class ScheduleAtPeriodEnd < Stripe::RequestParams
|
341
|
+
class Condition < Stripe::RequestParams
|
342
|
+
# The type of condition.
|
343
|
+
attr_accessor :type
|
344
|
+
|
345
|
+
def initialize(type: nil)
|
346
|
+
@type = type
|
347
|
+
end
|
348
|
+
end
|
349
|
+
# List of conditions. When any condition is true, the update will be scheduled at the end of the current period.
|
350
|
+
attr_accessor :conditions
|
351
|
+
|
352
|
+
def initialize(conditions: nil)
|
353
|
+
@conditions = conditions
|
354
|
+
end
|
355
|
+
end
|
356
|
+
# The types of subscription updates that are supported. When empty, subscriptions are not updateable.
|
357
|
+
attr_accessor :default_allowed_updates
|
358
|
+
# Whether the feature is enabled.
|
359
|
+
attr_accessor :enabled
|
360
|
+
# The list of up to 10 products that support subscription updates.
|
361
|
+
attr_accessor :products
|
362
|
+
# Determines how to handle prorations resulting from subscription updates. Valid values are `none`, `create_prorations`, and `always_invoice`.
|
363
|
+
attr_accessor :proration_behavior
|
364
|
+
# Setting to control when an update should be scheduled at the end of the period instead of applying immediately.
|
365
|
+
attr_accessor :schedule_at_period_end
|
366
|
+
|
367
|
+
def initialize(
|
368
|
+
default_allowed_updates: nil,
|
369
|
+
enabled: nil,
|
370
|
+
products: nil,
|
371
|
+
proration_behavior: nil,
|
372
|
+
schedule_at_period_end: nil
|
373
|
+
)
|
374
|
+
@default_allowed_updates = default_allowed_updates
|
375
|
+
@enabled = enabled
|
376
|
+
@products = products
|
377
|
+
@proration_behavior = proration_behavior
|
378
|
+
@schedule_at_period_end = schedule_at_period_end
|
379
|
+
end
|
380
|
+
end
|
381
|
+
# Information about updating the customer details in the portal.
|
382
|
+
attr_accessor :customer_update
|
383
|
+
# Information about showing the billing history in the portal.
|
384
|
+
attr_accessor :invoice_history
|
385
|
+
# Information about updating payment methods in the portal.
|
386
|
+
attr_accessor :payment_method_update
|
387
|
+
# Information about canceling subscriptions in the portal.
|
388
|
+
attr_accessor :subscription_cancel
|
389
|
+
# Information about updating subscriptions in the portal.
|
390
|
+
attr_accessor :subscription_update
|
391
|
+
|
392
|
+
def initialize(
|
393
|
+
customer_update: nil,
|
394
|
+
invoice_history: nil,
|
395
|
+
payment_method_update: nil,
|
396
|
+
subscription_cancel: nil,
|
397
|
+
subscription_update: nil
|
398
|
+
)
|
399
|
+
@customer_update = customer_update
|
400
|
+
@invoice_history = invoice_history
|
401
|
+
@payment_method_update = payment_method_update
|
402
|
+
@subscription_cancel = subscription_cancel
|
403
|
+
@subscription_update = subscription_update
|
404
|
+
end
|
405
|
+
end
|
406
|
+
|
407
|
+
class LoginPage < Stripe::RequestParams
|
408
|
+
# Set to `true` to generate a shareable URL [`login_page.url`](https://stripe.com/docs/api/customer_portal/configuration#portal_configuration_object-login_page-url) that will take your customers to a hosted login page for the customer portal.
|
409
|
+
#
|
410
|
+
# Set to `false` to deactivate the `login_page.url`.
|
411
|
+
attr_accessor :enabled
|
412
|
+
|
413
|
+
def initialize(enabled: nil)
|
414
|
+
@enabled = enabled
|
415
|
+
end
|
416
|
+
end
|
417
|
+
# Whether the configuration is active and can be used to create portal sessions.
|
418
|
+
attr_accessor :active
|
419
|
+
# The business information shown to customers in the portal.
|
420
|
+
attr_accessor :business_profile
|
421
|
+
# The default URL to redirect customers to when they click on the portal's link to return to your website. This can be [overriden](https://stripe.com/docs/api/customer_portal/sessions/create#create_portal_session-return_url) when creating the session.
|
422
|
+
attr_accessor :default_return_url
|
423
|
+
# Specifies which fields in the response should be expanded.
|
424
|
+
attr_accessor :expand
|
425
|
+
# Information about the features available in the portal.
|
426
|
+
attr_accessor :features
|
427
|
+
# The hosted login page for this configuration. Learn more about the portal login page in our [integration docs](https://stripe.com/docs/billing/subscriptions/integrating-customer-portal#share).
|
428
|
+
attr_accessor :login_page
|
429
|
+
# 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`.
|
430
|
+
attr_accessor :metadata
|
431
|
+
|
432
|
+
def initialize(
|
433
|
+
active: nil,
|
434
|
+
business_profile: nil,
|
435
|
+
default_return_url: nil,
|
436
|
+
expand: nil,
|
437
|
+
features: nil,
|
438
|
+
login_page: nil,
|
439
|
+
metadata: nil
|
440
|
+
)
|
441
|
+
@active = active
|
442
|
+
@business_profile = business_profile
|
443
|
+
@default_return_url = default_return_url
|
444
|
+
@expand = expand
|
445
|
+
@features = features
|
446
|
+
@login_page = login_page
|
447
|
+
@metadata = metadata
|
448
|
+
end
|
449
|
+
end
|
450
|
+
|
7
451
|
# Creates a configuration that describes the functionality and behavior of a PortalSession
|
8
452
|
def create(params = {}, opts = {})
|
9
453
|
request(
|