@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.
18 lines (13 loc) • 350 B
JavaScript
;
class MapperInterface {
get mappedObject() {
throw new Error('You must implement this function');
}
get source() {
throw new Error('You must implement this function');
}
mapResponseToModel() {
throw new Error('You must implement this function');
}
}
module.exports = MapperInterface;