braintree
Version:
A library for server-side integrating with Braintree.
14 lines (11 loc) • 319 B
JavaScript
;
/**
* Represents the payment method and priority associated with a PayPal customer session.
*/
class PaymentOptions {
constructor(paymentOption, recommendedPriority) {
this.paymentOption = paymentOption;
this.recommendedPriority = recommendedPriority;
}
}
module.exports = PaymentOptions;