Skip to content

Commit 1f2429b

Browse files
oschwaldclaude
andcommitted
Update minFraud examples to use lastDigits instead of deprecated last4Digits
Replace deprecated last4Digits/Last4Digits with lastDigits/LastDigits: - C#: Last4Digits → LastDigits - Java: .last4Digits() → .lastDigits() - JavaScript: last4digits → lastDigits 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent 8a91c83 commit 1f2429b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/minfraud/evaluate-a-transaction.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ public class MinFraudExample
624624
BankPhoneNumber = "555-555-5555",
625625
AvsResult = 'Y',
626626
CvvResult = 'N',
627-
Last4Digits = "1234"
627+
LastDigits = "1234"
628628
},
629629
Order = new Order
630630
{
@@ -711,7 +711,7 @@ Transaction request = new Transaction.Builder(
711711
.bankPhoneNumber("555-555-5555")
712712
.cvvResult('Y')
713713
.issuerIdNumber("411111")
714-
.last4Digits("1234")
714+
.lastDigits("1234")
715715
.build()
716716
).email(
717717
new Email.Builder()
@@ -855,7 +855,7 @@ try {
855855
bankPhoneNumber: '555-555-5555',
856856
cvvResult: 'B',
857857
issuerIdNumber: '411111',
858-
last4digits: '1234',
858+
lastDigits: '1234',
859859
token: 'a_token',
860860
}),
861861
order: new minFraud.Order({

0 commit comments

Comments
 (0)