Client.prototype.getShippingClasses = function(callback, access_token) {
    var url = this.getRootUrl(access_token).replace(this.endpointToken, 
        this.endpoints.shipping_classes);
    this.get(url, callback);
};