|
25 | 25 | import com.stripe.events.V2CoreAccountPersonDeletedEventNotification; |
26 | 26 | import com.stripe.events.V2CoreAccountPersonUpdatedEventNotification; |
27 | 27 | import com.stripe.events.V2CoreAccountUpdatedEventNotification; |
| 28 | +import com.stripe.events.V2CoreBatchJobBatchFailedEventNotification; |
| 29 | +import com.stripe.events.V2CoreBatchJobCanceledEventNotification; |
| 30 | +import com.stripe.events.V2CoreBatchJobCompletedEventNotification; |
| 31 | +import com.stripe.events.V2CoreBatchJobCreatedEventNotification; |
| 32 | +import com.stripe.events.V2CoreBatchJobReadyForUploadEventNotification; |
| 33 | +import com.stripe.events.V2CoreBatchJobTimeoutEventNotification; |
| 34 | +import com.stripe.events.V2CoreBatchJobUpdatedEventNotification; |
| 35 | +import com.stripe.events.V2CoreBatchJobUploadTimeoutEventNotification; |
| 36 | +import com.stripe.events.V2CoreBatchJobValidatingEventNotification; |
| 37 | +import com.stripe.events.V2CoreBatchJobValidationFailedEventNotification; |
28 | 38 | import com.stripe.events.V2CoreEventDestinationPingEventNotification; |
29 | 39 | import com.stripe.events.V2CoreHealthEventGenerationFailureResolvedEventNotification; |
30 | 40 | import com.stripe.events.V2MoneyManagementAdjustmentCreatedEventNotification; |
@@ -319,6 +329,66 @@ public StripeEventNotificationHandler onV2CoreAccountPersonUpdated( |
319 | 329 | return this; |
320 | 330 | } |
321 | 331 |
|
| 332 | + public StripeEventNotificationHandler onV2CoreBatchJobBatchFailed( |
| 333 | + Callback<V2CoreBatchJobBatchFailedEventNotification> callback) { |
| 334 | + this.register("v2.core.batch_job.batch_failed", callback); |
| 335 | + return this; |
| 336 | + } |
| 337 | + |
| 338 | + public StripeEventNotificationHandler onV2CoreBatchJobCanceled( |
| 339 | + Callback<V2CoreBatchJobCanceledEventNotification> callback) { |
| 340 | + this.register("v2.core.batch_job.canceled", callback); |
| 341 | + return this; |
| 342 | + } |
| 343 | + |
| 344 | + public StripeEventNotificationHandler onV2CoreBatchJobCompleted( |
| 345 | + Callback<V2CoreBatchJobCompletedEventNotification> callback) { |
| 346 | + this.register("v2.core.batch_job.completed", callback); |
| 347 | + return this; |
| 348 | + } |
| 349 | + |
| 350 | + public StripeEventNotificationHandler onV2CoreBatchJobCreated( |
| 351 | + Callback<V2CoreBatchJobCreatedEventNotification> callback) { |
| 352 | + this.register("v2.core.batch_job.created", callback); |
| 353 | + return this; |
| 354 | + } |
| 355 | + |
| 356 | + public StripeEventNotificationHandler onV2CoreBatchJobReadyForUpload( |
| 357 | + Callback<V2CoreBatchJobReadyForUploadEventNotification> callback) { |
| 358 | + this.register("v2.core.batch_job.ready_for_upload", callback); |
| 359 | + return this; |
| 360 | + } |
| 361 | + |
| 362 | + public StripeEventNotificationHandler onV2CoreBatchJobTimeout( |
| 363 | + Callback<V2CoreBatchJobTimeoutEventNotification> callback) { |
| 364 | + this.register("v2.core.batch_job.timeout", callback); |
| 365 | + return this; |
| 366 | + } |
| 367 | + |
| 368 | + public StripeEventNotificationHandler onV2CoreBatchJobUpdated( |
| 369 | + Callback<V2CoreBatchJobUpdatedEventNotification> callback) { |
| 370 | + this.register("v2.core.batch_job.updated", callback); |
| 371 | + return this; |
| 372 | + } |
| 373 | + |
| 374 | + public StripeEventNotificationHandler onV2CoreBatchJobUploadTimeout( |
| 375 | + Callback<V2CoreBatchJobUploadTimeoutEventNotification> callback) { |
| 376 | + this.register("v2.core.batch_job.upload_timeout", callback); |
| 377 | + return this; |
| 378 | + } |
| 379 | + |
| 380 | + public StripeEventNotificationHandler onV2CoreBatchJobValidating( |
| 381 | + Callback<V2CoreBatchJobValidatingEventNotification> callback) { |
| 382 | + this.register("v2.core.batch_job.validating", callback); |
| 383 | + return this; |
| 384 | + } |
| 385 | + |
| 386 | + public StripeEventNotificationHandler onV2CoreBatchJobValidationFailed( |
| 387 | + Callback<V2CoreBatchJobValidationFailedEventNotification> callback) { |
| 388 | + this.register("v2.core.batch_job.validation_failed", callback); |
| 389 | + return this; |
| 390 | + } |
| 391 | + |
322 | 392 | public StripeEventNotificationHandler onV2CoreEventDestinationPing( |
323 | 393 | Callback<V2CoreEventDestinationPingEventNotification> callback) { |
324 | 394 | this.register("v2.core.event_destination.ping", callback); |
|
0 commit comments