From 2734290661450eed6563da8675748737dec0f718 Mon Sep 17 00:00:00 2001 From: pricelees Date: Tue, 15 Jul 2025 18:32:56 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=95=84=EC=9A=94=ED=95=9C=20=EC=9D=91?= =?UTF-8?q?=EB=8B=B5=20=ED=95=84=EB=93=9C=EB=A7=8C=20=EA=B0=80=EC=A0=B8?= =?UTF-8?q?=EC=98=A4=EA=B8=B0=20=EC=9C=84=ED=95=9C=20\@JsonIgnorePropertie?= =?UTF-8?q?s=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../roomescape/payment/web/dto/response/PaymentResponse.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/roomescape/payment/web/dto/response/PaymentResponse.java b/src/main/java/roomescape/payment/web/dto/response/PaymentResponse.java index 45fac13d..ea351332 100644 --- a/src/main/java/roomescape/payment/web/dto/response/PaymentResponse.java +++ b/src/main/java/roomescape/payment/web/dto/response/PaymentResponse.java @@ -2,6 +2,9 @@ package roomescape.payment.web.dto.response; import java.time.OffsetDateTime; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; + +@JsonIgnoreProperties(ignoreUnknown = true) public record PaymentResponse( String paymentKey, String orderId,