From 8defc56d1eef5a23d4079ea89bd4e2b1ca6d0f75 Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 12 Aug 2025 18:22:37 +0900 Subject: [PATCH] =?UTF-8?q?ExternalApiData=EC=97=90=20@JsonIgnorePropertie?= =?UTF-8?q?s(ignoreUnknown=20=3D=20true)=EB=A5=BC=20=EC=B6=94=EA=B0=80?= =?UTF-8?q?=ED=95=98=EC=97=AC=20=EC=97=86=EB=8A=94=20=ED=95=84=EB=93=9C?= =?UTF-8?q?=EB=8A=94=20=EB=AC=B4=EC=8B=9C=ED=95=98=EB=8F=84=EB=A1=9D=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/admin/chat/character/dto/ChatCharacterDto.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/dto/ChatCharacterDto.kt b/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/dto/ChatCharacterDto.kt index baf6881..6b89ac7 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/dto/ChatCharacterDto.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/dto/ChatCharacterDto.kt @@ -1,5 +1,6 @@ package kr.co.vividnext.sodalive.admin.chat.character.dto +import com.fasterxml.jackson.annotation.JsonIgnoreProperties import com.fasterxml.jackson.annotation.JsonProperty data class ChatCharacterPersonalityRequest( @@ -52,6 +53,7 @@ data class ExternalApiResponse( @JsonProperty("message") val message: String? = null ) +@JsonIgnoreProperties(ignoreUnknown = true) data class ExternalApiData( @JsonProperty("id") val id: String )