UNPKG

paypal-masspayments-node

Version:
18 lines (13 loc) 362 B
function PaymentRequest(email, amount, uniqueId, note) { if(!email) { throw new Error('Invalid Email'); } if(!amount || amount <= 0) { throw new Error('Invalid Amount'); } this.email = email; this.amount = amount; this.uniqueId = uniqueId; this.note = note; } module.exports = PaymentRequest;