|
25 | 25 | import com.stripe.events.V2CoreAccountPersonUpdatedEventNotification; |
26 | 26 | import com.stripe.events.V2CoreAccountUpdatedEventNotification; |
27 | 27 | import com.stripe.events.V2CoreEventDestinationPingEventNotification; |
| 28 | +import com.stripe.events.V2CoreHealthEventGenerationFailureResolvedEventNotification; |
28 | 29 | import com.stripe.events.V2MoneyManagementAdjustmentCreatedEventNotification; |
29 | 30 | import com.stripe.events.V2MoneyManagementFinancialAccountCreatedEventNotification; |
30 | 31 | import com.stripe.events.V2MoneyManagementFinancialAccountUpdatedEventNotification; |
|
60 | 61 | import com.stripe.events.V2MoneyManagementReceivedDebitUpdatedEventNotification; |
61 | 62 | import com.stripe.events.V2MoneyManagementTransactionCreatedEventNotification; |
62 | 63 | import com.stripe.events.V2MoneyManagementTransactionUpdatedEventNotification; |
63 | | -import com.stripe.events.V2PaymentsOffSessionPaymentAuthorizationAttemptFailedEventNotification; |
64 | | -import com.stripe.events.V2PaymentsOffSessionPaymentAuthorizationAttemptStartedEventNotification; |
65 | | -import com.stripe.events.V2PaymentsOffSessionPaymentCanceledEventNotification; |
66 | | -import com.stripe.events.V2PaymentsOffSessionPaymentCreatedEventNotification; |
67 | | -import com.stripe.events.V2PaymentsOffSessionPaymentFailedEventNotification; |
68 | | -import com.stripe.events.V2PaymentsOffSessionPaymentRequiresCaptureEventNotification; |
69 | | -import com.stripe.events.V2PaymentsOffSessionPaymentSucceededEventNotification; |
70 | 64 | import com.stripe.exception.SignatureVerificationException; |
71 | 65 | import com.stripe.model.v2.core.EventNotification; |
72 | 66 | import java.util.HashMap; |
@@ -323,6 +317,12 @@ public StripeEventRouter on_V2CoreEventDestinationPingEventNotification( |
323 | 317 | return this; |
324 | 318 | } |
325 | 319 |
|
| 320 | + public StripeEventRouter on_V2CoreHealthEventGenerationFailureResolvedEventNotification( |
| 321 | + EventHandler<V2CoreHealthEventGenerationFailureResolvedEventNotification> handler) { |
| 322 | + this.register("v2.core.health.event_generation_failure.resolved", handler); |
| 323 | + return this; |
| 324 | + } |
| 325 | + |
326 | 326 | public StripeEventRouter on_V2MoneyManagementAdjustmentCreatedEventNotification( |
327 | 327 | EventHandler<V2MoneyManagementAdjustmentCreatedEventNotification> handler) { |
328 | 328 | this.register("v2.money_management.adjustment.created", handler); |
@@ -532,52 +532,6 @@ public StripeEventRouter on_V2MoneyManagementTransactionUpdatedEventNotification |
532 | 532 | this.register("v2.money_management.transaction.updated", handler); |
533 | 533 | return this; |
534 | 534 | } |
535 | | - |
536 | | - public StripeEventRouter |
537 | | - on_V2PaymentsOffSessionPaymentAuthorizationAttemptFailedEventNotification( |
538 | | - EventHandler<V2PaymentsOffSessionPaymentAuthorizationAttemptFailedEventNotification> |
539 | | - handler) { |
540 | | - this.register("v2.payments.off_session_payment.authorization_attempt_failed", handler); |
541 | | - return this; |
542 | | - } |
543 | | - |
544 | | - public StripeEventRouter |
545 | | - on_V2PaymentsOffSessionPaymentAuthorizationAttemptStartedEventNotification( |
546 | | - EventHandler<V2PaymentsOffSessionPaymentAuthorizationAttemptStartedEventNotification> |
547 | | - handler) { |
548 | | - this.register("v2.payments.off_session_payment.authorization_attempt_started", handler); |
549 | | - return this; |
550 | | - } |
551 | | - |
552 | | - public StripeEventRouter on_V2PaymentsOffSessionPaymentCanceledEventNotification( |
553 | | - EventHandler<V2PaymentsOffSessionPaymentCanceledEventNotification> handler) { |
554 | | - this.register("v2.payments.off_session_payment.canceled", handler); |
555 | | - return this; |
556 | | - } |
557 | | - |
558 | | - public StripeEventRouter on_V2PaymentsOffSessionPaymentCreatedEventNotification( |
559 | | - EventHandler<V2PaymentsOffSessionPaymentCreatedEventNotification> handler) { |
560 | | - this.register("v2.payments.off_session_payment.created", handler); |
561 | | - return this; |
562 | | - } |
563 | | - |
564 | | - public StripeEventRouter on_V2PaymentsOffSessionPaymentFailedEventNotification( |
565 | | - EventHandler<V2PaymentsOffSessionPaymentFailedEventNotification> handler) { |
566 | | - this.register("v2.payments.off_session_payment.failed", handler); |
567 | | - return this; |
568 | | - } |
569 | | - |
570 | | - public StripeEventRouter on_V2PaymentsOffSessionPaymentRequiresCaptureEventNotification( |
571 | | - EventHandler<V2PaymentsOffSessionPaymentRequiresCaptureEventNotification> handler) { |
572 | | - this.register("v2.payments.off_session_payment.requires_capture", handler); |
573 | | - return this; |
574 | | - } |
575 | | - |
576 | | - public StripeEventRouter on_V2PaymentsOffSessionPaymentSucceededEventNotification( |
577 | | - EventHandler<V2PaymentsOffSessionPaymentSucceededEventNotification> handler) { |
578 | | - this.register("v2.payments.off_session_payment.succeeded", handler); |
579 | | - return this; |
580 | | - } |
581 | 535 | // event-router-methods: The end of the section generated from our OpenAPI spec |
582 | 536 |
|
583 | 537 | /** |
|
0 commit comments