Interface AccountServiceAsync
-
- All Implemented Interfaces:
public interface AccountServiceAsync
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceAccountServiceAsync.WithRawResponseA view of AccountServiceAsync that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract AccountServiceAsync.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract AccountServiceAsync 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<Account> create(String entityId)
Create a new
Accountfor a specificEntity. ThisEntityrepresents your organization itself, or an individual customer of your organization.
-
create
CompletableFuture<Account> create(String entityId, AccountCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<Account> create(String entityId, AccountCreateParams params)
-
create
abstract CompletableFuture<Account> create(AccountCreateParams params, RequestOptions requestOptions)
-
create
CompletableFuture<Account> create(AccountCreateParams params)
-
create
CompletableFuture<Account> create(String entityId, RequestOptions requestOptions)
-
list
CompletableFuture<List<Account>> list(String entityId)
Get a list of all
Accountsthat belong to a specificEntity. ThisEntityrepresents your organization itself, or an individual customer of your organization.
-
list
CompletableFuture<List<Account>> list(String entityId, AccountListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<Account>> list(String entityId, AccountListParams params)
-
list
abstract CompletableFuture<List<Account>> list(AccountListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<List<Account>> list(AccountListParams params)
-
list
CompletableFuture<List<Account>> list(String entityId, RequestOptions requestOptions)
-
-
-
-