You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our second RPC call, when we specify .withInclude(EventListRequest.Include.PAYMENT).withResourceType(EventListRequest.ResourceType.PAYMENTS) the return type is a list of Event. Which means we have no access to the "included" payment objects. We expect these to be returned in the following format as per the API
While trying to reconcile payout events according to the API docs, we are trying to get all payment and refund events as per the code below.
In our second RPC call, when we specify
.withInclude(EventListRequest.Include.PAYMENT).withResourceType(EventListRequest.ResourceType.PAYMENTS)
the return type is a list ofEvent
. Which means we have no access to the "included" payment objects. We expect these to be returned in the following format as per the APIThe only available return types in the
EventService
areEvent
when callingget(id)
Seems like this
withInclude
is discarded in all cases.From what I can see this would force us to either:
The text was updated successfully, but these errors were encountered: