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-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -574,7 +574,7 @@ class Verification(StripeObject):
574
574
classDocument(StripeObject):
575
575
back: Optional[ExpandableField["File"]]
576
576
"""
577
-
The back of a document returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `additional_verification`.
577
+
The back of a document returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `additional_verification`. Note that `additional_verification` files are [not downloadable](https://docs.stripe.com/file-upload#uploading-a-file).
578
578
"""
579
579
details: Optional[str]
580
580
"""
@@ -586,7 +586,7 @@ class Document(StripeObject):
586
586
"""
587
587
front: Optional[ExpandableField["File"]]
588
588
"""
589
-
The front of a document returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `additional_verification`.
589
+
The front of a document returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `additional_verification`. Note that `additional_verification` files are [not downloadable](https://docs.stripe.com/file-upload#uploading-a-file).
Configuration for the [balance report](https://docs.stripe.com/connect/supported-embedded-components/financial-reports#balance-report) embedded component.
Configuration for the [payout reconciliation report](https://docs.stripe.com/connect/supported-embedded-components/financial-reports#payout-reconciliation-report) embedded component.
Configuration for the [payouts](https://docs.stripe.com/connect/supported-embedded-components/payouts/) embedded component.
@@ -598,6 +655,21 @@ class CreateParamsComponentsAccountOnboardingFeatures(TypedDict):
598
655
Whether external account collection is enabled. 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 `true`.
Configuration for the [balance report](https://docs.stripe.com/connect/supported-embedded-components/financial-reports#balance-report) embedded component.
Configuration for the [payout reconciliation report](https://docs.stripe.com/connect/supported-embedded-components/financial-reports#payout-reconciliation-report) embedded component.
@@ -176,6 +194,21 @@ class CreateParamsComponentsAccountOnboardingFeatures(TypedDict):
176
194
Whether external account collection is enabled. 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 `true`.
Copy file name to clipboardExpand all lines: stripe/_balance.py
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,9 @@ class Balance(SingletonAPIResource["Balance"]):
12
12
This is an object representing your Stripe balance. You can retrieve it to see
13
13
the balance currently on your Stripe account.
14
14
15
-
You can also retrieve the balance history, which contains a list of
16
-
[transactions](https://stripe.com/docs/reporting/balance-transaction-types) that contributed to the balance
17
-
(charges, payouts, and so forth).
15
+
The top-level `available` and `pending` comprise your "payments balance."
18
16
19
-
The available and pending amounts for each currency are broken down further by
20
-
payment source types.
21
-
22
-
Related guide: [Understanding Connect account balances](https://stripe.com/docs/connect/account-balances)
17
+
Related guide: [Balances and settlement time](https://stripe.com/docs/payments/balances), [Understanding Connect account balances](https://stripe.com/docs/connect/account-balances)
0 commit comments