Class PaymentUpdateBuilder

java.lang.Object
com.commercetools.api.models.payment.PaymentUpdateBuilder
All Implemented Interfaces:
Builder<PaymentUpdate>

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

     PaymentUpdate paymentUpdate = PaymentUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()
 
  • Constructor Details

    • PaymentUpdateBuilder

      public PaymentUpdateBuilder()
  • Method Details