Class NetAmountBreakdownItem
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.NetAmountBreakdownItem
-
- All Implemented Interfaces:
Serializable
public class NetAmountBreakdownItem extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NetAmountBreakdownItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MoneygetConvertedAmount()The converted payable amount.ExchangeRategetExchangeRate()The exchange rate that determines the amount that was debited from the merchant's PayPal account.MoneygetPayableAmount()The net amount debited from the merchant's PayPal account.voidsetConvertedAmount(Money convertedAmount)The converted payable amount.voidsetExchangeRate(ExchangeRate exchangeRate)The exchange rate that determines the amount that was debited from the merchant's PayPal account.voidsetPayableAmount(Money payableAmount)The net amount debited from the merchant's PayPal account.
-
-
-
Method Detail
-
setConvertedAmount
public void setConvertedAmount(Money convertedAmount)
The converted payable amount.
-
setExchangeRate
public void setExchangeRate(ExchangeRate exchangeRate)
The exchange rate that determines the amount that was debited from the merchant's PayPal account.
-
setPayableAmount
public void setPayableAmount(Money payableAmount)
The net amount debited from the merchant's PayPal account.
-
getConvertedAmount
public Money getConvertedAmount()
The converted payable amount.
-
getExchangeRate
public ExchangeRate getExchangeRate()
The exchange rate that determines the amount that was debited from the merchant's PayPal account.
-
getPayableAmount
public Money getPayableAmount()
The net amount debited from the merchant's PayPal account.
-
-