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