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.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -913,7 +913,7 @@ class Error(StripeObject):
913
913
"""
914
914
eventually_due: Optional[List[str]]
915
915
"""
916
-
Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in `currently_due` as well.
916
+
Fields you must collect when all thresholds are reached. As they become required, they appear in `currently_due` as well.
917
917
"""
918
918
past_due: Optional[List[str]]
919
919
"""
@@ -1087,7 +1087,7 @@ class Error(StripeObject):
1087
1087
"""
1088
1088
eventually_due: Optional[List[str]]
1089
1089
"""
1090
-
Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in `currently_due` as well, and `current_deadline` becomes set.
1090
+
Fields you must collect when all thresholds are reached. As they become required, they appear in `currently_due` as well, and `current_deadline` becomes set.
Copy file name to clipboardexpand all lines: stripe/_account_session.py
+11-11
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ class AccountManagement(StripeObject):
25
25
classFeatures(StripeObject):
26
26
disable_stripe_user_authentication: bool
27
27
"""
28
-
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
28
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
29
29
"""
30
30
external_account_collection: bool
31
31
"""
@@ -43,7 +43,7 @@ class AccountOnboarding(StripeObject):
43
43
classFeatures(StripeObject):
44
44
disable_stripe_user_authentication: bool
45
45
"""
46
-
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
46
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
47
47
"""
48
48
external_account_collection: bool
49
49
"""
@@ -61,7 +61,7 @@ class Balances(StripeObject):
61
61
classFeatures(StripeObject):
62
62
disable_stripe_user_authentication: bool
63
63
"""
64
-
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
64
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
65
65
"""
66
66
edit_payout_schedule: bool
67
67
"""
@@ -135,7 +135,7 @@ class NotificationBanner(StripeObject):
135
135
classFeatures(StripeObject):
136
136
disable_stripe_user_authentication: bool
137
137
"""
138
-
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
138
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
139
139
"""
140
140
external_account_collection: bool
141
141
"""
@@ -205,7 +205,7 @@ class Payouts(StripeObject):
205
205
classFeatures(StripeObject):
206
206
disable_stripe_user_authentication: bool
207
207
"""
208
-
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
208
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
209
209
"""
210
210
edit_payout_schedule: bool
211
211
"""
@@ -464,7 +464,7 @@ class CreateParamsComponentsAccountManagement(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
467
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
468
468
"""
469
469
external_account_collection: NotRequired[bool]
470
470
"""
@@ -486,7 +486,7 @@ class CreateParamsComponentsAccountOnboarding(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
489
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
490
490
"""
491
491
external_account_collection: NotRequired[bool]
492
492
"""
@@ -544,7 +544,7 @@ class CreateParamsComponentsBalances(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
547
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
548
548
"""
549
549
edit_payout_schedule: NotRequired[bool]
550
550
"""
@@ -653,7 +653,7 @@ class CreateParamsComponentsFinancialAccount(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
656
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
657
657
"""
658
658
external_account_collection: NotRequired[bool]
659
659
"""
@@ -767,7 +767,7 @@ class CreateParamsComponentsNotificationBanner(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
770
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
771
771
"""
772
772
external_account_collection: NotRequired[bool]
773
773
"""
@@ -864,7 +864,7 @@ class CreateParamsComponentsPayouts(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
867
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
186
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
187
187
"""
188
188
external_account_collection: NotRequired[bool]
189
189
"""
@@ -205,7 +205,7 @@ class CreateParamsComponentsAccountOnboarding(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
208
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
209
209
"""
210
210
external_account_collection: NotRequired[bool]
211
211
"""
@@ -263,7 +263,7 @@ class CreateParamsComponentsBalances(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
266
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
267
267
"""
268
268
edit_payout_schedule: NotRequired[bool]
269
269
"""
@@ -372,7 +372,7 @@ class CreateParamsComponentsFinancialAccount(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
375
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
376
376
"""
377
377
external_account_collection: NotRequired[bool]
378
378
"""
@@ -486,7 +486,7 @@ class CreateParamsComponentsNotificationBanner(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
489
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
490
490
"""
491
491
external_account_collection: NotRequired[bool]
492
492
"""
@@ -583,7 +583,7 @@ class CreateParamsComponentsPayouts(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be `true` for accounts where you're responsible for collecting updated information when requirements are due or change, like Custom accounts. The default value for this feature is `false` when `external_account_collection` is enabled and `true` otherwise.
586
+
Disables Stripe user authentication for this embedded component. This value can only be true for accounts where `controller.requirement_collection` is `application`. 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.
Copy file name to clipboardexpand all lines: stripe/_capability.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -169,7 +169,7 @@ class Error(StripeObject):
169
169
"""
170
170
eventually_due: List[str]
171
171
"""
172
-
Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in `currently_due` as well.
172
+
Fields you must collect when all thresholds are reached. As they become required, they appear in `currently_due` as well.
173
173
"""
174
174
past_due: List[str]
175
175
"""
@@ -332,7 +332,7 @@ class Error(StripeObject):
332
332
"""
333
333
eventually_due: List[str]
334
334
"""
335
-
Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in `currently_due` as well, and `current_deadline` becomes set.
335
+
Fields you must collect when all thresholds are reached. As they become required, they appear in `currently_due` as well, and `current_deadline` becomes set.
0 commit comments