public interface LedgersResource
| Modifier and Type | Method | Description |
|---|---|---|
retrofit2.Call<PaginatedList<Ledger>> |
listLedgers(TransferId transferId,
Boolean all,
String from,
String to,
Integer min,
Integer max,
String currency,
Integer limit,
CursorDirection cursorDirection,
LedgerId cursor) |
@GET("/transfers/{transferId}/ledgers")
retrofit2.Call<PaginatedList<Ledger>> listLedgers(@Path("transferId")
TransferId transferId,
@Query("all")
Boolean all,
@Query("from")
String from,
@Query("to")
String to,
@Query("min")
Integer min,
@Query("max")
Integer max,
@Query("currency")
String currency,
@Query("limit") @Nullable
Integer limit,
@Query("cursor_direction") @Nullable
CursorDirection cursorDirection,
@Query("cursor") @Nullable
LedgerId cursor)
Copyright © 2018 The Apache Software Foundation. All rights reserved.