Class PlatformFee
- java.lang.Object
-
- com.broadleafcommerce.paypal.micro.gateway.domain.orders.PlatformFee
-
- All Implemented Interfaces:
Serializable
public class PlatformFee extends Object implements Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PlatformFee()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MoneygetAmount()The fee for this transaction.PayeegetPayee()The recipient of the fee for this transaction.voidsetAmount(Money amount)The fee for this transaction.voidsetPayee(Payee payee)The recipient of the fee for this transaction.
-
-
-
Method Detail
-
setAmount
public void setAmount(Money amount)
The fee for this transaction.
-
setPayee
public void setPayee(Payee payee)
The recipient of the fee for this transaction. If you omit this value, the default is the API caller.
-
getAmount
public Money getAmount()
The fee for this transaction.
-
getPayee
public Payee getPayee()
The recipient of the fee for this transaction. If you omit this value, the default is the API caller.
-
-