Interface TestResultService.WithRawResponse
-
- All Implemented Interfaces:
public interface TestResultService.WithRawResponseA view of TestResultService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract TestResultService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<TestResultListResponse>list(String projectVersionId)Returns a raw HTTP response for get /versions/{projectVersionId}/results, but is otherwise the same as TestResultService.list.HttpResponseFor<TestResultListResponse>list(String projectVersionId, TestResultListParams params, RequestOptions requestOptions)HttpResponseFor<TestResultListResponse>list(String projectVersionId, TestResultListParams params)abstract HttpResponseFor<TestResultListResponse>list(TestResultListParams params, RequestOptions requestOptions)HttpResponseFor<TestResultListResponse>list(TestResultListParams params)HttpResponseFor<TestResultListResponse>list(String projectVersionId, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract TestResultService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<TestResultListResponse> list(String projectVersionId)
Returns a raw HTTP response for
get /versions/{projectVersionId}/results, but is otherwise the same as TestResultService.list.
-
list
@MustBeClosed() HttpResponseFor<TestResultListResponse> list(String projectVersionId, TestResultListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<TestResultListResponse> list(String projectVersionId, TestResultListParams params)
-
list
@MustBeClosed() abstract HttpResponseFor<TestResultListResponse> list(TestResultListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<TestResultListResponse> list(TestResultListParams params)
-
list
@MustBeClosed() HttpResponseFor<TestResultListResponse> list(String projectVersionId, RequestOptions requestOptions)
-
-
-
-