java.lang.Object
com.broadleafcommerce.paypal.micro.gateway.domain.orders.PaymentCollection
All Implemented Interfaces:
Serializable

public class PaymentCollection extends Object implements Serializable
Author:
Dima Myroniuk (dmyroniuk)
See Also:
  • Constructor Details

    • PaymentCollection

      public PaymentCollection()
  • Method Details

    • setAuthorizations

      public void setAuthorizations(List<Authorization> authorizations)
      An array of authorized payments for a purchase unit. A purchase unit can have zero or more authorized payments.
    • setCaptures

      public void setCaptures(List<Capture> captures)
      An array of captured payments for a purchase unit. A purchase unit can have zero or more captured payments.
    • setRefunds

      public void setRefunds(List<Refund> refunds)
      An array of refunds for a purchase unit. A purchase unit can have zero or more refunds.
    • getAuthorizations

      public List<Authorization> getAuthorizations()
      An array of authorized payments for a purchase unit. A purchase unit can have zero or more authorized payments.
    • getCaptures

      public List<Capture> getCaptures()
      An array of captured payments for a purchase unit. A purchase unit can have zero or more captured payments.
    • getRefunds

      public List<Refund> getRefunds()
      An array of refunds for a purchase unit. A purchase unit can have zero or more refunds.