values
parsemodel.parse(response, options) parse is called whenever a model's data is returned by the server, in
syncmodel.sync(method, model, [options]) Uses Backbone.sync
getmodel.get(attribute) Get the current value of an attribute from the model. For example: note.get("title")
fetchmodel.fetch([options]) Merges the model's state with attributes fetched from the server by delegating to
clonemodel.clone() Returns a new instance of the model with identical attributes.
toJSONmodel.toJSON([options]) Return a shallow copy of the model's
setmodel.set(attributes, [options]) Set a hash of attributes (one or many) on the model. If any of the attributes change the model's
unsetmodel.unset(attribute, [options]) Remove an attribute by deleting it from the internal attributes hash. Fires a "change"
idmodel.id A special property of models, the id is an arbitrary string (integer id or UUID). If you set the id in the
Page 3 of 4