helpscout-mailbox-api
Version:
Node.js wrapper for Help Scout Mailbox API 2.0.
18 lines (13 loc) • 321 B
JavaScript
;
class Happiness {
constructor (client) {
this.client = client;
}
getOverallReport (params = {}) {
return this.client.get('reports/happiness', params);
}
getRatingsReport (params = {}) {
return this.client.get('reports/happiness/ratings', params);
}
}
module.exports = Happiness;