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.
-
find
@MustBeClosed() HttpResponseFor<V1FindResponse> find(V1FindParams params)
Returns a raw HTTP response for
post /legal/v1/find, but is otherwise the same as V1Service.find.
-
find
@MustBeClosed() abstract HttpResponseFor<V1FindResponse> find(V1FindParams params, RequestOptions requestOptions)
-
getCitations
@MustBeClosed() HttpResponseFor<V1GetCitationsResponse> getCitations(V1GetCitationsParams params)
Returns a raw HTTP response for
post /legal/v1/citations, but is otherwise the same as V1Service.getCitations.
-
getCitations
@MustBeClosed() abstract HttpResponseFor<V1GetCitationsResponse> getCitations(V1GetCitationsParams params, RequestOptions requestOptions)
-
getCitationsFromUrl
@MustBeClosed() HttpResponseFor<V1GetCitationsFromUrlResponse> getCitationsFromUrl(V1GetCitationsFromUrlParams params)
Returns a raw HTTP response for
post /legal/v1/citations-from-url, but is otherwise the same as V1Service.getCitationsFromUrl.
-
getCitationsFromUrl
@MustBeClosed() abstract HttpResponseFor<V1GetCitationsFromUrlResponse> getCitationsFromUrl(V1GetCitationsFromUrlParams params, RequestOptions requestOptions)
-
getFullText
@MustBeClosed() HttpResponseFor<V1GetFullTextResponse> getFullText(V1GetFullTextParams params)
Returns a raw HTTP response for
post /legal/v1/full-text, but is otherwise the same as V1Service.getFullText.
-
getFullText
@MustBeClosed() abstract HttpResponseFor<V1GetFullTextResponse> getFullText(V1GetFullTextParams params, RequestOptions requestOptions)
-
listJurisdictions
@MustBeClosed() HttpResponseFor<V1ListJurisdictionsResponse> listJurisdictions(V1ListJurisdictionsParams params)
Returns a raw HTTP response for
post /legal/v1/jurisdictions, but is otherwise the same as V1Service.listJurisdictions.
-
listJurisdictions
@MustBeClosed() abstract HttpResponseFor<V1ListJurisdictionsResponse> listJurisdictions(V1ListJurisdictionsParams params, RequestOptions requestOptions)
-
patentSearch
@MustBeClosed() HttpResponseFor<V1PatentSearchResponse> patentSearch(V1PatentSearchParams params)
Returns a raw HTTP response for
post /legal/v1/patent-search, but is otherwise the same as V1Service.patentSearch.
-
patentSearch
@MustBeClosed() abstract HttpResponseFor<V1PatentSearchResponse> patentSearch(V1PatentSearchParams params, RequestOptions requestOptions)
-
research
@MustBeClosed() HttpResponseFor<V1ResearchResponse> research(V1ResearchParams params)
Returns a raw HTTP response for
post /legal/v1/research, but is otherwise the same as V1Service.research.
-
research
@MustBeClosed() abstract HttpResponseFor<V1ResearchResponse> research(V1ResearchParams params, RequestOptions requestOptions)
-
similar
@MustBeClosed() HttpResponseFor<V1SimilarResponse> similar(V1SimilarParams params)
Returns a raw HTTP response for
post /legal/v1/similar, but is otherwise the same as V1Service.similar.
-
similar
@MustBeClosed() abstract HttpResponseFor<V1SimilarResponse> similar(V1SimilarParams params, RequestOptions requestOptions)
-
trademarkSearch
@MustBeClosed() HttpResponseFor<V1TrademarkSearchResponse> trademarkSearch()
Returns a raw HTTP response for
post /legal/v1/trademark-search, but is otherwise the same as V1Service.trademarkSearch.
-
trademarkSearch
@MustBeClosed() abstract HttpResponseFor<V1TrademarkSearchResponse> trademarkSearch(V1TrademarkSearchParams params, RequestOptions requestOptions)
-
trademarkSearch
@MustBeClosed() HttpResponseFor<V1TrademarkSearchResponse> trademarkSearch(V1TrademarkSearchParams params)
-
trademarkSearch
@MustBeClosed() HttpResponseFor<V1TrademarkSearchResponse> trademarkSearch(RequestOptions requestOptions)
-
verify
@MustBeClosed() HttpResponseFor<V1VerifyResponse> verify(V1VerifyParams params)
Returns a raw HTTP response for
post /legal/v1/verify, but is otherwise the same as V1Service.verify.
-
verify
@MustBeClosed() abstract HttpResponseFor<V1VerifyResponse> verify(V1VerifyParams params, RequestOptions requestOptions)
-
-
-
-