All files / src/resources/payments base.js

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