paypal-masspayments-node
Version:
Making payments with MassPayment NVP
18 lines (13 loc) • 362 B
JavaScript
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;