Push
methodBaas.Push()
A class to model a Baas Notification.
Set the path in the options object.
@constructor
@param {object} options {client:client, data: {'key': 'value'}, path:'path'}
Baas.Push = function(options) {
if(options){
this._client = options.client;
this._data = options.data || {};
this._data.type = "pushes";
}
}
Baas.Push.prototype = new Baas.Entity();