Interface BacktestServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface BacktestServiceAsync.WithRawResponseA view of BacktestServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description CompletableFuture<HttpResponseFor<BacktestCreateResponse>>create(AuthRuleV2BacktestCreateParams params)Returns a raw HTTP response for post /v2/auth_rules/{auth_rule_token}/backtests, but is otherwise the same as BacktestServiceAsync.create.abstract CompletableFuture<HttpResponseFor<BacktestCreateResponse>>create(AuthRuleV2BacktestCreateParams params, RequestOptions requestOptions)CompletableFuture<HttpResponseFor<BacktestResults>>retrieve(AuthRuleV2BacktestRetrieveParams params)Returns a raw HTTP response for get /v2/auth_rules/{auth_rule_token}/backtests/{auth_rule_backtest_token}, but is otherwise the same as BacktestServiceAsync.retrieve.abstract CompletableFuture<HttpResponseFor<BacktestResults>>retrieve(AuthRuleV2BacktestRetrieveParams params, RequestOptions requestOptions)-
-
Method Detail
-
create
@MustBeClosed() CompletableFuture<HttpResponseFor<BacktestCreateResponse>> create(AuthRuleV2BacktestCreateParams params)
Returns a raw HTTP response for
post /v2/auth_rules/{auth_rule_token}/backtests, but is otherwise the same as BacktestServiceAsync.create.
-
create
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<BacktestCreateResponse>> create(AuthRuleV2BacktestCreateParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() CompletableFuture<HttpResponseFor<BacktestResults>> retrieve(AuthRuleV2BacktestRetrieveParams params)
Returns a raw HTTP response for
get /v2/auth_rules/{auth_rule_token}/backtests/{auth_rule_backtest_token}, but is otherwise the same as BacktestServiceAsync.retrieve.
-
retrieve
@MustBeClosed() abstract CompletableFuture<HttpResponseFor<BacktestResults>> retrieve(AuthRuleV2BacktestRetrieveParams params, RequestOptions requestOptions)
-
-
-
-