@hipay/hipay-enterprise-sdk-nodejs
Version:
The HiPay Enterprise SDK for NodeJS is a library for developers who want to integrate HiPay Enterprise payment methods to any NodeJS platform.
36 lines (27 loc) • 748 B
JavaScript
;
const AbstractResponsePart = require('../AbstractResponsePart');
class PaymentMethod extends AbstractResponsePart {
/**
* @param {Object} values
* @param {String} [values.name]
* @param {String} [values.description]
*/
constructor(values) {
if (typeof values !== 'object') {
values = {};
}
super(values);
if (Object.hasOwn(values, 'name')) {
this.name = values.name;
}
if (Object.hasOwn(values, 'description')) {
this.description = values.description;
}
}
initValues() {
super.initValues();
this.name = null;
this.description = null;
}
}
module.exports = PaymentMethod;