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
Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.
215
+
Returns a list of transactions that have contributed to the Stripe account balance (for example, charges, transfers, and so on). The transactions return in sorted order, with the most recent transactions appearing first.
215
216
216
-
Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history.
217
+
The previous name of this endpoint was “Balance history,” and it used the path /v1/balance/history.
Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.
237
+
Returns a list of transactions that have contributed to the Stripe account balance (for example, charges, transfers, and so on). The transactions return in sorted order, with the most recent transactions appearing first.
237
238
238
-
Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history.
239
+
The previous name of this endpoint was “Balance history,” and it used the path /v1/balance/history.
Copy file name to clipboardExpand all lines: stripe/_balance_transaction_service.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ def list(
24
24
options: Optional["RequestOptions"] =None,
25
25
) ->"ListObject[BalanceTransaction]":
26
26
"""
27
-
Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.
27
+
Returns a list of transactions that have contributed to the Stripe account balance (for example, charges, transfers, and so on). The transactions return in sorted order, with the most recent transactions appearing first.
28
28
29
-
Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history.
29
+
The previous name of this endpoint was “Balance history,” and it used the path /v1/balance/history.
30
30
"""
31
31
returncast(
32
32
"ListObject[BalanceTransaction]",
@@ -45,9 +45,9 @@ async def list_async(
45
45
options: Optional["RequestOptions"] =None,
46
46
) ->"ListObject[BalanceTransaction]":
47
47
"""
48
-
Returns a list of transactions that have contributed to the Stripe account balance (e.g., charges, transfers, and so forth). The transactions are returned in sorted order, with the most recent transactions appearing first.
48
+
Returns a list of transactions that have contributed to the Stripe account balance (for example, charges, transfers, and so on). The transactions return in sorted order, with the most recent transactions appearing first.
49
49
50
-
Note that this endpoint was previously called “Balance history” and used the path /v1/balance/history.
50
+
The previous name of this endpoint was “Balance history,” and it used the path /v1/balance/history.
Copy file name to clipboardExpand all lines: stripe/_charge.py
+18-2Lines changed: 18 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -457,6 +457,10 @@ class Billie(StripeObject):
457
457
"""
458
458
459
459
classBizum(StripeObject):
460
+
buyer_id: Optional[str]
461
+
"""
462
+
A unique identifier for the buyer as determined by the local payment processor.
463
+
"""
460
464
transaction_id: Optional[str]
461
465
"""
462
466
The Bizum transaction ID associated with this payment.
@@ -902,6 +906,10 @@ class ShippingAddress(StripeObject):
902
906
"""
903
907
Populated if this transaction used 3D Secure authentication.
904
908
"""
909
+
transaction_link_id: Optional[str]
910
+
"""
911
+
Transaction Link ID (TLID) is a unique identifier for a transaction. This is used by some card networks, such as Mastercard, for transaction linking, in addition to Network Transaction IDs. This value will be present if it is returned by the financial network in the authorization response, and null otherwise.
912
+
"""
905
913
wallet: Optional[Wallet]
906
914
"""
907
915
If this Card is part of a card wallet, this contains the details of the card wallet.
@@ -1118,13 +1126,17 @@ class Crypto(StripeObject):
Copy file name to clipboardExpand all lines: stripe/_credit_note.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -388,6 +388,8 @@ def create(
388
388
389
389
You may issue multiple credit notes for an invoice. Each credit note may increment the invoice's pre_payment_credit_notes_amount,
390
390
post_payment_credit_notes_amount, or both, depending on the invoice's amount_remaining at the time of credit note creation.
391
+
392
+
For invoices that also have refunds created through the [Refund API](https://docs.stripe.com/docs/api/refunds), the credit note API subtracts those refund amounts from the maximum creditable amount. This prevents the combined credit notes and refunds from exceeding the invoice amount. If you use both, ensure the combined total does not exceed the invoice's paid amount.
391
393
"""
392
394
returncast(
393
395
"CreditNote",
@@ -416,6 +418,8 @@ async def create_async(
416
418
417
419
You may issue multiple credit notes for an invoice. Each credit note may increment the invoice's pre_payment_credit_notes_amount,
418
420
post_payment_credit_notes_amount, or both, depending on the invoice's amount_remaining at the time of credit note creation.
421
+
422
+
For invoices that also have refunds created through the [Refund API](https://docs.stripe.com/docs/api/refunds), the credit note API subtracts those refund amounts from the maximum creditable amount. This prevents the combined credit notes and refunds from exceeding the invoice amount. If you use both, ensure the combined total does not exceed the invoice's paid amount.
Copy file name to clipboardExpand all lines: stripe/_credit_note_service.py
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -119,6 +119,8 @@ def create(
119
119
120
120
You may issue multiple credit notes for an invoice. Each credit note may increment the invoice's pre_payment_credit_notes_amount,
121
121
post_payment_credit_notes_amount, or both, depending on the invoice's amount_remaining at the time of credit note creation.
122
+
123
+
For invoices that also have refunds created through the [Refund API](https://docs.stripe.com/docs/api/refunds), the credit note API subtracts those refund amounts from the maximum creditable amount. This prevents the combined credit notes and refunds from exceeding the invoice amount. If you use both, ensure the combined total does not exceed the invoice's paid amount.
122
124
"""
123
125
returncast(
124
126
"CreditNote",
@@ -150,6 +152,8 @@ async def create_async(
150
152
151
153
You may issue multiple credit notes for an invoice. Each credit note may increment the invoice's pre_payment_credit_notes_amount,
152
154
post_payment_credit_notes_amount, or both, depending on the invoice's amount_remaining at the time of credit note creation.
155
+
156
+
For invoices that also have refunds created through the [Refund API](https://docs.stripe.com/docs/api/refunds), the credit note API subtracts those refund amounts from the maximum creditable amount. This prevents the combined credit notes and refunds from exceeding the invoice amount. If you use both, ensure the combined total does not exceed the invoice's paid amount.
Copy file name to clipboardExpand all lines: stripe/_dispute.py
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,12 @@ class Dispute(
35
35
36
36
classEvidence(StripeObject):
37
37
classEnhancedEvidence(StripeObject):
38
+
classMastercardCompliance(StripeObject):
39
+
fee_acknowledged: bool
40
+
"""
41
+
A field acknowledging the fee incurred when countering a Mastercard compliance dispute. If this field is set to true, evidence can be submitted for the compliance dispute.
42
+
"""
43
+
38
44
classVisaCompellingEvidence3(StripeObject):
39
45
classDisputedTransaction(StripeObject):
40
46
classShippingAddress(StripeObject):
@@ -179,9 +185,11 @@ class VisaCompliance(StripeObject):
179
185
A field acknowledging the fee incurred when countering a Visa compliance dispute. If this field is set to true, evidence can be submitted for the compliance dispute. Stripe collects a 500 USD (or local equivalent) amount to cover the network costs associated with resolving compliance disputes. Stripe refunds the 500 USD network fee if you win the dispute.
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).
0 commit comments