Interface PartyServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface PartyServiceAsync.WithRawResponseA view of PartyServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract PartyServiceAsync.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
create
CompletableFuture<HttpResponse> create(PartyCreateParams params)
Returns a raw HTTP response for
post /matters/v1/parties, but is otherwise the same as PartyServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponse> create(PartyCreateParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String partyId)
Returns a raw HTTP response for
get /matters/v1/parties/{partyId}, but is otherwise the same as PartyServiceAsync.retrieve.
-
retrieve
CompletableFuture<HttpResponse> retrieve(String partyId, PartyRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String partyId, PartyRetrieveParams params)
-
retrieve
abstract CompletableFuture<HttpResponse> retrieve(PartyRetrieveParams params, RequestOptions requestOptions)
-
retrieve
CompletableFuture<HttpResponse> retrieve(PartyRetrieveParams params)
-
retrieve
CompletableFuture<HttpResponse> retrieve(String partyId, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(String partyId)
Returns a raw HTTP response for
patch /matters/v1/parties/{partyId}, but is otherwise the same as PartyServiceAsync.update.
-
update
CompletableFuture<HttpResponse> update(String partyId, PartyUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(String partyId, PartyUpdateParams params)
-
update
abstract CompletableFuture<HttpResponse> update(PartyUpdateParams params, RequestOptions requestOptions)
-
update
CompletableFuture<HttpResponse> update(PartyUpdateParams params)
-
update
CompletableFuture<HttpResponse> update(String partyId, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list()
Returns a raw HTTP response for
get /matters/v1/parties, but is otherwise the same as PartyServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponse> list(PartyListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(PartyListParams params)
-
list
CompletableFuture<HttpResponse> list(RequestOptions requestOptions)
-
-
-
-