Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion API_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2025-09-30.clover
577fcb57736b925392ea563c0284df9002c75ac9
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2028
v2099
2 changes: 1 addition & 1 deletion lib/stripe/api_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module Stripe
module ApiVersion
CURRENT = "2025-09-30.clover"
CURRENT = "2025-10-29.clover"
CURRENT_MAJOR = "clover"
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ def self.lookup_type
"v1.billing.meter.error_report_triggered"
end

class V1BillingMeterErrorReportTriggeredEventData < Stripe::StripeObject
class Reason < Stripe::StripeObject
class ErrorType < Stripe::StripeObject
class SampleError < Stripe::StripeObject
class Request < Stripe::StripeObject
class V1BillingMeterErrorReportTriggeredEventData < ::Stripe::StripeObject
class Reason < ::Stripe::StripeObject
class ErrorType < ::Stripe::StripeObject
class SampleError < ::Stripe::StripeObject
class Request < ::Stripe::StripeObject
# The request idempotency key.
attr_reader :identifier

Expand Down
10 changes: 5 additions & 5 deletions lib/stripe/events/v1_billing_meter_no_meter_found_event.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ def self.lookup_type
"v1.billing.meter.no_meter_found"
end

class V1BillingMeterNoMeterFoundEventData < Stripe::StripeObject
class Reason < Stripe::StripeObject
class ErrorType < Stripe::StripeObject
class SampleError < Stripe::StripeObject
class Request < Stripe::StripeObject
class V1BillingMeterNoMeterFoundEventData < ::Stripe::StripeObject
class Reason < ::Stripe::StripeObject
class ErrorType < ::Stripe::StripeObject
class SampleError < ::Stripe::StripeObject
class Request < ::Stripe::StripeObject
# The request idempotency key.
attr_reader :identifier

Expand Down
3 changes: 3 additions & 0 deletions lib/stripe/object_types.rb
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,14 @@ def self.object_names_to_classes
LineItem.object_name => LineItem,
LoginLink.object_name => LoginLink,
Mandate.object_name => Mandate,
PaymentAttemptRecord.object_name => PaymentAttemptRecord,
PaymentIntent.object_name => PaymentIntent,
PaymentIntentAmountDetailsLineItem.object_name => PaymentIntentAmountDetailsLineItem,
PaymentLink.object_name => PaymentLink,
PaymentMethod.object_name => PaymentMethod,
PaymentMethodConfiguration.object_name => PaymentMethodConfiguration,
PaymentMethodDomain.object_name => PaymentMethodDomain,
PaymentRecord.object_name => PaymentRecord,
Payout.object_name => Payout,
Person.object_name => Person,
Plan.object_name => Plan,
Expand Down
11 changes: 11 additions & 0 deletions lib/stripe/params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,9 @@
require "stripe/params/issuing/transaction_retrieve_params"
require "stripe/params/issuing/transaction_update_params"
require "stripe/params/mandate_retrieve_params"
require "stripe/params/payment_attempt_record_list_params"
require "stripe/params/payment_attempt_record_retrieve_params"
require "stripe/params/payment_intent_amount_details_line_item_list_params"
require "stripe/params/payment_intent_apply_customer_balance_params"
require "stripe/params/payment_intent_cancel_params"
require "stripe/params/payment_intent_capture_params"
Expand Down Expand Up @@ -303,6 +306,14 @@
require "stripe/params/payment_method_list_params"
require "stripe/params/payment_method_retrieve_params"
require "stripe/params/payment_method_update_params"
require "stripe/params/payment_record_report_payment_attempt_canceled_params"
require "stripe/params/payment_record_report_payment_attempt_failed_params"
require "stripe/params/payment_record_report_payment_attempt_guaranteed_params"
require "stripe/params/payment_record_report_payment_attempt_informational_params"
require "stripe/params/payment_record_report_payment_attempt_params"
require "stripe/params/payment_record_report_payment_params"
require "stripe/params/payment_record_report_refund_params"
require "stripe/params/payment_record_retrieve_params"
require "stripe/params/payout_cancel_params"
require "stripe/params/payout_create_params"
require "stripe/params/payout_list_params"
Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/params/account_capability_list_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# frozen_string_literal: true

module Stripe
class AccountCapabilityListParams < Stripe::RequestParams
class AccountCapabilityListParams < ::Stripe::RequestParams
# Specifies which fields in the response should be expanded.
attr_accessor :expand

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/params/account_capability_retrieve_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# frozen_string_literal: true

module Stripe
class AccountCapabilityRetrieveParams < Stripe::RequestParams
class AccountCapabilityRetrieveParams < ::Stripe::RequestParams
# Specifies which fields in the response should be expanded.
attr_accessor :expand

Expand Down
2 changes: 1 addition & 1 deletion lib/stripe/params/account_capability_update_params.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# frozen_string_literal: true

module Stripe
class AccountCapabilityUpdateParams < Stripe::RequestParams
class AccountCapabilityUpdateParams < ::Stripe::RequestParams
# Specifies which fields in the response should be expanded.
attr_accessor :expand
# To request a new capability for an account, pass true. There can be a delay before the requested capability becomes active. If the capability has any activation requirements, the response includes them in the `requirements` arrays.
Expand Down
Loading
Loading