We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Json?
String?
RequestView
Currently, RequestView only supports Data? as a return type.
Data?
This enhancement is to allow Json? and String? as responses as well by adding more initializers:
RequestView(myRequest) { (data: Data?) in ... } RequestView(myRequest) { (string: String?) in ... } RequestView(myRequest) { (json: Json?) in ... }
The text was updated successfully, but these errors were encountered:
Codable support is now available in RequestView #4 Json and String are stilled planned.
Json
String
Sorry, something went wrong.
I'm pushing this to v1.3.0 because it requires more than implementing more initializers...
I'm pushing this again 😄 I want to tag 1.3.0 now so people can use the new error and timeout additions.
carson-katri
No branches or pull requests
Currently,
RequestView
only supportsData?
as a return type.This enhancement is to allow
Json?
andString?
as responses as well by adding more initializers:The text was updated successfully, but these errors were encountered: