@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.
19 lines (14 loc) • 608 B
JavaScript
;
const AbstractMapper = require('../../Mapper/AbstractMapper');
const Issuer = require('../Issuer');
class IssuerMapper extends AbstractMapper {
mapResponseToModel() {
const values = {
fullname: typeof this.source.fullname !== 'undefined' ? this.source.fullname : null,
institution: typeof this.source.institution !== 'undefined' ? this.source.institution : null,
country: typeof this.source.country !== 'undefined' ? this.source.country : null
};
this._modelObject = new Issuer(values);
}
}
module.exports = IssuerMapper;