public interface TransfersResource
| Modifier and Type | Method | Description |
|---|---|---|
retrofit2.Call<Transfer> |
get(TransferId transferId) |
|
retrofit2.Call<PaginatedList<Transfer>> |
list(Integer limit,
CursorDirection cursorDirection,
TransferId cursor) |
@GET("/transfers")
retrofit2.Call<PaginatedList<Transfer>> list(@Query("limit") @Nullable
Integer limit,
@Query("cursor_direction") @Nullable
CursorDirection cursorDirection,
@Query("cursor") @Nullable
TransferId cursor)
@GET("/transfers/{transferId}")
retrofit2.Call<Transfer> get(@Path("transferId")
TransferId transferId)
Copyright © 2018 The Apache Software Foundation. All rights reserved.