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
Look into adding functionality to the API to support the caller's own type being deserialized.
This would be similar to a GORM query. For example:
var c customStruct if err := resource.NeatQuery(&c); err != nil { log.Println(err) } fmt.Println(c.Name)
Since the SFDC services return JSON, I think this would simply end up wrapping json.Unmarshal.
json.Unmarshal
See what it would take to extend this client sdk and keep it backwards compatible. Use this issue for conversation, suggestions, etc.
The text was updated successfully, but these errors were encountered:
Guitarbum722
No branches or pull requests
Look into adding functionality to the API to support the caller's own type being deserialized.
This would be similar to a GORM query. For example:
Since the SFDC services return JSON, I think this would simply end up wrapping
json.Unmarshal
.See what it would take to extend this client sdk and keep it backwards compatible.
Use this issue for conversation, suggestions, etc.
The text was updated successfully, but these errors were encountered: