UNPKG

helpscout-mailbox-api

Version:
14 lines (10 loc) 229 B
'use strict'; class Property { constructor (client) { this.client = client; } update (customerId, data = {}) { return this.client.put(`customers/${customerId}/properties`, data); } } module.exports = Property;