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
Stripe has features in the [private preview phase](https://docs.stripe.com/release-phases) that can be accessed via versions of this package that have the `aX` suffix like `12.2.0a2`. These are invite-only features. Once invited, you can install the private preview SDKs by following the same instructions as forthe [public preview SDKs](https://github.com/stripe/stripe-python?tab=readme-ov-file#public-preview-sdks) above and replacing the suffix `b` with `a`in package versions.
283
+
Stripe has features in the [private preview phase](https://docs.stripe.com/release-phases) that can be accessed via versions of this package that have the `aX` suffix like `12.2.0a2`. You can install the private preview SDKs by following the same instructions as forthe [public preview SDKs](https://github.com/stripe/stripe-python?tab=readme-ov-file#public-preview-sdks) above and replacing the suffix `b` with `a`in package versions. Note that access to specific private preview API features may require separate approval.
@@ -982,6 +990,12 @@ class ShippingAddress(StripeObject):
982
990
}
983
991
984
992
classCardPresent(StripeObject):
993
+
classMulticapture(StripeObject):
994
+
status: Literal["available", "unavailable"]
995
+
"""
996
+
Indicates whether or not multiple captures are supported.
997
+
"""
998
+
985
999
classOffline(StripeObject):
986
1000
stored_at: Optional[int]
987
1001
"""
@@ -1120,6 +1134,7 @@ class Wallet(StripeObject):
1120
1134
"""
1121
1135
ID of the [location](https://docs.stripe.com/api/terminal/locations) that this transaction's reader is assigned to.
1122
1136
"""
1137
+
multicapture: Optional[Multicapture]
1123
1138
network: Optional[str]
1124
1139
"""
1125
1140
Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
Copy file name to clipboardExpand all lines: stripe/_confirmation_token.py
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -263,6 +263,12 @@ class Checks(StripeObject):
263
263
classGeneratedFrom(StripeObject):
264
264
classPaymentMethodDetails(StripeObject):
265
265
classCardPresent(StripeObject):
266
+
classMulticapture(StripeObject):
267
+
status: Literal["available", "unavailable"]
268
+
"""
269
+
Indicates whether or not multiple captures are supported.
270
+
"""
271
+
266
272
classOffline(StripeObject):
267
273
stored_at: Optional[int]
268
274
"""
@@ -406,6 +412,7 @@ class Wallet(StripeObject):
406
412
"""
407
413
ID of the [location](https://docs.stripe.com/api/terminal/locations) that this transaction's reader is assigned to.
408
414
"""
415
+
multicapture: Optional[Multicapture]
409
416
network: Optional[str]
410
417
"""
411
418
Identifies which network this charge was processed on. Can be `amex`, `cartes_bancaires`, `diners`, `discover`, `eftpos_au`, `interac`, `jcb`, `link`, `mastercard`, `unionpay`, `visa`, or `unknown`.
0 commit comments