stripe 15.0.0 → 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 +129 -44
- data/CONTRIBUTING.md +25 -0
- data/Gemfile +1 -1
- data/OPENAPI_VERSION +1 -1
- data/README.md +28 -55
- data/VERSION +1 -1
- data/lib/stripe/api_operations/nested_resource.rb +35 -35
- data/lib/stripe/api_requestor.rb +1 -1
- data/lib/stripe/api_version.rb +2 -1
- data/lib/stripe/connection_manager.rb +1 -3
- data/lib/stripe/event_types.rb +1 -0
- data/lib/stripe/events/v1_billing_meter_error_report_triggered_event.rb +1 -1
- data/lib/stripe/events/v1_billing_meter_no_meter_found_event.rb +1 -1
- data/lib/stripe/events/v2_core_event_destination_ping_event.rb +21 -0
- data/lib/stripe/oauth.rb +1 -1
- data/lib/stripe/resources/account.rb +198 -28
- data/lib/stripe/resources/account_session.rb +176 -72
- data/lib/stripe/resources/apple_pay_domain.rb +1 -2
- data/lib/stripe/resources/balance.rb +42 -0
- data/lib/stripe/resources/balance_transaction.rb +2 -0
- data/lib/stripe/resources/bank_account.rb +2 -2
- data/lib/stripe/resources/billing_portal/session.rb +3 -3
- data/lib/stripe/resources/capability.rb +1 -1
- data/lib/stripe/resources/charge.rb +43 -20
- data/lib/stripe/resources/checkout/session.rb +120 -19
- data/lib/stripe/resources/confirmation_token.rb +119 -100
- data/lib/stripe/resources/country_spec.rb +1 -1
- data/lib/stripe/resources/coupon.rb +2 -3
- data/lib/stripe/resources/credit_note.rb +21 -18
- data/lib/stripe/resources/customer.rb +4 -6
- data/lib/stripe/resources/customer_session.rb +5 -5
- data/lib/stripe/resources/dispute.rb +2 -2
- data/lib/stripe/resources/event.rb +3 -1
- data/lib/stripe/resources/file.rb +1 -1
- data/lib/stripe/resources/funding_instructions.rb +1 -1
- data/lib/stripe/resources/identity/verification_report.rb +6 -0
- data/lib/stripe/resources/identity/verification_session.rb +51 -11
- data/lib/stripe/resources/invoice.rb +146 -32
- data/lib/stripe/resources/invoice_item.rb +3 -7
- data/lib/stripe/resources/invoice_line_item.rb +1 -1
- data/lib/stripe/resources/invoice_payment.rb +9 -2
- data/lib/stripe/resources/issuing/authorization.rb +8 -8
- data/lib/stripe/resources/issuing/card.rb +1 -1
- data/lib/stripe/resources/issuing/dispute.rb +3 -3
- data/lib/stripe/resources/login_link.rb +2 -1
- data/lib/stripe/resources/mandate.rb +3 -0
- data/lib/stripe/resources/payment_intent.rb +602 -325
- data/lib/stripe/resources/payment_method.rb +76 -117
- data/lib/stripe/resources/payment_method_configuration.rb +356 -2
- data/lib/stripe/resources/payment_method_domain.rb +15 -2
- data/lib/stripe/resources/payout.rb +4 -4
- data/lib/stripe/resources/person.rb +27 -3
- data/lib/stripe/resources/plan.rb +2 -3
- data/lib/stripe/resources/price.rb +1 -1
- data/lib/stripe/resources/product.rb +1 -2
- data/lib/stripe/resources/quote.rb +28 -3
- data/lib/stripe/resources/radar/value_list.rb +1 -2
- data/lib/stripe/resources/radar/value_list_item.rb +1 -2
- data/lib/stripe/resources/refund.rb +8 -1
- data/lib/stripe/resources/reversal.rb +1 -1
- data/lib/stripe/resources/review.rb +1 -1
- data/lib/stripe/resources/setup_attempt.rb +1 -1
- data/lib/stripe/resources/setup_intent.rb +414 -293
- data/lib/stripe/resources/source.rb +1 -1
- data/lib/stripe/resources/subscription.rb +149 -27
- data/lib/stripe/resources/subscription_item.rb +33 -0
- data/lib/stripe/resources/subscription_schedule.rb +141 -4
- data/lib/stripe/resources/tax/calculation.rb +6 -2
- data/lib/stripe/resources/tax/calculation_line_item.rb +2 -0
- data/lib/stripe/resources/tax/registration.rb +261 -1
- data/lib/stripe/resources/tax/transaction.rb +1 -1
- data/lib/stripe/resources/tax_id.rb +3 -4
- data/lib/stripe/resources/tax_rate.rb +2 -2
- data/lib/stripe/resources/terminal/configuration.rb +2 -2
- data/lib/stripe/resources/terminal/location.rb +2 -3
- data/lib/stripe/resources/terminal/reader.rb +426 -6
- data/lib/stripe/resources/test_helpers/test_clock.rb +1 -2
- data/lib/stripe/resources/token.rb +63 -2
- data/lib/stripe/resources/transfer.rb +1 -1
- data/lib/stripe/resources/treasury/financial_account.rb +5 -1
- data/lib/stripe/resources/v2/billing/meter_event.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event_adjustment.rb +2 -2
- data/lib/stripe/resources/v2/billing/meter_event_session.rb +2 -2
- data/lib/stripe/resources/v2/event.rb +2 -2
- data/lib/stripe/resources/v2/event_destination.rb +2 -2
- data/lib/stripe/resources/webhook_endpoint.rb +1 -2
- data/lib/stripe/resources.rb +1 -0
- data/lib/stripe/services/account_external_account_service.rb +3 -4
- data/lib/stripe/services/account_login_link_service.rb +1 -1
- data/lib/stripe/services/account_person_service.rb +85 -2
- data/lib/stripe/services/account_service.rb +169 -20
- data/lib/stripe/services/account_session_service.rb +115 -47
- data/lib/stripe/services/apple_pay_domain_service.rb +1 -2
- data/lib/stripe/services/application_fee_service.rb +1 -1
- data/lib/stripe/services/apps_service.rb +1 -1
- data/lib/stripe/services/balance_service.rb +1 -1
- data/lib/stripe/services/billing/meter_service.rb +1 -1
- data/lib/stripe/services/billing_portal/session_service.rb +1 -1
- data/lib/stripe/services/billing_portal_service.rb +1 -1
- data/lib/stripe/services/billing_service.rb +1 -1
- data/lib/stripe/services/charge_service.rb +4 -4
- data/lib/stripe/services/checkout/session_service.rb +94 -15
- data/lib/stripe/services/checkout_service.rb +1 -1
- data/lib/stripe/services/climate_service.rb +1 -1
- data/lib/stripe/services/coupon_service.rb +1 -2
- data/lib/stripe/services/credit_note_preview_lines_service.rb +3 -3
- data/lib/stripe/services/credit_note_service.rb +14 -15
- data/lib/stripe/services/customer_balance_transaction_service.rb +3 -3
- data/lib/stripe/services/customer_cash_balance_transaction_service.rb +2 -2
- data/lib/stripe/services/customer_payment_method_service.rb +1 -1
- data/lib/stripe/services/customer_payment_source_service.rb +1 -1
- data/lib/stripe/services/customer_service.rb +5 -7
- data/lib/stripe/services/customer_session_service.rb +1 -1
- data/lib/stripe/services/customer_tax_id_service.rb +2 -3
- data/lib/stripe/services/dispute_service.rb +1 -1
- data/lib/stripe/services/entitlements_service.rb +1 -1
- data/lib/stripe/services/file_service.rb +1 -1
- data/lib/stripe/services/financial_connections/account_service.rb +1 -1
- data/lib/stripe/services/financial_connections_service.rb +1 -1
- data/lib/stripe/services/forwarding_service.rb +1 -1
- data/lib/stripe/services/identity/verification_session_service.rb +21 -5
- data/lib/stripe/services/identity_service.rb +1 -1
- data/lib/stripe/services/invoice_item_service.rb +1 -2
- data/lib/stripe/services/invoice_service.rb +122 -28
- data/lib/stripe/services/issuing/authorization_service.rb +4 -4
- data/lib/stripe/services/issuing/card_service.rb +1 -1
- data/lib/stripe/services/issuing/dispute_service.rb +2 -2
- data/lib/stripe/services/issuing_service.rb +1 -1
- data/lib/stripe/services/payment_intent_service.rb +563 -313
- data/lib/stripe/services/payment_link_service.rb +1 -1
- data/lib/stripe/services/payment_method_configuration_service.rb +254 -2
- data/lib/stripe/services/payment_method_domain_service.rb +1 -1
- data/lib/stripe/services/payment_method_service.rb +59 -105
- data/lib/stripe/services/payout_service.rb +2 -2
- data/lib/stripe/services/plan_service.rb +2 -3
- data/lib/stripe/services/price_service.rb +2 -2
- data/lib/stripe/services/product_feature_service.rb +1 -2
- data/lib/stripe/services/product_service.rb +3 -4
- data/lib/stripe/services/promotion_code_service.rb +1 -1
- data/lib/stripe/services/quote_service.rb +21 -4
- data/lib/stripe/services/radar/early_fraud_warning_service.rb +1 -1
- data/lib/stripe/services/radar/value_list_item_service.rb +1 -2
- data/lib/stripe/services/radar/value_list_service.rb +1 -2
- data/lib/stripe/services/radar_service.rb +1 -1
- data/lib/stripe/services/reporting_service.rb +1 -1
- data/lib/stripe/services/setup_intent_service.rb +403 -291
- data/lib/stripe/services/sigma_service.rb +1 -1
- data/lib/stripe/services/source_service.rb +2 -2
- data/lib/stripe/services/subscription_item_service.rb +26 -0
- data/lib/stripe/services/subscription_schedule_service.rb +106 -3
- data/lib/stripe/services/subscription_service.rb +121 -26
- data/lib/stripe/services/tax/calculation_service.rb +6 -2
- data/lib/stripe/services/tax/registration_service.rb +170 -1
- data/lib/stripe/services/tax/transaction_service.rb +1 -1
- data/lib/stripe/services/tax_id_service.rb +2 -3
- data/lib/stripe/services/tax_service.rb +1 -1
- data/lib/stripe/services/terminal/configuration_service.rb +1 -2
- data/lib/stripe/services/terminal/location_service.rb +2 -3
- data/lib/stripe/services/terminal/reader_service.rb +196 -2
- data/lib/stripe/services/terminal_service.rb +1 -1
- data/lib/stripe/services/test_helpers/confirmation_token_service.rb +90 -91
- data/lib/stripe/services/test_helpers/issuing_service.rb +1 -1
- data/lib/stripe/services/test_helpers/terminal/reader_service.rb +43 -0
- data/lib/stripe/services/test_helpers/terminal_service.rb +1 -1
- data/lib/stripe/services/test_helpers/test_clock_service.rb +1 -2
- data/lib/stripe/services/test_helpers/treasury_service.rb +1 -1
- data/lib/stripe/services/test_helpers_service.rb +1 -1
- data/lib/stripe/services/token_service.rb +62 -1
- data/lib/stripe/services/transfer_service.rb +2 -2
- data/lib/stripe/services/treasury/financial_account_service.rb +6 -2
- data/lib/stripe/services/treasury_service.rb +1 -1
- data/lib/stripe/services/v1_services.rb +1 -1
- data/lib/stripe/services/v2/billing/meter_event_session_service.rb +1 -2
- data/lib/stripe/services/v2/billing_service.rb +3 -3
- data/lib/stripe/services/v2/core/event_destination_service.rb +17 -23
- data/lib/stripe/services/v2/core/event_service.rb +1 -2
- data/lib/stripe/services/v2/core_service.rb +1 -1
- data/lib/stripe/services/v2_services.rb +1 -1
- data/lib/stripe/services/webhook_endpoint_service.rb +1 -2
- data/lib/stripe/version.rb +1 -1
- data/lib/stripe/webhook.rb +1 -1
- data/rbi/stripe/resources/account.rbi +190 -35
- data/rbi/stripe/resources/account_session.rbi +196 -77
- data/rbi/stripe/resources/apple_pay_domain.rbi +1 -3
- data/rbi/stripe/resources/balance.rbi +55 -0
- data/rbi/stripe/resources/balance_transaction.rbi +3 -0
- data/rbi/stripe/resources/bank_account.rbi +2 -2
- data/rbi/stripe/resources/billing/alert.rbi +2 -2
- data/rbi/stripe/resources/billing_portal/session.rbi +3 -3
- data/rbi/stripe/resources/capability.rbi +1 -1
- data/rbi/stripe/resources/charge.rbi +52 -20
- data/rbi/stripe/resources/checkout/session.rbi +133 -24
- data/rbi/stripe/resources/confirmation_token.rbi +140 -115
- data/rbi/stripe/resources/country_spec.rbi +1 -1
- data/rbi/stripe/resources/coupon.rbi +2 -4
- data/rbi/stripe/resources/credit_note.rbi +23 -18
- data/rbi/stripe/resources/customer.rbi +4 -8
- data/rbi/stripe/resources/customer_session.rbi +5 -5
- data/rbi/stripe/resources/dispute.rbi +2 -2
- data/rbi/stripe/resources/event.rbi +4 -1
- data/rbi/stripe/resources/file.rbi +1 -1
- data/rbi/stripe/resources/identity/verification_report.rbi +9 -0
- data/rbi/stripe/resources/identity/verification_session.rbi +59 -12
- data/rbi/stripe/resources/invoice.rbi +149 -40
- data/rbi/stripe/resources/invoice_item.rbi +3 -8
- data/rbi/stripe/resources/invoice_line_item.rbi +2 -2
- data/rbi/stripe/resources/invoice_payment.rbi +9 -2
- data/rbi/stripe/resources/issuing/authorization.rbi +8 -8
- data/rbi/stripe/resources/issuing/card.rbi +1 -1
- data/rbi/stripe/resources/issuing/dispute.rbi +3 -3
- data/rbi/stripe/resources/login_link.rbi +2 -1
- data/rbi/stripe/resources/mandate.rbi +4 -0
- data/rbi/stripe/resources/payment_intent.rbi +637 -381
- data/rbi/stripe/resources/payment_method.rbi +81 -133
- data/rbi/stripe/resources/payment_method_configuration.rbi +400 -4
- data/rbi/stripe/resources/payment_method_domain.rbi +18 -2
- data/rbi/stripe/resources/payout.rbi +4 -4
- data/rbi/stripe/resources/person.rbi +33 -3
- data/rbi/stripe/resources/plan.rbi +2 -4
- data/rbi/stripe/resources/price.rbi +1 -1
- data/rbi/stripe/resources/product.rbi +1 -3
- data/rbi/stripe/resources/quote.rbi +25 -3
- data/rbi/stripe/resources/radar/value_list.rbi +1 -3
- data/rbi/stripe/resources/radar/value_list_item.rbi +1 -3
- data/rbi/stripe/resources/refund.rbi +8 -1
- data/rbi/stripe/resources/reversal.rbi +1 -1
- data/rbi/stripe/resources/review.rbi +1 -1
- data/rbi/stripe/resources/setup_attempt.rbi +1 -1
- data/rbi/stripe/resources/setup_intent.rbi +464 -346
- data/rbi/stripe/resources/source.rbi +1 -1
- data/rbi/stripe/resources/subscription.rbi +150 -34
- data/rbi/stripe/resources/subscription_item.rbi +36 -2
- data/rbi/stripe/resources/subscription_schedule.rbi +161 -11
- data/rbi/stripe/resources/tax/calculation.rbi +7 -3
- data/rbi/stripe/resources/tax/calculation_line_item.rbi +4 -1
- data/rbi/stripe/resources/tax/registration.rbi +249 -2
- data/rbi/stripe/resources/tax/transaction.rbi +1 -1
- data/rbi/stripe/resources/tax_id.rbi +3 -5
- data/rbi/stripe/resources/tax_rate.rbi +2 -2
- data/rbi/stripe/resources/terminal/configuration.rbi +2 -3
- data/rbi/stripe/resources/terminal/location.rbi +4 -6
- data/rbi/stripe/resources/terminal/reader.rbi +415 -8
- data/rbi/stripe/resources/test_helpers/test_clock.rbi +1 -3
- data/rbi/stripe/resources/token.rbi +70 -4
- data/rbi/stripe/resources/transfer.rbi +1 -1
- data/rbi/stripe/resources/treasury/financial_account.rbi +6 -2
- data/rbi/stripe/resources/v2/billing/meter_event.rbi +3 -3
- data/rbi/stripe/resources/v2/billing/meter_event_adjustment.rbi +3 -3
- data/rbi/stripe/resources/v2/billing/meter_event_session.rbi +3 -3
- data/rbi/stripe/resources/v2/event.rbi +3 -3
- data/rbi/stripe/resources/v2/event_destination.rbi +3 -3
- data/rbi/stripe/resources/webhook_endpoint.rbi +1 -3
- data/rbi/stripe/services/account_external_account_service.rbi +3 -5
- data/rbi/stripe/services/account_login_link_service.rbi +1 -1
- data/rbi/stripe/services/account_person_service.rbi +93 -5
- data/rbi/stripe/services/account_service.rbi +166 -28
- data/rbi/stripe/services/account_session_service.rbi +126 -52
- data/rbi/stripe/services/apple_pay_domain_service.rbi +1 -3
- data/rbi/stripe/services/balance_service.rbi +1 -1
- data/rbi/stripe/services/billing/alert_service.rbi +2 -2
- data/rbi/stripe/services/billing_portal/session_service.rbi +1 -1
- data/rbi/stripe/services/charge_service.rbi +4 -4
- data/rbi/stripe/services/checkout/session_service.rbi +104 -19
- data/rbi/stripe/services/coupon_service.rbi +1 -3
- data/rbi/stripe/services/credit_note_preview_lines_service.rbi +3 -3
- data/rbi/stripe/services/credit_note_service.rbi +13 -14
- data/rbi/stripe/services/customer_balance_transaction_service.rbi +3 -3
- data/rbi/stripe/services/customer_cash_balance_transaction_service.rbi +2 -2
- data/rbi/stripe/services/customer_payment_method_service.rbi +1 -1
- data/rbi/stripe/services/customer_payment_source_service.rbi +1 -1
- data/rbi/stripe/services/customer_service.rbi +4 -8
- data/rbi/stripe/services/customer_session_service.rbi +1 -1
- data/rbi/stripe/services/customer_tax_id_service.rbi +2 -4
- data/rbi/stripe/services/dispute_service.rbi +1 -1
- data/rbi/stripe/services/file_service.rbi +1 -1
- data/rbi/stripe/services/identity/verification_session_service.rbi +22 -6
- data/rbi/stripe/services/invoice_item_service.rbi +1 -3
- data/rbi/stripe/services/invoice_service.rbi +126 -35
- data/rbi/stripe/services/issuing/authorization_service.rbi +4 -4
- data/rbi/stripe/services/issuing/card_service.rbi +1 -1
- data/rbi/stripe/services/issuing/dispute_service.rbi +2 -2
- data/rbi/stripe/services/payment_intent_service.rbi +599 -369
- data/rbi/stripe/services/payment_method_configuration_service.rbi +280 -4
- data/rbi/stripe/services/payment_method_domain_service.rbi +1 -1
- data/rbi/stripe/services/payment_method_service.rbi +62 -121
- data/rbi/stripe/services/payout_service.rbi +2 -2
- data/rbi/stripe/services/plan_service.rbi +2 -4
- data/rbi/stripe/services/price_service.rbi +2 -2
- data/rbi/stripe/services/product_feature_service.rbi +1 -3
- data/rbi/stripe/services/product_service.rbi +2 -4
- data/rbi/stripe/services/promotion_code_service.rbi +1 -1
- data/rbi/stripe/services/quote_service.rbi +16 -3
- data/rbi/stripe/services/radar/early_fraud_warning_service.rbi +1 -1
- data/rbi/stripe/services/radar/value_list_item_service.rbi +1 -3
- data/rbi/stripe/services/radar/value_list_service.rbi +1 -3
- data/rbi/stripe/services/setup_intent_service.rbi +457 -344
- data/rbi/stripe/services/source_service.rbi +1 -1
- data/rbi/stripe/services/subscription_item_service.rbi +28 -2
- data/rbi/stripe/services/subscription_schedule_service.rbi +119 -10
- data/rbi/stripe/services/subscription_service.rbi +121 -33
- data/rbi/stripe/services/tax/calculation_service.rbi +6 -2
- data/rbi/stripe/services/tax/registration_service.rbi +171 -2
- data/rbi/stripe/services/tax_id_service.rbi +2 -4
- data/rbi/stripe/services/terminal/configuration_service.rbi +1 -3
- data/rbi/stripe/services/terminal/location_service.rbi +4 -6
- data/rbi/stripe/services/terminal/reader_service.rbi +200 -4
- data/rbi/stripe/services/test_helpers/confirmation_token_service.rbi +106 -106
- data/rbi/stripe/services/test_helpers/terminal/reader_service.rbi +31 -0
- data/rbi/stripe/services/test_helpers/test_clock_service.rbi +1 -3
- data/rbi/stripe/services/token_service.rbi +71 -3
- data/rbi/stripe/services/transfer_service.rbi +1 -1
- data/rbi/stripe/services/treasury/financial_account_service.rbi +6 -2
- data/rbi/stripe/services/v2/billing/meter_event_session_service.rbi +1 -3
- data/rbi/stripe/services/v2/billing_service.rbi +1 -1
- data/rbi/stripe/services/v2/core/event_destination_service.rbi +14 -22
- data/rbi/stripe/services/v2/core/event_service.rbi +1 -3
- data/rbi/stripe/services/webhook_endpoint_service.rbi +1 -3
- metadata +5 -2
@@ -1475,7 +1475,7 @@ module Stripe
|
|
1475
1475
|
|
1476
1476
|
# Updates the specified source by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
|
1477
1477
|
#
|
1478
|
-
# This request accepts the metadata and owner as arguments. It is also possible to update type specific information for selected payment methods. Please refer to our [payment method guides](https://stripe.com/docs/sources) for more detail.
|
1478
|
+
# This request accepts the metadata and owner as arguments. It is also possible to update type specific information for selected payment methods. Please refer to our [payment method guides](https://docs.stripe.com/docs/sources) for more detail.
|
1479
1479
|
sig {
|
1480
1480
|
params(source: String, params: T.any(::Stripe::Source::UpdateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Source)
|
1481
1481
|
}
|
@@ -43,6 +43,22 @@ module Stripe
|
|
43
43
|
sig { returns(T.nilable(Integer)) }
|
44
44
|
attr_reader :second
|
45
45
|
end
|
46
|
+
class BillingMode < Stripe::StripeObject
|
47
|
+
# Controls how prorations and invoices for subscriptions are calculated and orchestrated.
|
48
|
+
sig { returns(String) }
|
49
|
+
attr_reader :type
|
50
|
+
# Details on when the current billing_mode was adopted.
|
51
|
+
sig { returns(Integer) }
|
52
|
+
attr_reader :updated_at
|
53
|
+
end
|
54
|
+
class BillingThresholds < Stripe::StripeObject
|
55
|
+
# Monetary threshold that triggers the subscription to create an invoice
|
56
|
+
sig { returns(T.nilable(Integer)) }
|
57
|
+
attr_reader :amount_gte
|
58
|
+
# Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged. This value may not be `true` if the subscription contains items with plans that have `aggregate_usage=last_ever`.
|
59
|
+
sig { returns(T.nilable(T::Boolean)) }
|
60
|
+
attr_reader :reset_billing_cycle_anchor
|
61
|
+
end
|
46
62
|
class CancellationDetails < Stripe::StripeObject
|
47
63
|
# Additional comments about why the user canceled the subscription, if the subscription was canceled explicitly by the user.
|
48
64
|
sig { returns(T.nilable(String)) }
|
@@ -257,6 +273,12 @@ module Stripe
|
|
257
273
|
# The fixed values used to calculate the `billing_cycle_anchor`.
|
258
274
|
sig { returns(T.nilable(BillingCycleAnchorConfig)) }
|
259
275
|
attr_reader :billing_cycle_anchor_config
|
276
|
+
# The billing mode of the subscription.
|
277
|
+
sig { returns(BillingMode) }
|
278
|
+
attr_reader :billing_mode
|
279
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period
|
280
|
+
sig { returns(T.nilable(BillingThresholds)) }
|
281
|
+
attr_reader :billing_thresholds
|
260
282
|
# A date in the future at which the subscription will automatically get canceled
|
261
283
|
sig { returns(T.nilable(Integer)) }
|
262
284
|
attr_reader :cancel_at
|
@@ -504,6 +526,18 @@ module Stripe
|
|
504
526
|
}
|
505
527
|
def initialize(enabled: nil, liability: nil); end
|
506
528
|
end
|
529
|
+
class BillingThresholds < Stripe::RequestParams
|
530
|
+
# Monetary threshold that triggers the subscription to advance to a new billing period
|
531
|
+
sig { returns(T.nilable(Integer)) }
|
532
|
+
attr_accessor :amount_gte
|
533
|
+
# Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged.
|
534
|
+
sig { returns(T.nilable(T::Boolean)) }
|
535
|
+
attr_accessor :reset_billing_cycle_anchor
|
536
|
+
sig {
|
537
|
+
params(amount_gte: T.nilable(Integer), reset_billing_cycle_anchor: T.nilable(T::Boolean)).void
|
538
|
+
}
|
539
|
+
def initialize(amount_gte: nil, reset_billing_cycle_anchor: nil); end
|
540
|
+
end
|
507
541
|
class CancellationDetails < Stripe::RequestParams
|
508
542
|
# Additional comments about why the user canceled the subscription, if the subscription was canceled explicitly by the user.
|
509
543
|
sig { returns(T.nilable(T.nilable(String))) }
|
@@ -554,6 +588,13 @@ module Stripe
|
|
554
588
|
def initialize(account_tax_ids: nil, issuer: nil); end
|
555
589
|
end
|
556
590
|
class Item < Stripe::RequestParams
|
591
|
+
class BillingThresholds < Stripe::RequestParams
|
592
|
+
# Number of units that meets the billing threshold to advance the subscription to a new billing period (e.g., it takes 10 $5 units to meet a $50 [monetary threshold](https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_thresholds-amount_gte))
|
593
|
+
sig { returns(Integer) }
|
594
|
+
attr_accessor :usage_gte
|
595
|
+
sig { params(usage_gte: Integer).void }
|
596
|
+
def initialize(usage_gte: nil); end
|
597
|
+
end
|
557
598
|
class Discount < Stripe::RequestParams
|
558
599
|
# ID of the coupon to create a new discount for.
|
559
600
|
sig { returns(T.nilable(String)) }
|
@@ -610,6 +651,11 @@ module Stripe
|
|
610
651
|
unit_amount_decimal: nil
|
611
652
|
); end
|
612
653
|
end
|
654
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. Pass an empty string to remove previously-defined thresholds.
|
655
|
+
sig {
|
656
|
+
returns(T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::Item::BillingThresholds))))
|
657
|
+
}
|
658
|
+
attr_accessor :billing_thresholds
|
613
659
|
# Delete all usage for a given subscription item. You must pass this when deleting a usage records subscription item. `clear_usage` has no effect if the plan has a billing meter attached.
|
614
660
|
sig { returns(T.nilable(T::Boolean)) }
|
615
661
|
attr_accessor :clear_usage
|
@@ -643,9 +689,10 @@ module Stripe
|
|
643
689
|
sig { returns(T.nilable(T.nilable(T.any(String, T::Array[String])))) }
|
644
690
|
attr_accessor :tax_rates
|
645
691
|
sig {
|
646
|
-
params(clear_usage: T.nilable(T::Boolean), deleted: T.nilable(T::Boolean), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::UpdateParams::Item::Discount]))), id: T.nilable(String), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::Subscription::UpdateParams::Item::PriceData), quantity: T.nilable(Integer), tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
692
|
+
params(billing_thresholds: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::Item::BillingThresholds))), clear_usage: T.nilable(T::Boolean), deleted: T.nilable(T::Boolean), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::UpdateParams::Item::Discount]))), id: T.nilable(String), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::Subscription::UpdateParams::Item::PriceData), quantity: T.nilable(Integer), tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
647
693
|
}
|
648
694
|
def initialize(
|
695
|
+
billing_thresholds: nil,
|
649
696
|
clear_usage: nil,
|
650
697
|
deleted: nil,
|
651
698
|
discounts: nil,
|
@@ -765,12 +812,8 @@ module Stripe
|
|
765
812
|
}
|
766
813
|
def initialize(bank_transfer: nil, funding_type: nil); end
|
767
814
|
end
|
768
|
-
class Konbini < Stripe::RequestParams
|
769
|
-
|
770
|
-
end
|
771
|
-
class SepaDebit < Stripe::RequestParams
|
772
|
-
|
773
|
-
end
|
815
|
+
class Konbini < Stripe::RequestParams; end
|
816
|
+
class SepaDebit < Stripe::RequestParams; end
|
774
817
|
class UsBankAccount < Stripe::RequestParams
|
775
818
|
class FinancialConnections < Stripe::RequestParams
|
776
819
|
class Filters < Stripe::RequestParams
|
@@ -925,6 +968,11 @@ module Stripe
|
|
925
968
|
# Either `now` or `unchanged`. Setting the value to `now` resets the subscription's billing cycle anchor to the current time (in UTC). For more information, see the billing cycle [documentation](https://stripe.com/docs/billing/subscriptions/billing-cycle).
|
926
969
|
sig { returns(T.nilable(String)) }
|
927
970
|
attr_accessor :billing_cycle_anchor
|
971
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. When updating, pass an empty string to remove previously-defined thresholds.
|
972
|
+
sig {
|
973
|
+
returns(T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::BillingThresholds))))
|
974
|
+
}
|
975
|
+
attr_accessor :billing_thresholds
|
928
976
|
# A timestamp at which the subscription should cancel. If set to a date before the current period ends, this will cause a proration if prorations have been enabled using `proration_behavior`. If set during a future period, this will always cause a proration for that period.
|
929
977
|
sig { returns(T.nilable(T.nilable(T.any(String, Integer)))) }
|
930
978
|
attr_accessor :cancel_at
|
@@ -1000,7 +1048,7 @@ module Stripe
|
|
1000
1048
|
# Determines how to handle [prorations](https://stripe.com/docs/billing/subscriptions/prorations) when the billing cycle changes (e.g., when switching plans, resetting `billing_cycle_anchor=now`, or starting a trial), or if an item's `quantity` changes. The default value is `create_prorations`.
|
1001
1049
|
sig { returns(T.nilable(String)) }
|
1002
1050
|
attr_accessor :proration_behavior
|
1003
|
-
# If set,
|
1051
|
+
# If set, prorations will be calculated as though the subscription was updated at the given time. This can be used to apply exactly the same prorations that were previewed with the [create preview](https://stripe.com/docs/api/invoices/create_preview) endpoint. `proration_date` can also be used to implement custom proration logic, such as prorating by day instead of by second, by providing the time that you wish to use for proration calculations.
|
1004
1052
|
sig { returns(T.nilable(Integer)) }
|
1005
1053
|
attr_accessor :proration_date
|
1006
1054
|
# If specified, the funds from the subscription's invoices will be transferred to the destination and the ID of the resulting transfers will be found on the resulting charges. This will be unset if you POST an empty value.
|
@@ -1008,7 +1056,7 @@ module Stripe
|
|
1008
1056
|
returns(T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::TransferData))))
|
1009
1057
|
}
|
1010
1058
|
attr_accessor :transfer_data
|
1011
|
-
# Unix timestamp representing the end of the trial period the customer will get before being charged for the first time. This will always overwrite any trials that might apply via a subscribed plan. If set, trial_end will override the default trial period of the plan the customer is being subscribed to. The special value `now` can be provided to end the customer's trial immediately. Can be at most two years from `billing_cycle_anchor`.
|
1059
|
+
# Unix timestamp representing the end of the trial period the customer will get before being charged for the first time. This will always overwrite any trials that might apply via a subscribed plan. If set, `trial_end` will override the default trial period of the plan the customer is being subscribed to. The `billing_cycle_anchor` will be updated to the `trial_end` value. The special value `now` can be provided to end the customer's trial immediately. Can be at most two years from `billing_cycle_anchor`.
|
1012
1060
|
sig { returns(T.nilable(T.any(String, Integer))) }
|
1013
1061
|
attr_accessor :trial_end
|
1014
1062
|
# Indicates if a plan's `trial_period_days` should be applied to the subscription. Setting `trial_end` per subscription is preferred, and this defaults to `false`. Setting this flag to `true` together with `trial_end` is not allowed. See [Using trial periods on subscriptions](https://stripe.com/docs/billing/subscriptions/trials) to learn more.
|
@@ -1018,13 +1066,14 @@ module Stripe
|
|
1018
1066
|
sig { returns(T.nilable(::Stripe::Subscription::UpdateParams::TrialSettings)) }
|
1019
1067
|
attr_accessor :trial_settings
|
1020
1068
|
sig {
|
1021
|
-
params(add_invoice_items: T.nilable(T::Array[::Stripe::Subscription::UpdateParams::AddInvoiceItem]), application_fee_percent: T.nilable(T.nilable(T.any(String, Float))), automatic_tax: T.nilable(::Stripe::Subscription::UpdateParams::AutomaticTax), billing_cycle_anchor: T.nilable(String), cancel_at: T.nilable(T.nilable(T.any(String, Integer))), cancel_at_period_end: T.nilable(T::Boolean), cancellation_details: T.nilable(::Stripe::Subscription::UpdateParams::CancellationDetails), collection_method: T.nilable(String), days_until_due: T.nilable(Integer), default_payment_method: T.nilable(String), default_source: T.nilable(T.nilable(String)), default_tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String]))), description: T.nilable(T.nilable(String)), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::UpdateParams::Discount]))), expand: T.nilable(T::Array[String]), invoice_settings: T.nilable(::Stripe::Subscription::UpdateParams::InvoiceSettings), items: T.nilable(T::Array[::Stripe::Subscription::UpdateParams::Item]), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), off_session: T.nilable(T::Boolean), on_behalf_of: T.nilable(T.nilable(String)), pause_collection: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::PauseCollection))), payment_behavior: T.nilable(String), payment_settings: T.nilable(::Stripe::Subscription::UpdateParams::PaymentSettings), pending_invoice_item_interval: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::PendingInvoiceItemInterval))), proration_behavior: T.nilable(String), proration_date: T.nilable(Integer), transfer_data: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::TransferData))), trial_end: T.nilable(T.any(String, Integer)), trial_from_plan: T.nilable(T::Boolean), trial_settings: T.nilable(::Stripe::Subscription::UpdateParams::TrialSettings)).void
|
1069
|
+
params(add_invoice_items: T.nilable(T::Array[::Stripe::Subscription::UpdateParams::AddInvoiceItem]), application_fee_percent: T.nilable(T.nilable(T.any(String, Float))), automatic_tax: T.nilable(::Stripe::Subscription::UpdateParams::AutomaticTax), billing_cycle_anchor: T.nilable(String), billing_thresholds: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::BillingThresholds))), cancel_at: T.nilable(T.nilable(T.any(String, Integer))), cancel_at_period_end: T.nilable(T::Boolean), cancellation_details: T.nilable(::Stripe::Subscription::UpdateParams::CancellationDetails), collection_method: T.nilable(String), days_until_due: T.nilable(Integer), default_payment_method: T.nilable(String), default_source: T.nilable(T.nilable(String)), default_tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String]))), description: T.nilable(T.nilable(String)), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::UpdateParams::Discount]))), expand: T.nilable(T::Array[String]), invoice_settings: T.nilable(::Stripe::Subscription::UpdateParams::InvoiceSettings), items: T.nilable(T::Array[::Stripe::Subscription::UpdateParams::Item]), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), off_session: T.nilable(T::Boolean), on_behalf_of: T.nilable(T.nilable(String)), pause_collection: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::PauseCollection))), payment_behavior: T.nilable(String), payment_settings: T.nilable(::Stripe::Subscription::UpdateParams::PaymentSettings), pending_invoice_item_interval: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::PendingInvoiceItemInterval))), proration_behavior: T.nilable(String), proration_date: T.nilable(Integer), transfer_data: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::UpdateParams::TransferData))), trial_end: T.nilable(T.any(String, Integer)), trial_from_plan: T.nilable(T::Boolean), trial_settings: T.nilable(::Stripe::Subscription::UpdateParams::TrialSettings)).void
|
1022
1070
|
}
|
1023
1071
|
def initialize(
|
1024
1072
|
add_invoice_items: nil,
|
1025
1073
|
application_fee_percent: nil,
|
1026
1074
|
automatic_tax: nil,
|
1027
1075
|
billing_cycle_anchor: nil,
|
1076
|
+
billing_thresholds: nil,
|
1028
1077
|
cancel_at: nil,
|
1029
1078
|
cancel_at_period_end: nil,
|
1030
1079
|
cancellation_details: nil,
|
@@ -1053,9 +1102,7 @@ module Stripe
|
|
1053
1102
|
trial_settings: nil
|
1054
1103
|
); end
|
1055
1104
|
end
|
1056
|
-
class DeleteDiscountParams < Stripe::RequestParams
|
1057
|
-
|
1058
|
-
end
|
1105
|
+
class DeleteDiscountParams < Stripe::RequestParams; end
|
1059
1106
|
class ListParams < Stripe::RequestParams
|
1060
1107
|
class AutomaticTax < Stripe::RequestParams
|
1061
1108
|
# Enabled automatic tax calculation which will automatically compute tax rates on all invoices generated by the subscription.
|
@@ -1299,6 +1346,25 @@ module Stripe
|
|
1299
1346
|
}
|
1300
1347
|
def initialize(day_of_month: nil, hour: nil, minute: nil, month: nil, second: nil); end
|
1301
1348
|
end
|
1349
|
+
class BillingMode < Stripe::RequestParams
|
1350
|
+
# Attribute for param field type
|
1351
|
+
sig { returns(String) }
|
1352
|
+
attr_accessor :type
|
1353
|
+
sig { params(type: String).void }
|
1354
|
+
def initialize(type: nil); end
|
1355
|
+
end
|
1356
|
+
class BillingThresholds < Stripe::RequestParams
|
1357
|
+
# Monetary threshold that triggers the subscription to advance to a new billing period
|
1358
|
+
sig { returns(T.nilable(Integer)) }
|
1359
|
+
attr_accessor :amount_gte
|
1360
|
+
# Indicates if the `billing_cycle_anchor` should be reset when a threshold is reached. If true, `billing_cycle_anchor` will be updated to the date/time the threshold was last reached; otherwise, the value will remain unchanged.
|
1361
|
+
sig { returns(T.nilable(T::Boolean)) }
|
1362
|
+
attr_accessor :reset_billing_cycle_anchor
|
1363
|
+
sig {
|
1364
|
+
params(amount_gte: T.nilable(Integer), reset_billing_cycle_anchor: T.nilable(T::Boolean)).void
|
1365
|
+
}
|
1366
|
+
def initialize(amount_gte: nil, reset_billing_cycle_anchor: nil); end
|
1367
|
+
end
|
1302
1368
|
class Discount < Stripe::RequestParams
|
1303
1369
|
# ID of the coupon to create a new discount for.
|
1304
1370
|
sig { returns(T.nilable(String)) }
|
@@ -1337,6 +1403,13 @@ module Stripe
|
|
1337
1403
|
def initialize(account_tax_ids: nil, issuer: nil); end
|
1338
1404
|
end
|
1339
1405
|
class Item < Stripe::RequestParams
|
1406
|
+
class BillingThresholds < Stripe::RequestParams
|
1407
|
+
# Number of units that meets the billing threshold to advance the subscription to a new billing period (e.g., it takes 10 $5 units to meet a $50 [monetary threshold](https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_thresholds-amount_gte))
|
1408
|
+
sig { returns(Integer) }
|
1409
|
+
attr_accessor :usage_gte
|
1410
|
+
sig { params(usage_gte: Integer).void }
|
1411
|
+
def initialize(usage_gte: nil); end
|
1412
|
+
end
|
1340
1413
|
class Discount < Stripe::RequestParams
|
1341
1414
|
# ID of the coupon to create a new discount for.
|
1342
1415
|
sig { returns(T.nilable(String)) }
|
@@ -1393,6 +1466,11 @@ module Stripe
|
|
1393
1466
|
unit_amount_decimal: nil
|
1394
1467
|
); end
|
1395
1468
|
end
|
1469
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. Pass an empty string to remove previously-defined thresholds.
|
1470
|
+
sig {
|
1471
|
+
returns(T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::CreateParams::Item::BillingThresholds))))
|
1472
|
+
}
|
1473
|
+
attr_accessor :billing_thresholds
|
1396
1474
|
# The coupons to redeem into discounts for the subscription item.
|
1397
1475
|
sig {
|
1398
1476
|
returns(T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::CreateParams::Item::Discount]))))
|
@@ -1417,9 +1495,10 @@ module Stripe
|
|
1417
1495
|
sig { returns(T.nilable(T.nilable(T.any(String, T::Array[String])))) }
|
1418
1496
|
attr_accessor :tax_rates
|
1419
1497
|
sig {
|
1420
|
-
params(discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::CreateParams::Item::Discount]))), metadata: T.nilable(T::Hash[String, String]), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::Subscription::CreateParams::Item::PriceData), quantity: T.nilable(Integer), tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
1498
|
+
params(billing_thresholds: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::CreateParams::Item::BillingThresholds))), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::CreateParams::Item::Discount]))), metadata: T.nilable(T::Hash[String, String]), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::Subscription::CreateParams::Item::PriceData), quantity: T.nilable(Integer), tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
1421
1499
|
}
|
1422
1500
|
def initialize(
|
1501
|
+
billing_thresholds: nil,
|
1423
1502
|
discounts: nil,
|
1424
1503
|
metadata: nil,
|
1425
1504
|
plan: nil,
|
@@ -1526,12 +1605,8 @@ module Stripe
|
|
1526
1605
|
}
|
1527
1606
|
def initialize(bank_transfer: nil, funding_type: nil); end
|
1528
1607
|
end
|
1529
|
-
class Konbini < Stripe::RequestParams
|
1530
|
-
|
1531
|
-
end
|
1532
|
-
class SepaDebit < Stripe::RequestParams
|
1533
|
-
|
1534
|
-
end
|
1608
|
+
class Konbini < Stripe::RequestParams; end
|
1609
|
+
class SepaDebit < Stripe::RequestParams; end
|
1535
1610
|
class UsBankAccount < Stripe::RequestParams
|
1536
1611
|
class FinancialConnections < Stripe::RequestParams
|
1537
1612
|
class Filters < Stripe::RequestParams
|
@@ -1680,10 +1755,10 @@ module Stripe
|
|
1680
1755
|
# A non-negative decimal between 0 and 100, with at most two decimal places. This represents the percentage of the subscription invoice total that will be transferred to the application owner's Stripe account. The request must be made by a platform account on a connected account in order to set an application fee percentage. For more information, see the application fees [documentation](https://stripe.com/docs/connect/subscriptions#collecting-fees-on-subscriptions).
|
1681
1756
|
sig { returns(T.nilable(T.nilable(T.any(String, Float)))) }
|
1682
1757
|
attr_accessor :application_fee_percent
|
1683
|
-
# Automatic tax settings for this subscription.
|
1758
|
+
# Automatic tax settings for this subscription.
|
1684
1759
|
sig { returns(T.nilable(::Stripe::Subscription::CreateParams::AutomaticTax)) }
|
1685
1760
|
attr_accessor :automatic_tax
|
1686
|
-
#
|
1761
|
+
# A past timestamp to backdate the subscription's start date to. If set, the first invoice will contain line items for the timespan between the start date and the current time. Can be combined with trials and the billing cycle anchor.
|
1687
1762
|
sig { returns(T.nilable(Integer)) }
|
1688
1763
|
attr_accessor :backdate_start_date
|
1689
1764
|
# A future timestamp in UTC format to anchor the subscription's [billing cycle](https://stripe.com/docs/subscriptions/billing-cycle). The anchor is the reference point that aligns future billing cycle dates. It sets the day of week for `week` intervals, the day of month for `month` and `year` intervals, and the month of year for `year` intervals.
|
@@ -1692,6 +1767,14 @@ module Stripe
|
|
1692
1767
|
# Mutually exclusive with billing_cycle_anchor and only valid with monthly and yearly price intervals. When provided, the billing_cycle_anchor is set to the next occurence of the day_of_month at the hour, minute, and second UTC.
|
1693
1768
|
sig { returns(T.nilable(::Stripe::Subscription::CreateParams::BillingCycleAnchorConfig)) }
|
1694
1769
|
attr_accessor :billing_cycle_anchor_config
|
1770
|
+
# Controls how prorations and invoices for subscriptions are calculated and orchestrated.
|
1771
|
+
sig { returns(T.nilable(::Stripe::Subscription::CreateParams::BillingMode)) }
|
1772
|
+
attr_accessor :billing_mode
|
1773
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. When updating, pass an empty string to remove previously-defined thresholds.
|
1774
|
+
sig {
|
1775
|
+
returns(T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::CreateParams::BillingThresholds))))
|
1776
|
+
}
|
1777
|
+
attr_accessor :billing_thresholds
|
1695
1778
|
# A timestamp at which the subscription should cancel. If set to a date before the current period ends, this will cause a proration if prorations have been enabled using `proration_behavior`. If set during a future period, this will always cause a proration for that period.
|
1696
1779
|
sig { returns(T.nilable(Integer)) }
|
1697
1780
|
attr_accessor :cancel_at
|
@@ -1785,7 +1868,7 @@ module Stripe
|
|
1785
1868
|
sig { returns(T.nilable(::Stripe::Subscription::CreateParams::TrialSettings)) }
|
1786
1869
|
attr_accessor :trial_settings
|
1787
1870
|
sig {
|
1788
|
-
params(add_invoice_items: T.nilable(T::Array[::Stripe::Subscription::CreateParams::AddInvoiceItem]), application_fee_percent: T.nilable(T.nilable(T.any(String, Float))), automatic_tax: T.nilable(::Stripe::Subscription::CreateParams::AutomaticTax), backdate_start_date: T.nilable(Integer), billing_cycle_anchor: T.nilable(Integer), billing_cycle_anchor_config: T.nilable(::Stripe::Subscription::CreateParams::BillingCycleAnchorConfig), cancel_at: T.nilable(Integer), cancel_at_period_end: T.nilable(T::Boolean), collection_method: T.nilable(String), currency: T.nilable(String), customer: String, days_until_due: T.nilable(Integer), default_payment_method: T.nilable(String), default_source: T.nilable(String), default_tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String]))), description: T.nilable(String), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::CreateParams::Discount]))), expand: T.nilable(T::Array[String]), invoice_settings: T.nilable(::Stripe::Subscription::CreateParams::InvoiceSettings), items: T.nilable(T::Array[::Stripe::Subscription::CreateParams::Item]), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), off_session: T.nilable(T::Boolean), on_behalf_of: T.nilable(T.nilable(String)), payment_behavior: T.nilable(String), payment_settings: T.nilable(::Stripe::Subscription::CreateParams::PaymentSettings), pending_invoice_item_interval: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::CreateParams::PendingInvoiceItemInterval))), proration_behavior: T.nilable(String), transfer_data: T.nilable(::Stripe::Subscription::CreateParams::TransferData), trial_end: T.nilable(T.any(String, Integer)), trial_from_plan: T.nilable(T::Boolean), trial_period_days: T.nilable(Integer), trial_settings: T.nilable(::Stripe::Subscription::CreateParams::TrialSettings)).void
|
1871
|
+
params(add_invoice_items: T.nilable(T::Array[::Stripe::Subscription::CreateParams::AddInvoiceItem]), application_fee_percent: T.nilable(T.nilable(T.any(String, Float))), automatic_tax: T.nilable(::Stripe::Subscription::CreateParams::AutomaticTax), backdate_start_date: T.nilable(Integer), billing_cycle_anchor: T.nilable(Integer), billing_cycle_anchor_config: T.nilable(::Stripe::Subscription::CreateParams::BillingCycleAnchorConfig), billing_mode: T.nilable(::Stripe::Subscription::CreateParams::BillingMode), billing_thresholds: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::CreateParams::BillingThresholds))), cancel_at: T.nilable(Integer), cancel_at_period_end: T.nilable(T::Boolean), collection_method: T.nilable(String), currency: T.nilable(String), customer: String, days_until_due: T.nilable(Integer), default_payment_method: T.nilable(String), default_source: T.nilable(String), default_tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String]))), description: T.nilable(String), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::Subscription::CreateParams::Discount]))), expand: T.nilable(T::Array[String]), invoice_settings: T.nilable(::Stripe::Subscription::CreateParams::InvoiceSettings), items: T.nilable(T::Array[::Stripe::Subscription::CreateParams::Item]), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), off_session: T.nilable(T::Boolean), on_behalf_of: T.nilable(T.nilable(String)), payment_behavior: T.nilable(String), payment_settings: T.nilable(::Stripe::Subscription::CreateParams::PaymentSettings), pending_invoice_item_interval: T.nilable(T.nilable(T.any(String, ::Stripe::Subscription::CreateParams::PendingInvoiceItemInterval))), proration_behavior: T.nilable(String), transfer_data: T.nilable(::Stripe::Subscription::CreateParams::TransferData), trial_end: T.nilable(T.any(String, Integer)), trial_from_plan: T.nilable(T::Boolean), trial_period_days: T.nilable(Integer), trial_settings: T.nilable(::Stripe::Subscription::CreateParams::TrialSettings)).void
|
1789
1872
|
}
|
1790
1873
|
def initialize(
|
1791
1874
|
add_invoice_items: nil,
|
@@ -1794,6 +1877,8 @@ module Stripe
|
|
1794
1877
|
backdate_start_date: nil,
|
1795
1878
|
billing_cycle_anchor: nil,
|
1796
1879
|
billing_cycle_anchor_config: nil,
|
1880
|
+
billing_mode: nil,
|
1881
|
+
billing_thresholds: nil,
|
1797
1882
|
cancel_at: nil,
|
1798
1883
|
cancel_at_period_end: nil,
|
1799
1884
|
collection_method: nil,
|
@@ -1840,6 +1925,25 @@ module Stripe
|
|
1840
1925
|
}
|
1841
1926
|
def initialize(expand: nil, limit: nil, page: nil, query: nil); end
|
1842
1927
|
end
|
1928
|
+
class MigrateParams < Stripe::RequestParams
|
1929
|
+
class BillingMode < Stripe::RequestParams
|
1930
|
+
# Attribute for param field type
|
1931
|
+
sig { returns(String) }
|
1932
|
+
attr_accessor :type
|
1933
|
+
sig { params(type: String).void }
|
1934
|
+
def initialize(type: nil); end
|
1935
|
+
end
|
1936
|
+
# Controls how prorations and invoices for subscriptions are calculated and orchestrated.
|
1937
|
+
sig { returns(::Stripe::Subscription::MigrateParams::BillingMode) }
|
1938
|
+
attr_accessor :billing_mode
|
1939
|
+
# Specifies which fields in the response should be expanded.
|
1940
|
+
sig { returns(T.nilable(T::Array[String])) }
|
1941
|
+
attr_accessor :expand
|
1942
|
+
sig {
|
1943
|
+
params(billing_mode: ::Stripe::Subscription::MigrateParams::BillingMode, expand: T.nilable(T::Array[String])).void
|
1944
|
+
}
|
1945
|
+
def initialize(billing_mode: nil, expand: nil); end
|
1946
|
+
end
|
1843
1947
|
class ResumeParams < Stripe::RequestParams
|
1844
1948
|
# The billing cycle anchor that applies when the subscription is resumed. Either `now` or `unchanged`. The default is `now`. For more information, see the billing cycle [documentation](https://stripe.com/docs/billing/subscriptions/billing-cycle).
|
1845
1949
|
sig { returns(T.nilable(String)) }
|
@@ -1847,10 +1951,10 @@ module Stripe
|
|
1847
1951
|
# Specifies which fields in the response should be expanded.
|
1848
1952
|
sig { returns(T.nilable(T::Array[String])) }
|
1849
1953
|
attr_accessor :expand
|
1850
|
-
# Determines how to handle [prorations](https://stripe.com/docs/billing/subscriptions/prorations)
|
1954
|
+
# Determines how to handle [prorations](https://stripe.com/docs/billing/subscriptions/prorations) resulting from the `billing_cycle_anchor` being `unchanged`. When the `billing_cycle_anchor` is set to `now` (default value), no prorations are generated. If no value is passed, the default is `create_prorations`.
|
1851
1955
|
sig { returns(T.nilable(String)) }
|
1852
1956
|
attr_accessor :proration_behavior
|
1853
|
-
# If set,
|
1957
|
+
# If set, prorations will be calculated as though the subscription was resumed at the given time. This can be used to apply exactly the same prorations that were previewed with the [create preview](https://stripe.com/docs/api/invoices/create_preview) endpoint.
|
1854
1958
|
sig { returns(T.nilable(Integer)) }
|
1855
1959
|
attr_accessor :proration_date
|
1856
1960
|
sig {
|
@@ -1863,9 +1967,9 @@ module Stripe
|
|
1863
1967
|
proration_date: nil
|
1864
1968
|
); end
|
1865
1969
|
end
|
1866
|
-
# Cancels a customer's subscription immediately. The customer won't be charged again for the subscription. After it's canceled, you can no longer update the subscription or its [metadata](https://stripe.com/metadata).
|
1970
|
+
# Cancels a customer's subscription immediately. The customer won't be charged again for the subscription. After it's canceled, you can no longer update the subscription or its [metadata](https://docs.stripe.com/metadata).
|
1867
1971
|
#
|
1868
|
-
# Any pending invoice items that you've created are still charged at the end of the period, unless manually [deleted](https://stripe.com/
|
1972
|
+
# Any pending invoice items that you've created are still charged at the end of the period, unless manually [deleted](https://docs.stripe.com/api#delete_invoiceitem). If you've set the subscription to cancel at the end of the period, any pending prorations are also left in place and collected at the end of the period. But if the subscription is set to cancel immediately, pending prorations are removed if invoice_now and prorate are both set to true.
|
1869
1973
|
#
|
1870
1974
|
# By default, upon subscription cancellation, Stripe stops automatic collection of all finalized invoices for the customer. This is intended to prevent unexpected payment attempts after the customer has canceled a subscription. However, you can resume automatic collection of the invoices manually after subscription cancellation to have us proceed. Or, you could check for unpaid invoices before allowing the customer to cancel the subscription at all.
|
1871
1975
|
sig {
|
@@ -1873,9 +1977,9 @@ module Stripe
|
|
1873
1977
|
}
|
1874
1978
|
def cancel(params = {}, opts = {}); end
|
1875
1979
|
|
1876
|
-
# Cancels a customer's subscription immediately. The customer won't be charged again for the subscription. After it's canceled, you can no longer update the subscription or its [metadata](https://stripe.com/metadata).
|
1980
|
+
# Cancels a customer's subscription immediately. The customer won't be charged again for the subscription. After it's canceled, you can no longer update the subscription or its [metadata](https://docs.stripe.com/metadata).
|
1877
1981
|
#
|
1878
|
-
# Any pending invoice items that you've created are still charged at the end of the period, unless manually [deleted](https://stripe.com/
|
1982
|
+
# Any pending invoice items that you've created are still charged at the end of the period, unless manually [deleted](https://docs.stripe.com/api#delete_invoiceitem). If you've set the subscription to cancel at the end of the period, any pending prorations are also left in place and collected at the end of the period. But if the subscription is set to cancel immediately, pending prorations are removed if invoice_now and prorate are both set to true.
|
1879
1983
|
#
|
1880
1984
|
# By default, upon subscription cancellation, Stripe stops automatic collection of all finalized invoices for the customer. This is intended to prevent unexpected payment attempts after the customer has canceled a subscription. However, you can resume automatic collection of the invoices manually after subscription cancellation to have us proceed. Or, you could check for unpaid invoices before allowing the customer to cancel the subscription at all.
|
1881
1985
|
sig {
|
@@ -1888,7 +1992,7 @@ module Stripe
|
|
1888
1992
|
# When you create a subscription with collection_method=charge_automatically, the first invoice is finalized as part of the request.
|
1889
1993
|
# The payment_behavior parameter determines the exact behavior of the initial payment.
|
1890
1994
|
#
|
1891
|
-
# To start subscriptions where the first invoice always begins in a draft status, use [subscription schedules](https://stripe.com/docs/billing/subscriptions/subscription-schedules#managing) instead.
|
1995
|
+
# To start subscriptions where the first invoice always begins in a draft status, use [subscription schedules](https://docs.stripe.com/docs/billing/subscriptions/subscription-schedules#managing) instead.
|
1892
1996
|
# Schedules provide the flexibility to model more complex billing configurations that change over time.
|
1893
1997
|
sig {
|
1894
1998
|
params(params: T.any(::Stripe::Subscription::CreateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Subscription)
|
@@ -1913,6 +2017,18 @@ module Stripe
|
|
1913
2017
|
}
|
1914
2018
|
def self.list(params = {}, opts = {}); end
|
1915
2019
|
|
2020
|
+
# Upgrade the billing_mode of an existing subscription.
|
2021
|
+
sig {
|
2022
|
+
params(params: T.any(::Stripe::Subscription::MigrateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Subscription)
|
2023
|
+
}
|
2024
|
+
def migrate(params = {}, opts = {}); end
|
2025
|
+
|
2026
|
+
# Upgrade the billing_mode of an existing subscription.
|
2027
|
+
sig {
|
2028
|
+
params(subscription: String, params: T.any(::Stripe::Subscription::MigrateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Subscription)
|
2029
|
+
}
|
2030
|
+
def self.migrate(subscription, params = {}, opts = {}); end
|
2031
|
+
|
1916
2032
|
# Initiates resumption of a paused subscription, optionally resetting the billing cycle anchor and creating prorations. If a resumption invoice is generated, it must be paid or marked uncollectible before the subscription will be unpaused. If payment succeeds the subscription will become active, and if payment fails the subscription will be past_due. The resumption invoice will void automatically if not paid by the expiration date.
|
1917
2033
|
sig {
|
1918
2034
|
params(params: T.any(::Stripe::Subscription::ResumeParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Subscription)
|
@@ -1937,7 +2053,7 @@ module Stripe
|
|
1937
2053
|
|
1938
2054
|
# Updates an existing subscription to match the specified parameters.
|
1939
2055
|
# When changing prices or quantities, we optionally prorate the price we charge next month to make up for any price changes.
|
1940
|
-
# To preview how the proration is calculated, use the [create preview](https://stripe.com/docs/api/invoices/create_preview) endpoint.
|
2056
|
+
# To preview how the proration is calculated, use the [create preview](https://docs.stripe.com/docs/api/invoices/create_preview) endpoint.
|
1941
2057
|
#
|
1942
2058
|
# By default, we prorate subscription changes. For example, if a customer signs up on May 1 for a 100 price, they'll be billed 100 immediately. If on May 15 they switch to a 200 price, then on June 1 they'll be billed 250 (200 for a renewal of her subscription, plus a 50 prorating adjustment for half of the previous month's 100 difference). Similarly, a downgrade generates a credit that is applied to the next invoice. We also prorate when you make quantity changes.
|
1943
2059
|
#
|
@@ -1949,13 +2065,13 @@ module Stripe
|
|
1949
2065
|
# A trial starts or ends.
|
1950
2066
|
#
|
1951
2067
|
#
|
1952
|
-
# In these cases, we apply a credit for the unused time on the previous price, immediately charge the customer using the new price, and reset the billing date. Learn about how [Stripe immediately attempts payment for subscription changes](https://stripe.com/docs/billing/subscriptions/upgrade-downgrade#immediate-payment).
|
2068
|
+
# In these cases, we apply a credit for the unused time on the previous price, immediately charge the customer using the new price, and reset the billing date. Learn about how [Stripe immediately attempts payment for subscription changes](https://docs.stripe.com/docs/billing/subscriptions/upgrade-downgrade#immediate-payment).
|
1953
2069
|
#
|
1954
|
-
# If you want to charge for an upgrade immediately, pass proration_behavior as always_invoice to create prorations, automatically invoice the customer for those proration adjustments, and attempt to collect payment. If you pass create_prorations, the prorations are created but not automatically invoiced. If you want to bill the customer for the prorations before the subscription's renewal date, you need to manually [invoice the customer](https://stripe.com/docs/api/invoices/create).
|
2070
|
+
# If you want to charge for an upgrade immediately, pass proration_behavior as always_invoice to create prorations, automatically invoice the customer for those proration adjustments, and attempt to collect payment. If you pass create_prorations, the prorations are created but not automatically invoiced. If you want to bill the customer for the prorations before the subscription's renewal date, you need to manually [invoice the customer](https://docs.stripe.com/docs/api/invoices/create).
|
1955
2071
|
#
|
1956
2072
|
# If you don't want to prorate, set the proration_behavior option to none. With this option, the customer is billed 100 on May 1 and 200 on June 1. Similarly, if you set proration_behavior to none when switching between different billing intervals (for example, from monthly to yearly), we don't generate any credits for the old subscription's unused time. We still reset the billing date and bill immediately for the new subscription.
|
1957
2073
|
#
|
1958
|
-
# Updating the quantity on a subscription many times in an hour may result in [rate limiting. If you need to bill for a frequently changing quantity, consider integrating <a href="/docs/billing/subscriptions/usage-based">usage-based billing](https://stripe.com/docs/rate-limits) instead.
|
2074
|
+
# Updating the quantity on a subscription many times in an hour may result in [rate limiting. If you need to bill for a frequently changing quantity, consider integrating <a href="/docs/billing/subscriptions/usage-based">usage-based billing](https://docs.stripe.com/docs/rate-limits) instead.
|
1959
2075
|
sig {
|
1960
2076
|
params(subscription_exposed_id: String, params: T.any(::Stripe::Subscription::UpdateParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(Stripe::Subscription)
|
1961
2077
|
}
|
@@ -6,6 +6,14 @@ module Stripe
|
|
6
6
|
# Subscription items allow you to create customer subscriptions with more than
|
7
7
|
# one plan, making it easy to represent complex billing relationships.
|
8
8
|
class SubscriptionItem < APIResource
|
9
|
+
class BillingThresholds < Stripe::StripeObject
|
10
|
+
# Usage threshold that triggers the subscription to create an invoice
|
11
|
+
sig { returns(T.nilable(Integer)) }
|
12
|
+
attr_reader :usage_gte
|
13
|
+
end
|
14
|
+
# Define thresholds at which an invoice will be sent, and the related subscription advanced to a new billing period
|
15
|
+
sig { returns(T.nilable(BillingThresholds)) }
|
16
|
+
attr_reader :billing_thresholds
|
9
17
|
# Time at which the object was created. Measured in seconds since the Unix epoch.
|
10
18
|
sig { returns(Integer) }
|
11
19
|
attr_reader :created
|
@@ -73,6 +81,13 @@ module Stripe
|
|
73
81
|
def initialize(clear_usage: nil, proration_behavior: nil, proration_date: nil); end
|
74
82
|
end
|
75
83
|
class UpdateParams < Stripe::RequestParams
|
84
|
+
class BillingThresholds < Stripe::RequestParams
|
85
|
+
# Number of units that meets the billing threshold to advance the subscription to a new billing period (e.g., it takes 10 $5 units to meet a $50 [monetary threshold](https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_thresholds-amount_gte))
|
86
|
+
sig { returns(Integer) }
|
87
|
+
attr_accessor :usage_gte
|
88
|
+
sig { params(usage_gte: Integer).void }
|
89
|
+
def initialize(usage_gte: nil); end
|
90
|
+
end
|
76
91
|
class Discount < Stripe::RequestParams
|
77
92
|
# ID of the coupon to create a new discount for.
|
78
93
|
sig { returns(T.nilable(String)) }
|
@@ -129,6 +144,11 @@ module Stripe
|
|
129
144
|
unit_amount_decimal: nil
|
130
145
|
); end
|
131
146
|
end
|
147
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. Pass an empty string to remove previously-defined thresholds.
|
148
|
+
sig {
|
149
|
+
returns(T.nilable(T.nilable(T.any(String, ::Stripe::SubscriptionItem::UpdateParams::BillingThresholds))))
|
150
|
+
}
|
151
|
+
attr_accessor :billing_thresholds
|
132
152
|
# The coupons to redeem into discounts for the subscription item.
|
133
153
|
sig {
|
134
154
|
returns(T.nilable(T.nilable(T.any(String, T::Array[::Stripe::SubscriptionItem::UpdateParams::Discount]))))
|
@@ -174,9 +194,10 @@ module Stripe
|
|
174
194
|
sig { returns(T.nilable(T.nilable(T.any(String, T::Array[String])))) }
|
175
195
|
attr_accessor :tax_rates
|
176
196
|
sig {
|
177
|
-
params(discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::SubscriptionItem::UpdateParams::Discount]))), expand: T.nilable(T::Array[String]), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), off_session: T.nilable(T::Boolean), payment_behavior: T.nilable(String), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::SubscriptionItem::UpdateParams::PriceData), proration_behavior: T.nilable(String), proration_date: T.nilable(Integer), quantity: T.nilable(Integer), tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
197
|
+
params(billing_thresholds: T.nilable(T.nilable(T.any(String, ::Stripe::SubscriptionItem::UpdateParams::BillingThresholds))), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::SubscriptionItem::UpdateParams::Discount]))), expand: T.nilable(T::Array[String]), metadata: T.nilable(T.nilable(T.any(String, T::Hash[String, String]))), off_session: T.nilable(T::Boolean), payment_behavior: T.nilable(String), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::SubscriptionItem::UpdateParams::PriceData), proration_behavior: T.nilable(String), proration_date: T.nilable(Integer), quantity: T.nilable(Integer), tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
178
198
|
}
|
179
199
|
def initialize(
|
200
|
+
billing_thresholds: nil,
|
180
201
|
discounts: nil,
|
181
202
|
expand: nil,
|
182
203
|
metadata: nil,
|
@@ -219,6 +240,13 @@ module Stripe
|
|
219
240
|
); end
|
220
241
|
end
|
221
242
|
class CreateParams < Stripe::RequestParams
|
243
|
+
class BillingThresholds < Stripe::RequestParams
|
244
|
+
# Number of units that meets the billing threshold to advance the subscription to a new billing period (e.g., it takes 10 $5 units to meet a $50 [monetary threshold](https://stripe.com/docs/api/subscriptions/update#update_subscription-billing_thresholds-amount_gte))
|
245
|
+
sig { returns(Integer) }
|
246
|
+
attr_accessor :usage_gte
|
247
|
+
sig { params(usage_gte: Integer).void }
|
248
|
+
def initialize(usage_gte: nil); end
|
249
|
+
end
|
222
250
|
class Discount < Stripe::RequestParams
|
223
251
|
# ID of the coupon to create a new discount for.
|
224
252
|
sig { returns(T.nilable(String)) }
|
@@ -275,6 +303,11 @@ module Stripe
|
|
275
303
|
unit_amount_decimal: nil
|
276
304
|
); end
|
277
305
|
end
|
306
|
+
# Define thresholds at which an invoice will be sent, and the subscription advanced to a new billing period. Pass an empty string to remove previously-defined thresholds.
|
307
|
+
sig {
|
308
|
+
returns(T.nilable(T.nilable(T.any(String, ::Stripe::SubscriptionItem::CreateParams::BillingThresholds))))
|
309
|
+
}
|
310
|
+
attr_accessor :billing_thresholds
|
278
311
|
# The coupons to redeem into discounts for the subscription item.
|
279
312
|
sig {
|
280
313
|
returns(T.nilable(T.nilable(T.any(String, T::Array[::Stripe::SubscriptionItem::CreateParams::Discount]))))
|
@@ -320,9 +353,10 @@ module Stripe
|
|
320
353
|
sig { returns(T.nilable(T.nilable(T.any(String, T::Array[String])))) }
|
321
354
|
attr_accessor :tax_rates
|
322
355
|
sig {
|
323
|
-
params(discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::SubscriptionItem::CreateParams::Discount]))), expand: T.nilable(T::Array[String]), metadata: T.nilable(T::Hash[String, String]), payment_behavior: T.nilable(String), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::SubscriptionItem::CreateParams::PriceData), proration_behavior: T.nilable(String), proration_date: T.nilable(Integer), quantity: T.nilable(Integer), subscription: String, tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
356
|
+
params(billing_thresholds: T.nilable(T.nilable(T.any(String, ::Stripe::SubscriptionItem::CreateParams::BillingThresholds))), discounts: T.nilable(T.nilable(T.any(String, T::Array[::Stripe::SubscriptionItem::CreateParams::Discount]))), expand: T.nilable(T::Array[String]), metadata: T.nilable(T::Hash[String, String]), payment_behavior: T.nilable(String), plan: T.nilable(String), price: T.nilable(String), price_data: T.nilable(::Stripe::SubscriptionItem::CreateParams::PriceData), proration_behavior: T.nilable(String), proration_date: T.nilable(Integer), quantity: T.nilable(Integer), subscription: String, tax_rates: T.nilable(T.nilable(T.any(String, T::Array[String])))).void
|
324
357
|
}
|
325
358
|
def initialize(
|
359
|
+
billing_thresholds: nil,
|
326
360
|
discounts: nil,
|
327
361
|
expand: nil,
|
328
362
|
metadata: nil,
|