Class PaymentCollection
java.lang.Object
com.broadleafcommerce.paypal.micro.gateway.domain.orders.PaymentCollection
- All Implemented Interfaces:
Serializable
- Author:
- Dima Myroniuk (dmyroniuk)
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionAn array of authorized payments for a purchase unit.An array of captured payments for a purchase unit.An array of refunds for a purchase unit.void
setAuthorizations
(List<Authorization> authorizations) An array of authorized payments for a purchase unit.void
setCaptures
(List<Capture> captures) An array of captured payments for a purchase unit.void
setRefunds
(List<Refund> refunds) An array of refunds for a purchase unit.
-
Constructor Details
-
PaymentCollection
public PaymentCollection()
-
-
Method Details
-
setAuthorizations
An array of authorized payments for a purchase unit. A purchase unit can have zero or more authorized payments. -
setCaptures
An array of captured payments for a purchase unit. A purchase unit can have zero or more captured payments. -
setRefunds
An array of refunds for a purchase unit. A purchase unit can have zero or more refunds. -
getAuthorizations
An array of authorized payments for a purchase unit. A purchase unit can have zero or more authorized payments. -
getCaptures
An array of captured payments for a purchase unit. A purchase unit can have zero or more captured payments. -
getRefunds
An array of refunds for a purchase unit. A purchase unit can have zero or more refunds.
-