You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Whether Stripe user authentication is disabled. This value can only be `true` for accounts where `controller.requirement_collection` is `application` for the account. The default value is the opposite of the `external_account_collection` value. For example, if you don't set `external_account_collection`, it defaults to `true` and `disable_stripe_user_authentication` defaults to `false`.
@@ -725,6 +749,8 @@ def self.field_remappings
725
749
attr_reader:tax_registrations
726
750
# Attribute for field tax_settings
727
751
attr_reader:tax_settings
752
+
# Configuration for the [agentic commerce settings](/connect/supported-embedded-components/agentic-commerce-settings/) embedded component.
Copy file name to clipboardExpand all lines: rbi/stripe.rbi
+33-1Lines changed: 33 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2970,6 +2970,28 @@ module Stripe
2970
2970
@field_remappings = {}
2971
2971
end
2972
2972
end
2973
+
class AgenticCommerceSettings < ::Stripe::StripeObject
2974
+
class Features < ::Stripe::StripeObject
2975
+
def self.inner_class_types
2976
+
@inner_class_types = {}
2977
+
end
2978
+
def self.field_remappings
2979
+
@field_remappings = {}
2980
+
end
2981
+
end
2982
+
# Whether the embedded component is enabled.
2983
+
sig { returns(T::Boolean) }
2984
+
def enabled; end
2985
+
# Attribute for field features
2986
+
sig { returns(Features) }
2987
+
def features; end
2988
+
def self.inner_class_types
2989
+
@inner_class_types = {features: Features}
2990
+
end
2991
+
def self.field_remappings
2992
+
@field_remappings = {}
2993
+
end
2994
+
end
2973
2995
class Balances < ::Stripe::StripeObject
2974
2996
class Features < ::Stripe::StripeObject
2975
2997
# Whether Stripe user authentication is disabled. This value can only be `true` for accounts where `controller.requirement_collection` is `application` for the account. The default value is the opposite of the `external_account_collection` value. For example, if you don't set `external_account_collection`, it defaults to `true` and `disable_stripe_user_authentication` defaults to `false`.
@@ -3633,6 +3655,9 @@ module Stripe
3633
3655
# Attribute for field tax_settings
3634
3656
sig { returns(TaxSettings) }
3635
3657
def tax_settings; end
3658
+
# Configuration for the [agentic commerce settings](/connect/supported-embedded-components/agentic-commerce-settings/) embedded component.
3659
+
sig { returns(T.nilable(AgenticCommerceSettings)) }
# Whether Stripe user authentication is disabled. This value can only be `true` for accounts where `controller.requirement_collection` is `application` for the account. The default value is the opposite of the `external_account_collection` value. For example, if you don't set `external_account_collection`, it defaults to `true` and `disable_stripe_user_authentication` defaults to `false`.
@@ -731,6 +753,9 @@ module Stripe
731
753
# Attribute for field tax_settings
732
754
sig{returns(TaxSettings)}
733
755
deftax_settings;end
756
+
# Configuration for the [agentic commerce settings](/connect/supported-embedded-components/agentic-commerce-settings/) embedded component.
0 commit comments