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
Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated).
263
-
"""
264
-
card: Optional[int]
265
-
"""
266
-
Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits).
267
-
"""
268
-
fpx: Optional[int]
269
-
"""
270
-
Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method.
271
-
"""
272
-
273
-
amount: int
274
-
"""
275
-
Balance amount.
276
-
"""
277
-
currency: str
278
-
"""
279
-
Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
280
-
"""
281
-
source_types: Optional[SourceTypes]
282
-
_inner_class_types= {"source_types": SourceTypes}
283
-
284
-
classPending(StripeObject):
285
-
classSourceTypes(StripeObject):
286
-
bank_account: Optional[int]
287
-
"""
288
-
Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated).
289
-
"""
290
-
card: Optional[int]
291
-
"""
292
-
Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits).
293
-
"""
294
-
fpx: Optional[int]
295
-
"""
296
-
Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method.
297
-
"""
298
-
299
-
amount: int
300
-
"""
301
-
Balance amount.
302
-
"""
303
-
currency: str
304
-
"""
305
-
Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
Available funds that you can transfer or pay out automatically by Stripe or explicitly through the [Transfers API](https://stripe.com/docs/api#transfers) or [Payouts API](https://stripe.com/docs/api#payouts). You can find the available balance for each currency and payment type in the `source_types` property.
@@ -343,7 +280,6 @@ class SourceTypes(StripeObject):
343
280
Funds that aren't available in the balance yet. You can find the pending balance for each currency and each payment type in the `source_types` property.
Allocated Funds configuration for this PaymentIntent.
112
-
"""
113
-
114
108
classAmountDetails(StripeObject):
115
109
classShipping(StripeObject):
116
110
amount: Optional[int]
@@ -3386,10 +3380,6 @@ class TransferData(StripeObject):
3386
3380
The account (if any) that the payment is attributed to for tax reporting, and where funds from the payment are transferred to after payment success.
3387
3381
"""
3388
3382
3389
-
allocated_funds: Optional[AllocatedFunds]
3390
-
"""
3391
-
Allocated Funds configuration for this PaymentIntent.
3392
-
"""
3393
3383
amount: int
3394
3384
"""
3395
3385
Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).
Copy file name to clipboardExpand all lines: stripe/params/_transfer_create_params.py
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,4 +46,3 @@ class TransferCreateParams(RequestOptions):
46
46
"""
47
47
A string that identifies this transaction as part of a group. See the [Connect documentation](https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-options) for details.
0 commit comments