Interface WalletService.WithRawResponse
-
- All Implemented Interfaces:
public interface WalletService.WithRawResponseA view of WalletService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract WalletService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. abstract ExternalService.WithRawResponseexternal()HttpResponseFor<Wallet>get(String accountId)Returns a raw HTTP response for get /api/v2/accounts/{account_id}/wallet, but is otherwise the same as WalletService.get.HttpResponseFor<Wallet>get(String accountId, WalletGetParams params, RequestOptions requestOptions)HttpResponseFor<Wallet>get(String accountId, WalletGetParams params)abstract HttpResponseFor<Wallet>get(WalletGetParams params, RequestOptions requestOptions)HttpResponseFor<Wallet>get(WalletGetParams params)HttpResponseFor<Wallet>get(String accountId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract WalletService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
external
abstract ExternalService.WithRawResponse external()
-
get
@MustBeClosed() HttpResponseFor<Wallet> get(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/wallet, but is otherwise the same as WalletService.get.
-
get
@MustBeClosed() HttpResponseFor<Wallet> get(String accountId, WalletGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Wallet> get(String accountId, WalletGetParams params)
-
get
@MustBeClosed() abstract HttpResponseFor<Wallet> get(WalletGetParams params, RequestOptions requestOptions)
-
get
@MustBeClosed() HttpResponseFor<Wallet> get(WalletGetParams params)
-
get
@MustBeClosed() HttpResponseFor<Wallet> get(String accountId, RequestOptions requestOptions)
-
-
-
-