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
* Add support for `instant_payouts_promotion` on `AccountSession.Component` and `AccountSession.CreateParamsComponent`
41
+
* Add support for `adjustable_quantity` on `BillingPortal.Configuration.Feature.SubscriptionUpdate.Product`, `billing_portal.Configuration.CreateParamsFeatureSubscriptionUpdateProduct`, and `billing_portal.Configuration.ModifyParamsFeatureSubscriptionUpdateProduct`
42
+
* Remove support for value `disabled` from enum `Capability.status`
43
+
* Add support for `transaction_id` on `Charge.PaymentMethodDetail.Cashapp`
44
+
* Add support for `origin_context` on `Checkout.Session` and `checkout.Session.CreateParams`
45
+
* Add support for `template` on `Checkout.Session.InvoiceCreation.InvoiceDatum.RenderingOption`, `PaymentLink.CreateParamsInvoiceCreationInvoiceDatumRenderingOption`, `PaymentLink.InvoiceCreation.InvoiceDatum.RenderingOption`, `PaymentLink.ModifyParamsInvoiceCreationInvoiceDatumRenderingOption`, and `checkout.Session.CreateParamsInvoiceCreationInvoiceDatumRenderingOption`
46
+
* Add support for `setup_future_usage` on `Checkout.Session.PaymentMethodOption.Pix` and `checkout.Session.CreateParamsPaymentMethodOptionPix`
47
+
* Add support for new value `nz_bank_account` on enum `checkout.Session.CreateParams.payment_method_types`
48
+
* Change `Identity.VerificationSession.RelatedPerson.account` to be required
49
+
* Change `Identity.VerificationSession.RelatedPerson.person` to be required
50
+
* Add support for `duration` on `Invoice.CreatePreviewParamsScheduleDetailPhase`, `SubscriptionSchedule.CreateParamsPhase`, and `SubscriptionSchedule.ModifyParamsPhase`
51
+
* Change type of `Invoice.CreatePreviewParamsSubscriptionDetail.cancel_at`, `Subscription.CreateParams.cancel_at`, and `Subscription.ModifyParams.cancel_at` from `DateTime` to `DateTime | enum('max_period_end'|'min_period_end')`
52
+
* Add support for `price_data` on `PaymentLink.CreateParamsLineItem`
53
+
* Change `PaymentLink.CreateParamsLineItem.price` to be optional
54
+
* Add support for new value `America/Coyhaique` on enum `reporting.ReportRun.CreateParamsParameter.timezone`
* Add support for `aed`, `bgn`, `huf`, and `ron` on `Terminal.Configuration.Tipping`, `terminal.Configuration.CreateParamsTipping`, and `terminal.Configuration.ModifyParamsTipping`
58
+
* Add support for new value `2025-07-30.basil` on enum `WebhookEndpoint.CreateParams.api_version`
59
+
* [#1537](https://github.com/stripe/stripe-python/pull/1537) Fix timeout type hint in RequestsClient
60
+
36
61
## 12.4.0b2 - 2025-07-09
37
62
* [#1536](https://github.com/stripe/stripe-python/pull/1536) Pull in V2 FinancialAccount changes for June release
38
63
* Add support for `close` and `create` methods on resource `v2.money_management.FinancialAccount`
@@ -86,6 +111,8 @@ This release changes the pinned API version to `2025-06-30.preview`.
86
111
* Remove support for error code `outbound_payment_recipient_email_does_not_exist` on `RecipientNotNotifiableError`
87
112
88
113
## 12.3.0 - 2025-07-01
114
+
This release changes the pinned API version to `2025-06-30.basil`.
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
@@ -642,7 +642,7 @@ class Verification(StripeObject):
642
642
classDocument(StripeObject):
643
643
back: Optional[ExpandableField["File"]]
644
644
"""
645
-
The back of a document returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `additional_verification`.
645
+
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).
646
646
"""
647
647
details: Optional[str]
648
648
"""
@@ -654,7 +654,7 @@ class Document(StripeObject):
654
654
"""
655
655
front: Optional[ExpandableField["File"]]
656
656
"""
657
-
The front of a document returned by a [file upload](https://stripe.com/docs/api#create_file) with a `purpose` value of `additional_verification`.
657
+
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).
0 commit comments