Interface Eip155Service.WithRawResponse
-
- All Implemented Interfaces:
public interface Eip155Service.WithRawResponseA view of Eip155Service that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract Eip155Service.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
getFeeQuote
@MustBeClosed() HttpResponseFor<Eip155GetFeeQuoteResponse> getFeeQuote(String accountId, Eip155GetFeeQuoteParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/orders/stocks/eip155/fee_quote, but is otherwise the same as Eip155Service.getFeeQuote.
-
getFeeQuote
@MustBeClosed() HttpResponseFor<Eip155GetFeeQuoteResponse> getFeeQuote(String accountId, Eip155GetFeeQuoteParams params, RequestOptions requestOptions)
-
getFeeQuote
@MustBeClosed() HttpResponseFor<Eip155GetFeeQuoteResponse> getFeeQuote(Eip155GetFeeQuoteParams params)
-
getFeeQuote
@MustBeClosed() abstract HttpResponseFor<Eip155GetFeeQuoteResponse> getFeeQuote(Eip155GetFeeQuoteParams params, RequestOptions requestOptions)
-
prepareOrder
@MustBeClosed() HttpResponseFor<Eip155PrepareOrderResponse> prepareOrder(String accountId, Eip155PrepareOrderParams params)
Returns a raw HTTP response for
post /api/v2/accounts/{account_id}/orders/stocks/eip155/prepare, but is otherwise the same as Eip155Service.prepareOrder.
-
prepareOrder
@MustBeClosed() HttpResponseFor<Eip155PrepareOrderResponse> prepareOrder(String accountId, Eip155PrepareOrderParams params, RequestOptions requestOptions)
-
prepareOrder
@MustBeClosed() HttpResponseFor<Eip155PrepareOrderResponse> prepareOrder(Eip155PrepareOrderParams params)
-
prepareOrder
@MustBeClosed() abstract HttpResponseFor<Eip155PrepareOrderResponse> prepareOrder(Eip155PrepareOrderParams params, RequestOptions requestOptions)
-
-
-
-