public class PayoutService
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
PayoutService.PayoutGetRequest
Request class for
get(java.lang.String) . |
static class |
PayoutService.PayoutListRequest<S>
Request class for
list() . |
Constructor and Description |
---|
PayoutService(HttpClient httpClient)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
PayoutService.PayoutListRequest<java.lang.Iterable<Payout>> |
all() |
PayoutService.PayoutGetRequest |
get(java.lang.String identity)
Retrieves the details of a single payout.
|
PayoutService.PayoutListRequest<ListResponse<Payout>> |
list()
Returns a cursor-paginated list of your payouts.
|
public PayoutService(HttpClient httpClient)
Constructor. Users of this library should have no need to call this - an instance of this class can be obtained by calling GoCardlessClient.payouts()
.
public PayoutService.PayoutListRequest<ListResponse<Payout>> list()
Returns a cursor-paginated list of your payouts.
public PayoutService.PayoutListRequest<java.lang.Iterable<Payout>> all()
public PayoutService.PayoutGetRequest get(java.lang.String identity)
Retrieves the details of a single payout. For an example of how to reconcile the transactions in a payout, see this guide.