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 Money
getConvertedAmount()
The converted payable amount.ExchangeRate
getExchangeRate()
The exchange rate that determines the amount that was debited from the merchant's PayPal account.Money
getPayableAmount()
The net amount debited from the merchant's PayPal account.void
setConvertedAmount(Money convertedAmount)
The converted payable amount.void
setExchangeRate(ExchangeRate exchangeRate)
The exchange rate that determines the amount that was debited from the merchant's PayPal account.void
setPayableAmount(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.
-
-