Interface AgentTypeServiceAsync.WithRawResponse
-
- All Implemented Interfaces:
public interface AgentTypeServiceAsync.WithRawResponseA view of AgentTypeServiceAsync that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract AgentTypeServiceAsync.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. CompletableFuture<HttpResponse>create(AgentTypeCreateParams params)Returns a raw HTTP response for post /matters/v1/agent-types, but is otherwise the same as AgentTypeServiceAsync.create.abstract CompletableFuture<HttpResponse>create(AgentTypeCreateParams params, RequestOptions requestOptions)CompletableFuture<HttpResponse>list()Returns a raw HTTP response for get /matters/v1/agent-types, but is otherwise the same as AgentTypeServiceAsync.list.abstract CompletableFuture<HttpResponse>list(AgentTypeListParams params, RequestOptions requestOptions)CompletableFuture<HttpResponse>list(AgentTypeListParams params)CompletableFuture<HttpResponse>list(RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract AgentTypeServiceAsync.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(AgentTypeCreateParams params)
Returns a raw HTTP response for
post /matters/v1/agent-types, but is otherwise the same as AgentTypeServiceAsync.create.
-
create
abstract CompletableFuture<HttpResponse> create(AgentTypeCreateParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list()
Returns a raw HTTP response for
get /matters/v1/agent-types, but is otherwise the same as AgentTypeServiceAsync.list.
-
list
abstract CompletableFuture<HttpResponse> list(AgentTypeListParams params, RequestOptions requestOptions)
-
list
CompletableFuture<HttpResponse> list(AgentTypeListParams params)
-
list
CompletableFuture<HttpResponse> list(RequestOptions requestOptions)
-
-
-
-