Interface WithdrawalService.WithRawResponse
-
- All Implemented Interfaces:
public interface WithdrawalService.WithRawResponseA view of WithdrawalService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract WithdrawalService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<Withdrawal> retrieve(String withdrawalId, WithdrawalRetrieveParams params)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/withdrawals/{withdrawal_id}, but is otherwise the same as WithdrawalService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<Withdrawal> retrieve(String withdrawalId, WithdrawalRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<Withdrawal> retrieve(WithdrawalRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Withdrawal> retrieve(WithdrawalRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<List<Withdrawal>> list(String accountId)
Returns a raw HTTP response for
get /api/v2/accounts/{account_id}/withdrawals, but is otherwise the same as WithdrawalService.list.
-
list
@MustBeClosed() HttpResponseFor<List<Withdrawal>> list(String accountId, WithdrawalListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<List<Withdrawal>> list(String accountId, WithdrawalListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<List<Withdrawal>> list(WithdrawalListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<List<Withdrawal>> list(WithdrawalListParams params)
-
list
@MustBeClosed() HttpResponseFor<List<Withdrawal>> list(String accountId, RequestOptions requestOptions)
-
-
-
-