Skip to content

Commit 9c391a0

Browse files
committed
chore: update PaymentRequest to use String productCode instead of UUID
1 parent edc8988 commit 9c391a0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/main/java/com/acme/payment/PaymentRequest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
package com.acme.payment;
22

33
import java.math.BigDecimal;
4-
import java.util.UUID;
54

6-
public record PaymentRequest(UUID productCode,
5+
public record PaymentRequest(String productCode,
76
String productName,
87
int quantity,
98
BigDecimal unitPrice) {

0 commit comments

Comments
 (0)