Interface TokenTransferServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface TokenTransferServiceAsync.WithRawResponseA view of TokenTransferServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract TokenTransferServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponseFor<TokenTransfer>> create(String accountId, TokenTransferCreateParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/token_transfers, but is otherwise the same as TokenTransferServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<TokenTransfer>> create(String accountId, TokenTransferCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<TokenTransfer>> create(TokenTransferCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<TokenTransfer>> create(TokenTransferCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<TokenTransfer>> retrieve(String transferId, TokenTransferRetrieveParams params)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/token_transfers/{transfer_id}, but is otherwise the same as TokenTransferServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponseFor<TokenTransfer>> retrieve(String transferId, TokenTransferRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponseFor<TokenTransfer>> retrieve(TokenTransferRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponseFor<TokenTransfer>> retrieve(TokenTransferRetrieveParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<TokenTransfer>>> list(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/token_transfers, but is otherwise the same as TokenTransferServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<List<TokenTransfer>>> list(String accountId, TokenTransferListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<TokenTransfer>>> list(String accountId, TokenTransferListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<List<TokenTransfer>>> list(TokenTransferListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<TokenTransfer>>> list(TokenTransferListParams params)
-
list
CompletableFuture<HttpResponseFor<List<TokenTransfer>>> list(String accountId, RequestOptions requestOptions)
-
-
-
-