<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| var AwesomeObject = function() { | |
| this.init() | |
| }; | |
| AwesomeObject.prototype = { | |
| init: function() { | |
| _.bindAll(this, 'onSuccess', 'onError', 'onComplete') | |
| // or | |
| this.onSuccess = $.proxy(this.onSuccess, this) |