| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 26x 1x 25x 20x | import Resource from 'resource';
/**
* Customers base resource
* @private
*/
export default class CustomersResource extends Resource {
/**
* Set the parent
* @param {Object} params
* @since 2.0.0
*/
setParent(params = {}) {
if (!params.customerId && !this.hasParentId()) {
throw TypeError('Missing parameter "customerId".');
} else if (params.customerId) {
this.setParentId(params.customerId);
}
}
}
|