Interface CheckoutPaymentAuthorizationCancelledEvent

All Superinterfaces:
Event

public interface CheckoutPaymentAuthorizationCancelledEvent extends Event

Generated when a payment authorization is successfully cancelled in Checkout. This event indicates that the payment is cancelled before it is charged.


Example to create an instance using the builder pattern

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