Class CheckoutPaymentCancelAuthorizationFailedEventBuilder

java.lang.Object
com.commercetools.api.models.event.CheckoutPaymentCancelAuthorizationFailedEventBuilder
All Implemented Interfaces:
Builder<CheckoutPaymentCancelAuthorizationFailedEvent>

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

     CheckoutPaymentCancelAuthorizationFailedEvent checkoutPaymentCancelAuthorizationFailedEvent = CheckoutPaymentCancelAuthorizationFailedEvent.builder()
             .id("{id}")
             .notificationType("{notificationType}")
             .resourceType(EventSubscriptionResourceTypeId.CHECKOUT)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .data(dataBuilder -> dataBuilder)
             .build()