Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion API_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
88aa59022b32620f4d66d6196e3b42d5a0f86bbb
a3035d6cb25cc44d50589c1da75b21abbd3601ca
2 changes: 1 addition & 1 deletion OPENAPI_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v2140
v2143
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
import com.stripe.events.V2MoneyManagementOutboundTransferPostedEventNotification;
import com.stripe.events.V2MoneyManagementOutboundTransferReturnedEventNotification;
import com.stripe.events.V2MoneyManagementOutboundTransferUpdatedEventNotification;
import com.stripe.events.V2MoneyManagementPayoutMethodCreatedEventNotification;
import com.stripe.events.V2MoneyManagementPayoutMethodUpdatedEventNotification;
import com.stripe.events.V2MoneyManagementReceivedCreditAvailableEventNotification;
import com.stripe.events.V2MoneyManagementReceivedCreditFailedEventNotification;
Expand Down Expand Up @@ -461,6 +462,12 @@ public StripeEventNotificationHandler onV2MoneyManagementOutboundTransferUpdated
return this;
}

public StripeEventNotificationHandler onV2MoneyManagementPayoutMethodCreated(
Callback<V2MoneyManagementPayoutMethodCreatedEventNotification> callback) {
this.register("v2.money_management.payout_method.created", callback);
return this;
}

public StripeEventNotificationHandler onV2MoneyManagementPayoutMethodUpdated(
Callback<V2MoneyManagementPayoutMethodUpdatedEventNotification> callback) {
this.register("v2.money_management.payout_method.updated", callback);
Expand Down