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 Money
getAmount()
The fee for this transaction.Payee
getPayee()
The recipient of the fee for this transaction.void
setAmount(Money amount)
The fee for this transaction.void
setPayee(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.
-
-