You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -18,6 +19,12 @@ data class BookSearchResponse private constructor(
18
19
@field:Schema(description = "검색 결과 제목", example = "데미안")
19
20
valtitle:String?,
20
21
22
+
@field:Schema(
23
+
description = "검색 결과 링크",
24
+
example = "http://www.aladin.co.kr/shop/wsarch.aspx?SearchTarget=Book&query=%EC%95%84%EB%B0%94%EC%9D%98+%ED%95%B4%EB%B0%A9%EC%9D%BC%EC%A7%80&partner=openAPI"
25
+
)
26
+
vallink:String?,
27
+
21
28
@field:Schema(description = "출간일", example = "2025-07-30")
22
29
valpubDate:String?,
23
30
@@ -51,6 +58,7 @@ data class BookSearchResponse private constructor(
51
58
returnBookSearchResponse(
52
59
version = response.version,
53
60
title = response.title,
61
+
link = response.link,
54
62
pubDate = response.pubDate,
55
63
totalResults = response.totalResults,
56
64
startIndex = response.startIndex,
@@ -63,7 +71,6 @@ data class BookSearchResponse private constructor(
0 commit comments