transbank-sdk
Version:
Transbank SDK for Node.js
13 lines (12 loc) • 348 B
JavaScript
class BaseTransaction {
/**
* Constructor class Webpay Plus transaction.
* @param options You can pass options to use a custom configuration.
*/
constructor(options) {
if (options === null)
throw new Error("Options can't be null.");
this.options = options;
}
}
export default BaseTransaction;