JSC Gets An Overhaul
The client now returns the most accurate type it expects wherever possible making request parameters more explicit:
// old example
response, err := jsc.Get("http://api", "user", "")
list, err := response.GetList()
// new example
list, response, err := jsc.GetList("http://api", "user")