Interface AccountServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AccountServiceAsync.WithRawResponseA view of AccountServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract AccountServiceAsync.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<Account>> create(String entityId)
Returns a raw HTTP response for
post /api/v2/entities/{entity_id}/accounts, but is otherwise the same as AccountServiceAsync.create.
-
create
CompletableFuture<HttpResponseFor<Account>> create(String entityId, AccountCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<Account>> create(String entityId, AccountCreateParams params)
-
create
abstract CompletableFuture<HttpResponseFor<Account>> create(AccountCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<HttpResponseFor<Account>> create(AccountCreateParams params)
-
create
CompletableFuture<HttpResponseFor<Account>> create(String entityId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Account>>> list(String entityId)
Returns a raw HTTP response for
get /api/v2/entities/{entity_id}/accounts, but is otherwise the same as AccountServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<List<Account>>> list(String entityId, AccountListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Account>>> list(String entityId, AccountListParams params)
-
list
abstract CompletableFuture<HttpResponseFor<List<Account>>> list(AccountListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponseFor<List<Account>>> list(AccountListParams params)
-
list
CompletableFuture<HttpResponseFor<List<Account>>> list(String entityId, RequestOptions requestOptions)
-
-
-
-