cybersource-api
Version:
Module for connect with CyberSource by soap methods.
18 lines (17 loc) • 352 B
JavaScript
module.exports = class PurchaseTotals {
constructor(currency,grandTotalAmount){
this.currency = currency;
this.grandTotalAmount = grandTotalAmount;
}
getJSON(){
return {
currency:this.currency,
grandTotalAmount:this.grandTotalAmount
}
}
getOnlyCurrencyJSON(){
return {
currency:this.currency
}
}
}