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
logger.error("Parameter $parameterNamecan't have an empty @JsonPath annotation. At least two elements (the column name and a key) are required.", symbol)
* data class Example(@JsonPath("data", "id") val id: Int)
17
+
* data class Example(
18
+
* @ColumnName("data")
19
+
* @JsonPath("id")
20
+
* val id: Int
21
+
* )
18
22
* ```
19
23
*
20
-
* @param path The path to the JSON property. The first element of the array is always the column name.
24
+
* @param key The key of the JSON property.
25
+
* @param path Additional path to the JSON property. If the JSON property is nested, you can specify the path to the property.
21
26
* @param returnAsText Whether to return the JSON property as text. If `true`, the JSON property will be returned as a string. If `false`, the JSON property will be returned as JSON.
0 commit comments