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/_balance.py
+65Lines changed: 65 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -194,6 +194,69 @@ class SourceTypes(StripeObject):
194
194
source_types: Optional[SourceTypes]
195
195
_inner_class_types= {"source_types": SourceTypes}
196
196
197
+
classRefundAndDisputePrefunding(StripeObject):
198
+
classAvailable(StripeObject):
199
+
classSourceTypes(StripeObject):
200
+
bank_account: Optional[int]
201
+
"""
202
+
Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated).
203
+
"""
204
+
card: Optional[int]
205
+
"""
206
+
Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits).
207
+
"""
208
+
fpx: Optional[int]
209
+
"""
210
+
Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method.
211
+
"""
212
+
213
+
amount: int
214
+
"""
215
+
Balance amount.
216
+
"""
217
+
currency: str
218
+
"""
219
+
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).
220
+
"""
221
+
source_types: Optional[SourceTypes]
222
+
_inner_class_types= {"source_types": SourceTypes}
223
+
224
+
classPending(StripeObject):
225
+
classSourceTypes(StripeObject):
226
+
bank_account: Optional[int]
227
+
"""
228
+
Amount coming from [legacy US ACH payments](https://docs.stripe.com/ach-deprecated).
229
+
"""
230
+
card: Optional[int]
231
+
"""
232
+
Amount coming from most payment methods, including cards as well as [non-legacy bank debits](https://docs.stripe.com/payments/bank-debits).
233
+
"""
234
+
fpx: Optional[int]
235
+
"""
236
+
Amount coming from [FPX](https://docs.stripe.com/payments/fpx), a Malaysian payment method.
237
+
"""
238
+
239
+
amount: int
240
+
"""
241
+
Balance amount.
242
+
"""
243
+
currency: str
244
+
"""
245
+
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).
@@ -225,6 +288,7 @@ class RetrieveParams(RequestOptions):
225
288
"""
226
289
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.
0 commit comments