lib/result.js (6 lines of code) (raw):
/*!
* node-gcm
* Copyright(c) 2013 Marcus Farkas <toothlessgear@finitebox.com>
* MIT Licensed
*/
function Result() {
this.messageId = undefined;
this.canonicalRegistrationId = undefined;
this.errorCode = undefined;
}
module.exports = Result;