fenix-hub/unirest-gdscript

Support object/class mapped responses

Closed this issue · 0 comments

# Response to Object
Book book = Unirest.get("http://localhost/books/1")
                   .asObject(Book.new())
                   .getBody();

this requires developing a JSON <-> GDScript class mapper. New project?