braintree
Version:
A library for server-side integrating with Braintree.
14 lines (10 loc) • 321 B
JavaScript
;
let AttributeSetter = require("./attribute_setter").AttributeSetter;
// NEXT_MAJOR_VERSION remove this class
// SamsungPayCard has been deprecated
class SamsungPayCard extends AttributeSetter {
constructor(attributes) {
super(attributes);
}
}
module.exports = { SamsungPayCard: SamsungPayCard };