We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61974f9 commit 18d7186Copy full SHA for 18d7186
1 file changed
core/network/src/main/kotlin/com/ninecraft/booket/core/network/di/NetworkModule.kt
@@ -24,9 +24,13 @@ import javax.inject.Singleton
24
private const val MaxTimeoutMillis = 15_000L
25
26
private val jsonRule = Json {
27
+ // 기본값도 JSON에 포함하여 직렬화
28
encodeDefaults = true
29
+ // JSON에 정의되지 않은 키는 무시 (역직렬화 시 에러 방지)
30
ignoreUnknownKeys = true
31
+ // JSON을 보기 좋게 들여쓰기하여 포맷팅
32
prettyPrint = true
33
+ // 엄격하지 않은 파싱 (따옴표 없는 키, 후행 쉼표 등 허용)
34
isLenient = true
35
}
36
0 commit comments