Converted the enum docstrings (which are not actually accessible in the code due to enum's implementation) from the various api.endpoint.routes modules, corresponding to the different API endpoints and all their routes, into a single docstring on the api.request.Request class. This is visible when looking up the help() on any of the fetch functions, as they all subclass this class.
Converted the enum docstrings (which are not actually accessible in the code due to enum's implementation) from the various
api.endpoint.routes
modules, corresponding to the different API endpoints and all their routes, into a single docstring on theapi.request.Request
class. This is visible when looking up thehelp()
on any of the fetch functions, as they all subclass this class.