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
{{ message }}
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.
Now that Swift 4 has quite nice JSONDecoder functionality, could we support that using passing instances of Data or Decoder instead of the JSON Dictionary?
Currently the Request gets Any ( [String: Any] ) passed to
Now that Swift 4 has quite nice JSONDecoder functionality, could we support that using passing instances of Data or Decoder instead of the JSON Dictionary?
Currently the Request gets Any ( [String: Any] ) passed to
which in turn needs to be encoded to Data using
Could we skip this by passing around Data or Decoder?
like
or
Or is this something that limits the generic use of the framework?
The text was updated successfully, but these errors were encountered: