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