Interface V1Service.WithRawResponse
-
- All Implemented Interfaces:
public interface V1Service.WithRawResponseA view of V1Service that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract V1Service.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
answer
@MustBeClosed() HttpResponseFor<V1AnswerResponse> answer(V1AnswerParams params)
Returns a raw HTTP response for
post /search/v1/answer, but is otherwise the same as V1Service.answer.
-
answer
@MustBeClosed() abstract HttpResponseFor<V1AnswerResponse> answer(V1AnswerParams params, RequestOptions requestOptions)
-
contents
@MustBeClosed() HttpResponseFor<V1ContentsResponse> contents(V1ContentsParams params)
Returns a raw HTTP response for
post /search/v1/contents, but is otherwise the same as V1Service.contents.
-
contents
@MustBeClosed() abstract HttpResponseFor<V1ContentsResponse> contents(V1ContentsParams params, RequestOptions requestOptions)
-
research
@MustBeClosed() HttpResponseFor<V1ResearchResponse> research(V1ResearchParams params)
Returns a raw HTTP response for
post /search/v1/research, but is otherwise the same as V1Service.research.
-
research
@MustBeClosed() abstract HttpResponseFor<V1ResearchResponse> research(V1ResearchParams params, RequestOptions requestOptions)
-
retrieveResearch
@MustBeClosed() HttpResponseFor<V1RetrieveResearchResponse> retrieveResearch(String id)
Returns a raw HTTP response for
get /search/v1/research/{id}, but is otherwise the same as V1Service.retrieveResearch.
-
retrieveResearch
@MustBeClosed() HttpResponseFor<V1RetrieveResearchResponse> retrieveResearch(String id, V1RetrieveResearchParams params, RequestOptions requestOptions)
-
retrieveResearch
@MustBeClosed() HttpResponseFor<V1RetrieveResearchResponse> retrieveResearch(String id, V1RetrieveResearchParams params)
-
retrieveResearch
@MustBeClosed() abstract HttpResponseFor<V1RetrieveResearchResponse> retrieveResearch(V1RetrieveResearchParams params, RequestOptions requestOptions)
-
retrieveResearch
@MustBeClosed() HttpResponseFor<V1RetrieveResearchResponse> retrieveResearch(V1RetrieveResearchParams params)
-
retrieveResearch
@MustBeClosed() HttpResponseFor<V1RetrieveResearchResponse> retrieveResearch(String id, RequestOptions requestOptions)
-
search
@MustBeClosed() HttpResponseFor<V1SearchResponse> search(V1SearchParams params)
Returns a raw HTTP response for
post /search/v1/search, but is otherwise the same as V1Service.search.
-
search
@MustBeClosed() abstract HttpResponseFor<V1SearchResponse> search(V1SearchParams params, RequestOptions requestOptions)
-
similar
@MustBeClosed() HttpResponseFor<V1SimilarResponse> similar(V1SimilarParams params)
Returns a raw HTTP response for
post /search/v1/similar, but is otherwise the same as V1Service.similar.
-
similar
@MustBeClosed() abstract HttpResponseFor<V1SimilarResponse> similar(V1SimilarParams params, RequestOptions requestOptions)
-
-
-
-