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