When making API calls, the responses vary between returning a subset of properties, the whole object, or nothing.
For the most part GET requests will return the whole object, but creates/updates return subsets.
In an effort to make the responses standard, what would we like to do:
Options:
Return a partial class with some missing properties (for the subset responses)
Return the deserialized response directly from vercel
Return a new Object that represents the response for the API call (similar to the aws-sdk for javascript)