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/_payment_link.py
+14
Original file line number
Diff line number
Diff line change
@@ -1694,6 +1694,14 @@ class ModifyParams(RequestOptions):
1694
1694
"""
1695
1695
The list of payment method types that customers can use. Pass an empty string to enable dynamic payment methods that use your [payment method settings](https://dashboard.stripe.com/settings/payment_methods).
1696
1696
"""
1697
+
phone_number_collection: NotRequired[
1698
+
"PaymentLink.ModifyParamsPhoneNumberCollection"
1699
+
]
1700
+
"""
1701
+
Controls phone number collection settings during checkout.
1702
+
1703
+
We recommend that you review your privacy policy and check with your legal contacts.
@@ -2033,6 +2041,12 @@ class ModifyParamsPaymentIntentData(TypedDict):
2033
2041
A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
Copy file name to clipboardexpand all lines: stripe/_payment_link_service.py
+14
Original file line number
Diff line number
Diff line change
@@ -1037,6 +1037,14 @@ class UpdateParams(TypedDict):
1037
1037
"""
1038
1038
The list of payment method types that customers can use. Pass an empty string to enable dynamic payment methods that use your [payment method settings](https://dashboard.stripe.com/settings/payment_methods).
@@ -1384,6 +1392,12 @@ class UpdateParamsPaymentIntentData(TypedDict):
1384
1392
A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/connect/separate-charges-and-transfers) for details.
0 commit comments