Remove the SingleResource<T> class
Today, we have two response types, SingleResource<T> and ListedResourceResponse<T>. The listed one is needed since it contains metadata such as offset and pagesize, but SingleResource is superfluous and probably not needed. Let's see if we can remove it.
CC @brokenprogrammer
Remove the
SingleResource<T>classToday, we have two response types,
SingleResource<T>andListedResourceResponse<T>. The listed one is needed since it contains metadata such as offset and pagesize, butSingleResourceis superfluous and probably not needed. Let's see if we can remove it.CC @brokenprogrammer