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
+4-4
Original file line number
Diff line number
Diff line change
@@ -792,7 +792,7 @@ class Error(StripeObject):
792
792
"""
793
793
current_deadline: Optional[int]
794
794
"""
795
-
Date on which `future_requirements` merges with the main `requirements` hash and `future_requirements` becomes empty. After the transition, `currently_due` requirements may immediately become `past_due`, but the account may also be given a grace period depending on its enablement state prior to transitioning.
795
+
Date on which `future_requirements` becomes the main `requirements` hash and `future_requirements` becomes empty. After the transition, `currently_due` requirements may immediately become `past_due`, but the account may also be given a grace period depending on its enablement state prior to transitioning.
796
796
"""
797
797
currently_due: Optional[List[str]]
798
798
"""
@@ -826,7 +826,7 @@ class Error(StripeObject):
826
826
"""
827
827
eventually_due: Optional[List[str]]
828
828
"""
829
-
Fields that need to be collected assuming all volume thresholds are reached. As they become required, they appear in `currently_due` as well.
829
+
Fields you must collect when all thresholds are reached. As they become required, they appear in `currently_due` as well.
830
830
"""
831
831
past_due: Optional[List[str]]
832
832
"""
@@ -1000,7 +1000,7 @@ class Error(StripeObject):
1000
1000
"""
1001
1001
eventually_due: Optional[List[str]]
1002
1002
"""
1003
-
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.
1003
+
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.
1004
1004
"""
1005
1005
past_due: Optional[List[str]]
1006
1006
"""
@@ -1362,7 +1362,7 @@ class CreateParams(RequestOptions):
1362
1362
"""
1363
1363
groups: NotRequired["Account.CreateParamsGroups"]
1364
1364
"""
1365
-
A hash of account group type to tokens. These are account groups this account should be added to
1365
+
A hash of account group type to tokens. These are account groups this account should be added to.
Copy file name to clipboardexpand all lines: stripe/_account_session.py
+10-10
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 false 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 false 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 false 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
"""
@@ -102,7 +102,7 @@ class NotificationBanner(StripeObject):
102
102
classFeatures(StripeObject):
103
103
disable_stripe_user_authentication: bool
104
104
"""
105
-
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
105
+
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.
106
106
"""
107
107
external_account_collection: bool
108
108
"""
@@ -172,7 +172,7 @@ class Payouts(StripeObject):
172
172
classFeatures(StripeObject):
173
173
disable_stripe_user_authentication: bool
174
174
"""
175
-
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
175
+
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.
176
176
"""
177
177
edit_payout_schedule: bool
178
178
"""
@@ -347,7 +347,7 @@ class CreateParamsComponentsAccountManagement(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
350
+
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.
351
351
"""
352
352
external_account_collection: NotRequired[bool]
353
353
"""
@@ -369,7 +369,7 @@ class CreateParamsComponentsAccountOnboarding(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
372
+
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.
373
373
"""
374
374
external_account_collection: NotRequired[bool]
375
375
"""
@@ -391,7 +391,7 @@ class CreateParamsComponentsBalances(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
394
+
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.
395
395
"""
396
396
edit_payout_schedule: NotRequired[bool]
397
397
"""
@@ -440,7 +440,7 @@ class CreateParamsComponentsNotificationBanner(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
443
+
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.
444
444
"""
445
445
external_account_collection: NotRequired[bool]
446
446
"""
@@ -522,7 +522,7 @@ class CreateParamsComponentsPayouts(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
525
+
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 false 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.
108
+
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.
109
109
"""
110
110
external_account_collection: NotRequired[bool]
111
111
"""
@@ -127,7 +127,7 @@ class CreateParamsComponentsAccountOnboarding(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
130
+
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.
131
131
"""
132
132
external_account_collection: NotRequired[bool]
133
133
"""
@@ -149,7 +149,7 @@ class CreateParamsComponentsBalances(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
152
+
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.
153
153
"""
154
154
edit_payout_schedule: NotRequired[bool]
155
155
"""
@@ -198,7 +198,7 @@ class CreateParamsComponentsNotificationBanner(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
201
+
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.
202
202
"""
203
203
external_account_collection: NotRequired[bool]
204
204
"""
@@ -280,7 +280,7 @@ class CreateParamsComponentsPayouts(TypedDict):
Disables Stripe user authentication for this embedded component. This feature can only be false 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.
283
+
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.
0 commit comments