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
Modifier and Type Method Description abstract CompletableFuture<HttpResponseFor<Account>>create(AccountCreateParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /accounts, but is otherwise the same as AccountServiceAsync.create.abstract CompletableFuture<HttpResponseFor<Account>>create(AccountCreateParams params)Returns a raw HTTP response for post /accounts, but is otherwise the same as AccountServiceAsync.create.abstract CompletableFuture<HttpResponseFor<Account>>retrieve(AccountRetrieveParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Account>>retrieve(AccountRetrieveParams params)Returns a raw HTTP response for get /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<Account>>update(AccountUpdateParams params, RequestOptions requestOptions)Returns a raw HTTP response for patch /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.update.abstract CompletableFuture<HttpResponseFor<Account>>update(AccountUpdateParams params)Returns a raw HTTP response for patch /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.update.abstract CompletableFuture<HttpResponseFor<AccountListPageAsync>>list(AccountListParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /accounts, but is otherwise the same as AccountServiceAsync.list.abstract CompletableFuture<HttpResponseFor<AccountListPageAsync>>list(AccountListParams params)Returns a raw HTTP response for get /accounts, but is otherwise the same as AccountServiceAsync.list.abstract CompletableFuture<HttpResponseFor<AccountListPageAsync>>list()Returns a raw HTTP response for get /accounts, but is otherwise the same as AccountServiceAsync.list.CompletableFuture<HttpResponseFor<AccountListPageAsync>>list(RequestOptions requestOptions)Returns a raw HTTP response for get /accounts, but is otherwise the same as AccountServiceAsync.list.abstract CompletableFuture<HttpResponseFor<BalanceLookup>>balance(AccountBalanceParams params, RequestOptions requestOptions)Returns a raw HTTP response for get /accounts/{account_id}/balance, but is otherwise the same as AccountServiceAsync.balance.abstract CompletableFuture<HttpResponseFor<BalanceLookup>>balance(AccountBalanceParams params)Returns a raw HTTP response for get /accounts/{account_id}/balance, but is otherwise the same as AccountServiceAsync.balance.abstract CompletableFuture<HttpResponseFor<Account>>close(AccountCloseParams params, RequestOptions requestOptions)Returns a raw HTTP response for post /accounts/{account_id}/close, but is otherwise the same as AccountServiceAsync.close.abstract CompletableFuture<HttpResponseFor<Account>>close(AccountCloseParams params)Returns a raw HTTP response for post /accounts/{account_id}/close, but is otherwise the same as AccountServiceAsync.close.-
-
Method Detail
-
create
abstract CompletableFuture<HttpResponseFor<Account>> create(AccountCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /accounts, but is otherwise the same as AccountServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponseFor<Account>> create(AccountCreateParams params)
Returns a raw HTTP response for
post /accounts, but is otherwise the same as AccountServiceAsync.create.
-
retrieve
abstract CompletableFuture<HttpResponseFor<Account>> retrieve(AccountRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.retrieve.
-
retrieve
abstract CompletableFuture<HttpResponseFor<Account>> retrieve(AccountRetrieveParams params)
Returns a raw HTTP response for
get /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.retrieve.
-
update
abstract CompletableFuture<HttpResponseFor<Account>> update(AccountUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
patch /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.update.
-
update
abstract CompletableFuture<HttpResponseFor<Account>> update(AccountUpdateParams params)
Returns a raw HTTP response for
patch /accounts/{account_id}, but is otherwise the same as AccountServiceAsync.update.
-
list
abstract CompletableFuture<HttpResponseFor<AccountListPageAsync>> list(AccountListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /accounts, but is otherwise the same as AccountServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<AccountListPageAsync>> list(AccountListParams params)
Returns a raw HTTP response for
get /accounts, but is otherwise the same as AccountServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponseFor<AccountListPageAsync>> list()
Returns a raw HTTP response for
get /accounts, but is otherwise the same as AccountServiceAsync.list.
-
list
CompletableFuture<HttpResponseFor<AccountListPageAsync>> list(RequestOptions requestOptions)
Returns a raw HTTP response for
get /accounts, but is otherwise the same as AccountServiceAsync.list.
-
balance
abstract CompletableFuture<HttpResponseFor<BalanceLookup>> balance(AccountBalanceParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /accounts/{account_id}/balance, but is otherwise the same as AccountServiceAsync.balance.
-
balance
abstract CompletableFuture<HttpResponseFor<BalanceLookup>> balance(AccountBalanceParams params)
Returns a raw HTTP response for
get /accounts/{account_id}/balance, but is otherwise the same as AccountServiceAsync.balance.
-
close
abstract CompletableFuture<HttpResponseFor<Account>> close(AccountCloseParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /accounts/{account_id}/close, but is otherwise the same as AccountServiceAsync.close.
-
close
abstract CompletableFuture<HttpResponseFor<Account>> close(AccountCloseParams params)
Returns a raw HTTP response for
post /accounts/{account_id}/close, but is otherwise the same as AccountServiceAsync.close.
-
-
-
-