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
Copy file name to clipboardExpand all lines: stripe/_account_session.py
+19-3Lines changed: 19 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,17 @@ class Features(StripeObject):
61
61
features: Features
62
62
_inner_class_types= {"features": Features}
63
63
64
+
classAgenticCommerceSettings(StripeObject):
65
+
classFeatures(StripeObject):
66
+
pass
67
+
68
+
enabled: bool
69
+
"""
70
+
Whether the embedded component is enabled.
71
+
"""
72
+
features: Features
73
+
_inner_class_types= {"features": Features}
74
+
64
75
classBalances(StripeObject):
65
76
classFeatures(StripeObject):
66
77
disable_stripe_user_authentication: bool
@@ -77,7 +88,7 @@ class Features(StripeObject):
77
88
"""
78
89
instant_payouts: bool
79
90
"""
80
-
Whether to allow creation of instant payouts. Defaults to `true` when `controller.losses.payments` is set to `stripe` for the account, otherwise `false`.
91
+
Whether to allow creation of instant payouts. The default value is `enabled` when Stripe is responsible for negative account balances, and `use_dashboard_rules` otherwise.
81
92
"""
82
93
standard_payouts: bool
83
94
"""
@@ -224,7 +235,7 @@ class Features(StripeObject):
224
235
"""
225
236
instant_payouts: bool
226
237
"""
227
-
Whether to allow creation of instant payouts. Defaults to `true` when `controller.losses.payments` is set to `stripe` for the account, otherwise `false`.
238
+
Whether to allow creation of instant payouts. The default value is `enabled` when Stripe is responsible for negative account balances, and `use_dashboard_rules` otherwise.
228
239
"""
229
240
230
241
enabled: bool
@@ -409,7 +420,7 @@ class Features(StripeObject):
409
420
"""
410
421
instant_payouts: bool
411
422
"""
412
-
Whether to allow creation of instant payouts. Defaults to `true` when `controller.losses.payments` is set to `stripe` for the account, otherwise `false`.
423
+
Whether to allow creation of instant payouts. The default value is `enabled` when Stripe is responsible for negative account balances, and `use_dashboard_rules` otherwise.
413
424
"""
414
425
standard_payouts: bool
415
426
"""
@@ -458,6 +469,10 @@ class Features(StripeObject):
Configuration for the [agentic commerce settings](https://docs.stripe.com/connect/supported-embedded-components/agentic-commerce-settings/) embedded component.
@@ -1312,11 +1315,12 @@ class Ideal(StripeObject):
1312
1315
]
1313
1316
]
1314
1317
"""
1315
-
The customer's bank. Can be one of `abn_amro`, `asn_bank`, `bunq`, `buut`, `finom`, `handelsbanken`, `ing`, `knab`, `mollie`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
1318
+
The customer's bank. Can be one of `abn_amro`, `adyen`, `asn_bank`, `bunq`, `buut`, `finom`, `handelsbanken`, `ing`, `knab`, `mollie`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
1316
1319
"""
1317
1320
bic: Optional[
1318
1321
Literal[
1319
1322
"ABNANL2A",
1323
+
"ADYBNL2A",
1320
1324
"ASNBNL21",
1321
1325
"BITSNL2A",
1322
1326
"BUNQNL2A",
@@ -2079,7 +2083,7 @@ class StripeBalance(StripeObject):
2079
2083
"""
2080
2084
The connected account ID whose Stripe balance to use as the source of payment
Copy file name to clipboardExpand all lines: stripe/_confirmation_token.py
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -966,6 +966,7 @@ class Ideal(StripeObject):
966
966
bank: Optional[
967
967
Literal[
968
968
"abn_amro",
969
+
"adyen",
969
970
"asn_bank",
970
971
"bunq",
971
972
"buut",
@@ -987,11 +988,12 @@ class Ideal(StripeObject):
987
988
]
988
989
]
989
990
"""
990
-
The customer's bank, if provided. Can be one of `abn_amro`, `asn_bank`, `bunq`, `buut`, `finom`, `handelsbanken`, `ing`, `knab`, `mollie`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
991
+
The customer's bank, if provided. Can be one of `abn_amro`, `adyen`, `asn_bank`, `bunq`, `buut`, `finom`, `handelsbanken`, `ing`, `knab`, `mollie`, `moneyou`, `n26`, `nn`, `rabobank`, `regiobank`, `revolut`, `sns_bank`, `triodos_bank`, `van_lanschot`, or `yoursafe`.
991
992
"""
992
993
bic: Optional[
993
994
Literal[
994
995
"ABNANL2A",
996
+
"ADYBNL2A",
995
997
"ASNBNL21",
996
998
"BITSNL2A",
997
999
"BUNQNL2A",
@@ -1388,7 +1390,7 @@ class StripeBalance(StripeObject):
1388
1390
"""
1389
1391
The connected account ID whose Stripe balance to use as the source of payment
0 commit comments