UNPKG

helpscout-mailbox-api

Version:
14 lines (10 loc) 220 B
'use strict'; class CustomerProperty { constructor (client) { this.client = client; } list (params = {}) { return this.client.get('customer-properties', params); } } module.exports = CustomerProperty;