Class MyPaymentBuilder

java.lang.Object
com.commercetools.api.models.me.MyPaymentBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<MyPayment>

public class MyPaymentBuilder extends Object implements io.vrap.rmf.base.client.Builder<MyPayment>
MyPaymentBuilder
Example to create an instance using the builder pattern

     MyPayment myPayment = MyPayment.builder()
             .id("{id}")
             .version(0.3)
             .amountPlanned(amountPlannedBuilder -> amountPlannedBuilder)
             .paymentMethodInfo(paymentMethodInfoBuilder -> paymentMethodInfoBuilder)
             .plusTransactions(transactionsBuilder -> transactionsBuilder)
             .build()