- NamedTuple
- from_json
- JSON
JSON to NamedTuple
examples/json/json_to_named_tuple.cr
require "json" alias Thing = NamedTuple(name: String, number: Int32) thing_json = %{{"name": "table", "number": 3}} puts thing_json tg = Thing.from_json(thing_json) puts tg