UNPKG

doku-nodejs-library

Version:
16 lines (13 loc) 376 B
class PaymentNotificationResponseVirtualAccountConfigDTO { constructor(minAmount,maxAmount) { this.minAmount = minAmount; this.maxAmount = maxAmount } toObject() { return { minAmount: this.minAmount, maxAmount: this.maxAmount }; } } module.exports = PaymentNotificationResponseVirtualAccountConfigDTO;