Interface ItemService.WithRawResponse
-
- All Implemented Interfaces:
public interface ItemService.WithRawResponseA view of ItemService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract ItemService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseupdate(String topicId, ItemUpdateParams params)Returns a raw HTTP response for put /tenants/{tenant_id}/default_preferences/items/{topic_id}, but is otherwise the same as ItemService.update.HttpResponseupdate(String topicId, ItemUpdateParams params, RequestOptions requestOptions)HttpResponseupdate(ItemUpdateParams params)abstract HttpResponseupdate(ItemUpdateParams params, RequestOptions requestOptions)HttpResponsedelete(String topicId, ItemDeleteParams params)Returns a raw HTTP response for delete /tenants/{tenant_id}/default_preferences/items/{topic_id}, but is otherwise the same as ItemService.delete.HttpResponsedelete(String topicId, ItemDeleteParams params, RequestOptions requestOptions)HttpResponsedelete(ItemDeleteParams params)abstract HttpResponsedelete(ItemDeleteParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract ItemService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
update
@MustBeClosed() HttpResponse update(String topicId, ItemUpdateParams params)
Returns a raw HTTP response for
put /tenants/{tenant_id}/default_preferences/items/{topic_id}, but is otherwise the same as ItemService.update.
-
update
@MustBeClosed() HttpResponse update(String topicId, ItemUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponse update(ItemUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponse update(ItemUpdateParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponse delete(String topicId, ItemDeleteParams params)
Returns a raw HTTP response for
delete /tenants/{tenant_id}/default_preferences/items/{topic_id}, but is otherwise the same as ItemService.delete.
-
delete
@MustBeClosed() HttpResponse delete(String topicId, ItemDeleteParams params, RequestOptions requestOptions)
-
delete
@MustBeClosed() HttpResponse delete(ItemDeleteParams params)
-
delete
@MustBeClosed() abstract HttpResponse delete(ItemDeleteParams params, RequestOptions requestOptions)
-
-
-
-