Interface V1ServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface V1ServiceAsync.WithRawResponseA view of V1ServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract V1ServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
agentTypes
abstract AgentTypeServiceAsync.WithRawResponse agentTypes()
Matter-native legal workspaces and orchestration primitives
-
parties
abstract PartyServiceAsync.WithRawResponse parties()
Matter-native legal workspaces and orchestration primitives
-
types
abstract TypeServiceAsync.WithRawResponse types()
Matter-native legal workspaces and orchestration primitives
-
events
abstract EventServiceAsync.WithRawResponse events()
-
log
abstract LogServiceAsync.WithRawResponse log()
Matter-native legal workspaces and orchestration primitives
-
matterParties
abstract MatterPartyServiceAsync.WithRawResponse matterParties()
Matter-native legal workspaces and orchestration primitives
-
shares
abstract ShareServiceAsync.WithRawResponse shares()
Matter-native legal workspaces and orchestration primitives
-
workItems
abstract WorkItemServiceAsync.WithRawResponse workItems()
Matter-native legal workspaces and orchestration primitives
-
create
CompletableFuture<HttpResponse> create(V1CreateParams params)
Returns a raw HTTP response for
post /matters/v1, but is otherwise the same as V1ServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponse> create(V1CreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id)
Returns a raw HTTP response for
get /matters/v1/{id}, but is otherwise the same as V1ServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, V1RetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, V1RetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponse> retrieve(V1RetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(V1RetrieveParams params)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String id, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(String id)
Returns a raw HTTP response for
patch /matters/v1/{id}, but is otherwise the same as V1ServiceAsync.update.
-
update
CompletableFuture<HttpResponse> update(String id, V1UpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(String id, V1UpdateParams params)
-
update
abstract CompletableFuture<HttpResponse> update(V1UpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(V1UpdateParams params)
-
update
CompletableFuture<HttpResponse> update(String id, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list()
Returns a raw HTTP response for
get /matters/v1, but is otherwise the same as V1ServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponse> list(V1ListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(V1ListParams params)
-
list
CompletableFuture<HttpResponse> list(RequestOptions requestOptions)
-
-
-
-