Skip to content

Commit 5acf1a6

Browse files
committed
regenerate
1 parent ab406dc commit 5acf1a6

File tree

1 file changed

+7
-53
lines changed

1 file changed

+7
-53
lines changed

src/main/java/com/stripe/StripeEventRouter.java

Lines changed: 7 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import com.stripe.events.V2CoreAccountPersonUpdatedEventNotification;
2626
import com.stripe.events.V2CoreAccountUpdatedEventNotification;
2727
import com.stripe.events.V2CoreEventDestinationPingEventNotification;
28+
import com.stripe.events.V2CoreHealthEventGenerationFailureResolvedEventNotification;
2829
import com.stripe.events.V2MoneyManagementAdjustmentCreatedEventNotification;
2930
import com.stripe.events.V2MoneyManagementFinancialAccountCreatedEventNotification;
3031
import com.stripe.events.V2MoneyManagementFinancialAccountUpdatedEventNotification;
@@ -60,13 +61,6 @@
6061
import com.stripe.events.V2MoneyManagementReceivedDebitUpdatedEventNotification;
6162
import com.stripe.events.V2MoneyManagementTransactionCreatedEventNotification;
6263
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;
7064
import com.stripe.exception.SignatureVerificationException;
7165
import com.stripe.model.v2.core.EventNotification;
7266
import java.util.HashMap;
@@ -323,6 +317,12 @@ public StripeEventRouter on_V2CoreEventDestinationPingEventNotification(
323317
return this;
324318
}
325319

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+
326326
public StripeEventRouter on_V2MoneyManagementAdjustmentCreatedEventNotification(
327327
EventHandler<V2MoneyManagementAdjustmentCreatedEventNotification> handler) {
328328
this.register("v2.money_management.adjustment.created", handler);
@@ -532,52 +532,6 @@ public StripeEventRouter on_V2MoneyManagementTransactionUpdatedEventNotification
532532
this.register("v2.money_management.transaction.updated", handler);
533533
return this;
534534
}
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-
}
581535
// event-router-methods: The end of the section generated from our OpenAPI spec
582536

583537
/**

0 commit comments

Comments
 (0)