Class PaymentChangeTransactionTimestampActionBuilder

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

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

     PaymentChangeTransactionTimestampAction paymentChangeTransactionTimestampAction = PaymentChangeTransactionTimestampAction.builder()
             .transactionId("{transactionId}")
             .timestamp(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .build()