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
Add chainable JSON access with JsonMap to documentation, including examples in README, API reference, and usage guides for Java and Kotlin. Update contact email for corporate sponsorship.
Copy file name to clipboardExpand all lines: docs/docs/usage/json-handling.md
+106Lines changed: 106 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,112 @@ Post post = Api.get("https://jsonplaceholder.typicode.com/posts/1")
45
45
System.out.println("Title: "+ post.title);
46
46
```
47
47
48
+
## Chainable JSON Access with JsonMap
49
+
50
+
When working with deeply nested JSON responses, the traditional approach requires multiple explicit casts to `Map<String, Object>`, which creates verbose and error-prone code. JsonMap provides a clean, chainable alternative.
0 commit comments