Interface CheckoutPaymentRefundedEvent

All Superinterfaces:
Event

public interface CheckoutPaymentRefundedEvent extends Event

Generated when a payment is successfully refunded in Checkout. This event confirms that the refund has been processed and sent to your customer.


Example to create an instance using the builder pattern

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