Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

public record PaymentConfirmResponse(
String paymentKey,
Integer amount,
Integer totalAmount,
String status,
String method,
String requestedAt,
Expand All @@ -24,7 +24,7 @@ public Payment toEntity() {

return Payment.builder()
.paymentKey(paymentKey)
.amount(amount)
.amount(totalAmount)
.paymentStatus(PaymentStatus.valueOf(status))
.paymentMethod(PaymentMethod.from(method))
.requestedAt(requested)
Expand Down
Loading