Class PaymentInfoBuilder

java.lang.Object
com.commercetools.api.models.order.PaymentInfoBuilder
All Implemented Interfaces:
Builder<PaymentInfo>

public class PaymentInfoBuilder extends Object implements Builder<PaymentInfo>
PaymentInfoBuilder
Example to create an instance using the builder pattern

     PaymentInfo paymentInfo = PaymentInfo.builder()
             .plusPayments(paymentsBuilder -> paymentsBuilder)
             .build()